/* ====================================
   TravelMate - 여행 쇼핑몰 스타일시트
   ==================================== */

/* CSS Variables */
:root {
    /* Colors - Teal & Coral Theme */
    --primary: #0d7377;
    --primary-dark: #095456;
    --primary-light: #14919b;
    --secondary: #ff6b6b;
    --accent: #ffc93c;
    --accent-dark: #e6b534;
    
    /* Neutrals */
    --dark: #1a2f38;
    --dark-soft: #2d4a56;
    --gray-900: #1f2937;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #d1d5db;
    --gray-300: #e5e7eb;
    --gray-200: #f3f4f6;
    --gray-100: #f9fafb;
    --white: #ffffff;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-display: 'Wanted Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Wanted Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(13, 115, 119, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Wanted Sans', var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-100);
    min-height: 100vh;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* ====================================
   Container
   ==================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ====================================
   Typography
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Wanted Sans', var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.45);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 201, 60, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ====================================
   Header & Navigation
   ==================================== */

/* 메인 헤더 스타일 */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-main {
    width: 100%;
}

.header-main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 40px; /* 로고 높이 고정 (작게 조정) */
}

.logo-image {
    height: 40px; /* 로고 이미지 높이 (작게 조정) */
    width: auto; /* 비율 유지 */
    max-width: 150px; /* 최대 너비 제한 (작게 조정) */
    object-fit: contain; /* 비율 유지하며 크기 조정 */
    display: none; /* 이미지 숨김 (텍스트 로고 사용) */
}

.logo-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0;
    display: inline-block; /* 텍스트 로고 항상 표시 */
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #C9A961;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 180px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1001;
}

.nav-item:hover .dropdown-menu,
.nav-item.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #1a1a2e;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn-reserve {
    background: #C9A961;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.header-btn-reserve:hover {
    background: #b8983f;
}

.header-icon {
    color: white;
    font-size: 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}

.cart-icon {
    position: relative !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.header-icon:hover {
    color: #C9A961;
    transform: scale(1.1);
}

/* 언어 선택 */
.language-selector {
    position: relative;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 150px;
    z-index: 1000;
    overflow: hidden;
}

.language-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.language-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.language-item.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

/* 검색창 */
.header-search {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-top: 10px;
    z-index: 1001;
}

.search-container {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #C9A961;
}

.search-submit {
    background: #C9A961;
    color: #1a1a2e;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.search-submit:hover {
    background: #b8983f;
}

.search-close {
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.search-close:hover {
    background: #e5e7eb;
    color: #1a1a2e;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.header-btn-reserve {
    background: #C9A961;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
    margin-left: auto;
}

.header-btn-reserve:hover {
    background: #b8983f;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .header-search {
        right: -20px;
        left: -20px;
        width: calc(100vw - 40px);
        max-width: none;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-btn-reserve {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* User Menu */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-menu > a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.user-menu > a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #C9A961;
}

.user-menu > a span {
    font-size: 0.875rem;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 150px;
    margin-top: 8px;
    z-index: 1000;
    display: none;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.user-dropdown a:first-child {
    border-bottom: 1px solid #e5e7eb;
}

.user-dropdown a:hover {
    background: #f3f4f6;
    color: var(--primary);
}

.user-dropdown a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* 모바일 메뉴 */
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

@media (min-width: 993px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mobile-logo-image {
    height: 30px; /* 모바일 로고 이미지 높이 (작게 조정) */
    width: auto; /* 비율 유지 */
    max-width: 120px; /* 최대 너비 제한 (작게 조정) */
    object-fit: contain; /* 비율 유지하며 크기 조정 */
    display: block;
}

/* 작은 모바일 화면에서 더 작게 */
@media (max-width: 480px) {
    .mobile-logo-image {
        height: 25px; /* 매우 작은 화면에서는 더 작게 */
        max-width: 100px;
    }
}

.mobile-menu-header .logo-text {
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
    margin-left: 0;
    display: none; /* 기본적으로 숨김, 이미지가 없을 때만 표시 */
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav .submenu {
    padding-left: 20px;
    display: none;
}

.mobile-nav .has-submenu.active .submenu {
    display: block;
}

.mobile-menu-footer {
    padding: 20px;
    display: flex;
    gap: 10px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

@media (min-width: 993px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-overlay.active {
    display: block;
}

/* 메인 콘텐츠 여백 (고정 헤더) */
.main-content {
    padding-top: 0;
}

/* 히어로가 없는 페이지용 */
.main-content.with-header-space {
    padding-top: 70px;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-btn-reserve {
        display: none;
    }
    
    .user-menu > a span {
        display: none;
    }
    
    .user-menu > a {
        padding: 8px;
    }
    
    /* 모바일에서 헤더 로고 크기 조정 */
    .logo-image {
        height: 35px; /* 모바일에서 헤더 로고 높이 줄임 */
        max-width: 140px; /* 최대 너비도 줄임 */
    }
    
    .logo {
        height: 35px; /* 로고 컨테이너 높이도 조정 */
    }
}

/* 작은 모바일 화면에서 헤더 로고 더 작게 */
@media (max-width: 480px) {
    .logo-image {
        height: 30px;
        max-width: 120px;
    }
    
    .logo {
        height: 30px;
    }
}

@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* 기존 main-header 스타일 (호환성) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.navbar {
    height: 72px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
}

.logo i {
    font-size: 1.75rem;
}

.logo strong {
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.cart-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.header-icon.cart-icon {
    position: relative !important;
}

.header-icon.cart-icon .cart-badge {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    background: #ff6b6b !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    z-index: 1001 !important;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-700);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 70px; /* 헤더 높이만큼 여백 */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-slider {
    flex: 1;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    overflow: hidden;
}

.hero-slide img,
.hero-slide video,
.hero-slide iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.hero-arrow.prev {
    left: 30px;
}

.hero-arrow.next {
    right: 30px;
}

/* Hero Progress */
.hero-progress {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-progress-item {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.hero-progress-item .progress-bar {
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.3s;
}

.hero-progress-item.active .progress-bar {
    width: 100%;
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .hero-arrow.prev {
        left: 15px;
    }
    .hero-arrow.next {
        right: 15px;
    }
    .hero-progress-item {
        width: 40px;
    }
}

/* Hero Thumbnails Slider */
.hero-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 20px;
    pointer-events: none;
}

.hero-thumbnails .container,
.hero-thumbnails-slider,
.hero-thumbnails-track,
.hero-thumbnail-item {
    pointer-events: auto;
}

.hero-thumbnails .container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-thumbnails-slider {
    overflow: hidden;
    position: relative;
}

.hero-thumbnails-track {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.hero-thumbnails-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.hero-thumbnail-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.hero-thumbnail-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-thumbnail-item.active {
    opacity: 1;
    border-color: #C9A961;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.5);
}

.hero-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-thumbnail-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-thumbnails {
        margin-top: -60px;
        padding: 0 15px;
    }
    
    .hero-thumbnail-item {
        width: 100px;
        height: 65px;
    }
    
    .hero-thumbnails-track {
        gap: 10px;
        padding: 15px 0;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 115, 119, 0.85) 0%,
        rgba(26, 47, 56, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: var(--space-3xl);
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Search Box */
.search-box {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: var(--space-xl) 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.search-form {
    display: flex;
    align-items: flex-end;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.search-field label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.search-field label i {
    color: var(--primary);
}

.search-field input,
.search-field select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary);
}

.search-form .btn {
    padding: 0.875rem 2rem;
}

/* ====================================
   Time Deal / TOUR Section
   ==================================== */
.time-deal {
    padding: 80px 0;
    background: var(--white);
}

.time-deal .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.time-deal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* 투어 슬라이더 (5개 초과 시) */
.time-deal-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.time-deal-slider {
    overflow: hidden;
}

.time-deal-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.time-deal-slider-track .deal-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 260px;
}

/* 화면 크기별 카드 개수 조정 */
@media (max-width: 1400px) {
    .time-deal-slider-track .deal-card {
        flex: 0 0 calc(25% - 15px); /* 4개 */
        min-width: 280px;
    }
}

@media (max-width: 1200px) {
    .time-deal-slider-track .deal-card {
        flex: 0 0 calc(33.333% - 14px); /* 3개 */
        min-width: 300px;
    }
}

@media (max-width: 992px) {
    .time-deal-slider-wrapper {
        padding: 0 50px;
    }
    
    .time-deal-slider-track .deal-card {
        flex: 0 0 calc(50% - 10px); /* 2개 */
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .time-deal-slider-wrapper {
        padding: 0 20px;
    }
    
    .time-deal-slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) transparent;
    }
    
    .time-deal-slider::-webkit-scrollbar {
        height: 6px;
    }
    
    .time-deal-slider::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .time-deal-slider::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }
    
    .time-deal-slider-track {
        display: flex;
        gap: 16px;
        transition: none; /* 모바일에서는 스크롤 사용 */
    }
    
    .time-deal-slider-track .deal-card {
        flex: 0 0 calc(85vw - 20px);
        min-width: calc(85vw - 20px);
        max-width: calc(85vw - 20px);
        scroll-snap-align: start;
    }
    
    .deal-slider-arrow {
        display: none !important; /* 모바일에서는 화살표 숨김 */
    }
}

.deal-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-slider-arrow:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-50%) scale(1.1);
}

.deal-slider-arrow.prev {
    left: 10px;
}

.deal-slider-arrow.next {
    right: 10px;
}

.deal-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.deal-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    max-height: 200px;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.1);
}

.deal-content {
    padding: 16px;
}

.deal-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.deal-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.deal-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.deal-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deal-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.deal-content p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.deal-price .original {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.deal-price .current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Special Offer Section */
.special-offer {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.special-offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.special-offer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.7) 100%);
}

.special-offer .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.special-offer-content {
    max-width: 600px;
    color: white;
}

.special-offer-content .section-label {
    color: #C9A961;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    margin-bottom: 15px;
    display: block;
}

.special-offer-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.special-offer-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-outline-white {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .special-offer {
        padding: 80px 0;
    }
    .special-offer-content h2 {
        font-size: 2rem;
    }
}

/* Shorts Section */
.shorts-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.shorts-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.shorts-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.shorts-card img,
.shorts-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shorts-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    opacity: 0;
    transition: opacity 0.3s;
}

.shorts-card:hover .play-btn {
    opacity: 1;
}

.shorts-thumb {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.shorts-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shorts-video-container video,
.shorts-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shorts-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shorts-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shorts-info {
    flex: 1;
    min-width: 0;
}

.shorts-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.shorts-info p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Store Section */
.store-section {
    padding: 80px 0;
    background: var(--white);
}

.store-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.store-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.store-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.1);
}

.store-content {
    padding: 20px;
}

.store-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.store-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.store-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.store-price .original {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.store-price .current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

/* 반응형 */
@media (max-width: 1200px) {
    .time-deal-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .time-deal-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) transparent;
    }
    
    .time-deal-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .time-deal-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .time-deal-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }
    
    .time-deal-grid .deal-card {
        flex: 0 0 calc(85vw - 20px);
        min-width: calc(85vw - 20px);
        max-width: calc(85vw - 20px);
        scroll-snap-align: start;
    }
    
    .deal-image {
        max-height: 150px;
    }
    
    .deal-content {
        padding: 12px;
    }
    
    .deal-title {
        font-size: 0.875rem;
    }
    
    .deal-desc {
        font-size: 0.75rem;
    }
    
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .store-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

/* ====================================
   Instagram Section
   ==================================== */
.instagram {
    padding: 80px 0;
    background: var(--white);
}

.instagram .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram .section-label {
    display: block;
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 10px;
}

.instagram .section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-item:hover::after {
    opacity: 1;
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.instagram-item:hover::before {
    opacity: 1;
}

@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================
   Categories Section
   ==================================== */
.categories {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.category-card:hover {
    background: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.category-card:hover h3,
.category-card:hover p {
    color: var(--white);
}

.category-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.category-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    transition: color var(--transition-base);
}

.category-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color var(--transition-base);
}

/* ====================================
   Section Headers (Alternative - for side-by-side layout)
   ==================================== */
.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    gap: var(--space-md);
}

.section-header-flex.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title .subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title h2 {
    font-family: var(--font-display);
}

.view-all {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    white-space: nowrap;
}

.view-all:hover {
    gap: var(--space-sm);
}

/* ====================================
   Product Grid
   ==================================== */
.featured-section,
.products-section {
    padding: var(--space-3xl) 0;
}

.featured-section {
    background: var(--gray-100);
}

.products-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* Products List - 박스형 작은 카드 */
.products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Grid Product List */
.products-list-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    text-decoration: none;
    color: inherit;
}

/* Grid Product Card */
.product-card-grid {
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.1);
}

.product-link {
    display: block;
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: 0.3px;
}

.badge-best {
    background: var(--secondary);
    color: var(--white);
}

.badge-sale {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
}

.badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.badge-default {
    background: rgba(0,0,0,0.7);
    color: var(--white);
}

.badge-hot {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: var(--white);
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #666;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.product-wishlist:hover {
    background: var(--white);
    color: #ff4444;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-wishlist i {
    font-size: 0.9rem;
}

.wishlist-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--gray-500);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.wishlist-btn:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.wishlist-btn.large {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
}

.quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-base);
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: var(--space-lg);
}

.product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--white);
}

/* 해시태그 스타일 */
.product-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.hashtag {
    display: inline-block;
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 12px;
}

.product-meta i {
    color: var(--primary);
    font-size: 0.75rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
    line-height: 1.4;
    color: #1a1a1a;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-desc {
    font-size: 0.8125rem;
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    flex-grow: 1;
}

/* 간단한 가격 표시 */
.product-price-simple {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: auto;
}

.price-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.price-tilde {
    font-size: 0.875rem;
    color: #999;
    margin-left: 2px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.8rem;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-rating .rating-value {
    font-weight: 700;
    color: #333;
    margin-left: 2px;
}

.product-rating .rating-count {
    color: #999;
    font-size: 0.75rem;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 0.8125rem;
}

.stars .far {
    color: var(--gray-300);
}

.rating-text {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    gap: 12px;
}

.product-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.original-price {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-original {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.discount {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
}

.sale-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

/* ====================================
   Promo Banner
   ==================================== */
.promo-banner {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.promo-text {
    color: var(--white);
}

.promo-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.promo-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.promo-text h2 strong {
    color: var(--accent);
}

.promo-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.promo-image {
    position: relative;
}

.promo-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

/* ====================================
   Destinations Grid
   ==================================== */
.destinations-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--space-md);
}

.destination-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.destination-card.large {
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    color: var(--white);
}

.destination-overlay h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.destination-overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ====================================
   Why Us Section
   ==================================== */
.why-us-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    font-size: 2rem;
    border-radius: var(--radius-xl);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* ====================================
   Reviews Section
   ==================================== */
.reviews-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.review-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.review-rating {
    display: flex;
    gap: 4px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.review-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.reviewer img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.reviewer-info strong {
    display: block;
    font-size: 0.9375rem;
}

.reviewer-info span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ====================================
   Newsletter Section
   ==================================== */
.newsletter-section {
    padding: var(--space-3xl) 0;
    background: var(--dark);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.newsletter-text {
    color: var(--white);
}

.newsletter-text h2 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.newsletter-text p {
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--white);
    font-size: 0.9375rem;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* ====================================
   Footer
   ==================================== */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ccc;
}

.footer-top {
    padding: 60px 0;
}

.footer-top .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-grid-simple {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-about {
    padding-right: 40px;
}

.footer-logo {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C9A961;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-about p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-company-info .company-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.footer-company-info .company-details li {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.8;
    padding-bottom: 5px;
    white-space: nowrap;
}

.footer-company-info .company-details li strong {
    color: #ccc;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .footer-company-info .company-details {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom .footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom .footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom .footer-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-grid-simple {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-grid-simple {
        grid-template-columns: 1fr;
    }
    .footer-bottom .footer-links {
        gap: 15px;
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact .phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-contact .phone i {
    color: var(--primary);
    margin-right: var(--space-sm);
}

.footer-contact .hours {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-contact .email {
    font-size: 0.9375rem;
}

.footer-contact .email i {
    color: var(--primary);
    margin-right: var(--space-sm);
}

.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ====================================
   Page Header
   ==================================== */
.page-header {
    padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl) !important;
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80') center/cover no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    color: var(--white) !important;
    position: relative !important;
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header.compact {
    padding: calc(72px + var(--space-lg)) 0 var(--space-lg);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.625rem;
    opacity: 0.5;
}

.page-header h1 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    opacity: 0.9;
}

/* ====================================
   Products Page
   ==================================== */
.products-page {
    padding: var(--space-2xl) 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
}

/* Horizontal Filters */
.products-filters-horizontal {
    background: #ffffff !important;
    padding: 24px 0 !important;
    margin-bottom: 30px !important;
}

.filters-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.filters-grid-2col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    max-width: 800px;
    margin: 0 auto;
}

.filter-box {
    background: #ffffff !important;
    padding: 16px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.filter-box h3 {
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    color: var(--gray-800) !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid var(--gray-100) !important;
}

.filter-box .filter-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.filter-box .filter-option {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--gray-700) !important;
    font-size: 0.875rem !important;
    cursor: pointer !important;
    padding: 4px 0 !important;
    transition: all 0.2s ease !important;
}

.filter-box .filter-option:hover {
    color: var(--primary);
}

.filter-box .filter-option input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer !important;
    accent-color: var(--primary) !important;
    flex-shrink: 0 !important;
}

.filter-box .filter-option span {
    user-select: none !important;
}

.filter-submit-btn {
    align-self: center !important;
    padding: 12px 32px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.9375rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    margin-top: 8px !important;
}

.filter-submit-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: calc(72px + var(--space-lg));
    height: fit-content;
}

.filter-section {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.filter-section h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.filter-section h3 i {
    color: var(--primary);
}

.filter-list li {
    margin-bottom: var(--space-sm);
}

.filter-list a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.filter-list a:hover,
.filter-list a.active {
    background: var(--primary);
    color: var(--white);
}

.filter-list a i {
    width: 20px;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.price-inputs input {
    flex: 1;
    padding: var(--space-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.price-presets {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.price-presets a {
    padding: var(--space-xs) var(--space-sm);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gray-600);
}

.price-presets a:hover {
    background: var(--primary);
    color: var(--white);
}

.filter-list.destinations a {
    font-size: 0.9375rem;
}

/* Products Content */
.products-content {
    min-width: 0;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.products-count {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.products-count strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sort label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.products-sort select {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--white);
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.products-sort select:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.products-sort select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.15);
}

.view-options {
    display: flex;
    gap: var(--space-sm);
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--gray-500);
    transition: all var(--transition-fast);
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary);
    color: var(--white);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sort-options label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.sort-options select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    cursor: pointer;
}

.no-products {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-xl);
}

.no-products i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: var(--space-lg);
}

.no-products h3 {
    margin-bottom: var(--space-sm);
}

.no-products p {
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination a,
.pagination span {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination a {
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.pagination a:hover:not(.disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    font-weight: 600;
}

.pagination a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination span:not(.current) {
    color: var(--gray-400);
    padding: 0 4px;
}

.page-btn,
.page-num {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.page-btn:hover:not(.disabled),
.page-num:hover,
.page-num.active {
    background: var(--primary);
    color: var(--white);
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    color: var(--gray-400);
}

/* ====================================
   Product Detail Page
   ==================================== */
.product-detail {
    padding: var(--space-2xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: calc(72px + var(--space-lg));
    height: fit-content;
}

.main-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

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

.image-badges {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.thumbnail-list {
    display: flex;
    gap: var(--space-md);
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

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

/* Product Info Detail */
.product-info-detail {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.product-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.product-category {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.product-info-detail h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.product-subtitle {
    color: var(--gray-600);
    line-height: 1.6;
}

.product-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-600);
}

.meta-item i {
    color: var(--primary);
}

.meta-item.rating .stars {
    margin-right: var(--space-xs);
}

.product-price-detail {
    background: var(--gray-100);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.price-original {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    color: var(--gray-500);
}

.price-original .value {
    text-decoration: line-through;
}

.price-discount {
    margin-bottom: var(--space-sm);
}

.discount-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--secondary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.price-sale {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.price-sale .label {
    color: var(--gray-600);
}

.price-sale .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-sale .per-person {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Booking Form */
.booking-form {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-group label i {
    color: var(--primary);
}

.form-group input[type="date"] {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.form-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary);
}

.quantity-selector {
    background: var(--gray-100);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.qty-row:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.qty-row span {
    font-size: 0.9375rem;
}

.qty-row small {
    color: var(--gray-500);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.qty-controls input {
    width: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: transparent;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.total-price span {
    font-size: 0.9375rem;
}

.total-price strong {
    font-size: 1.5rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.quick-info .info-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.quick-info .info-item i {
    color: var(--success);
}

/* Product Tabs */
.product-tabs {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
}

.tab-btn {
    flex: 1;
    padding: var(--space-lg);
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-50);
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    background: var(--white);
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.tabs-content {
    padding: var(--space-xl);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-panel h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.included-list,
.excluded-list,
.notice-list {
    margin-bottom: var(--space-xl);
}

.included-list li,
.excluded-list li,
.notice-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

.included-list i {
    color: var(--success);
    margin-top: 4px;
}

.excluded-list i {
    color: var(--error);
    margin-top: 4px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.highlight-card i {
    color: var(--accent);
}

/* Itinerary */
.itinerary {
    margin-bottom: var(--space-xl);
}

.day {
    margin-bottom: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.day-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.day-num {
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.day-title {
    font-weight: 600;
}

.day-content {
    padding-left: calc(var(--space-md) + 50px);
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.day-content p {
    margin-bottom: var(--space-xs);
}

/* Info Table */
.info-table {
    width: 100%;
    margin-bottom: var(--space-xl);
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.info-table th,
.info-table td {
    padding: var(--space-md);
    text-align: left;
}

.info-table th {
    width: 140px;
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

/* Reviews in Tabs */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.rating-big {
    text-align: center;
}

.rating-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.rating-big .stars {
    justify-content: center;
    margin: var(--space-sm) 0;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.reviews-list {
    margin-bottom: var(--space-xl);
}

.review-item {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.review-header img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.review-header .reviewer-info {
    flex: 1;
}

.review-header .reviewer-info strong {
    display: block;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.review-header .review-rating {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 0.875rem;
}

.review-item .review-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.review-images {
    display: flex;
    gap: var(--space-sm);
}

.review-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Related Products */
.related-products {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

/* ====================================
   Cart Page
   ==================================== */
.alert {
    padding: var(--space-md) 0;
}

.alert.alert-success {
    background: var(--success);
    color: var(--white);
}

.alert .container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.alert a {
    margin-left: auto;
    font-weight: 600;
    text-decoration: underline;
}

.cart-section {
    padding: var(--space-2xl) 0;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-xl);
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.empty-icon i {
    font-size: 3rem;
    color: var(--gray-400);
}

.empty-cart h2 {
    margin-bottom: var(--space-sm);
}

.empty-cart p {
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

/* Cart Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.cart-count {
    font-weight: 600;
}

.clear-cart {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.clear-cart:hover {
    color: var(--error);
}

.cart-item {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-100);
}

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

.item-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.item-details {
    display: flex;
    flex-direction: column;
}

.item-info {
    margin-bottom: var(--space-md);
}

.item-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.item-info h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-xs);
}

.item-info h3 a:hover {
    color: var(--primary);
}

.item-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.item-meta i {
    color: var(--primary);
    margin-right: 0.25rem;
}

.item-booking-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.booking-detail {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
}

.booking-detail i {
    color: var(--primary);
}

.item-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.item-price .original {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: var(--space-sm);
}

.item-price .sale {
    font-weight: 700;
    color: var(--dark);
}

.item-price .per {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.item-total {
    text-align: right;
}

.item-total .label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.item-total .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.item-actions {
    display: flex;
    align-items: flex-start;
}

.remove-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.remove-btn:hover {
    background: var(--error);
    color: var(--white);
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: calc(72px + var(--space-lg));
}

.summary-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.summary-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.summary-row.discount span:last-child {
    color: var(--secondary);
}

.summary-divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--space-md) 0;
}

.summary-row.total {
    padding: var(--space-md) 0;
}

.summary-row.total span:first-child {
    font-weight: 600;
}

.summary-row.total span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.summary-benefits {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.benefit i {
    color: var(--success);
}

.coupon-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.coupon-card h4 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.coupon-card h4 i {
    color: var(--accent);
}

.coupon-form {
    display: flex;
    gap: var(--space-sm);
}

.coupon-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.coupon-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Recommended Section */
.recommended-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        border-radius: 14px;
    }
    
    .product-content {
        padding: 18px;
    }
    
    .product-image {
        max-height: 180px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        padding: var(--space-xl);
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-field {
        width: 100%;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Filters grid - mobile */
    .products-filters-horizontal {
        padding: var(--space-lg) 0;
    }
    
    .filters-form {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .filters-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .filter-box {
        padding: 16px;
    }
    
    .filter-submit-btn {
        align-self: stretch;
        width: 100%;
    }
    
    /* Products grid - mobile */
    .products-list-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    @media (max-width: 480px) {
        .products-list-grid {
            grid-template-columns: 1fr !important;
            gap: 16px !important;
        }
    }
    
    .product-card {
        border-radius: 12px;
        height: 100%;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    
    .product-content {
        padding: 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    
    .product-image {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: 0 !important;
        padding-bottom: 100% !important;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }
    
    .product-title {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.6em;
        font-weight: 600;
    }
    
    .product-desc {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.6em;
        color: #666;
        flex-grow: 0;
    }
    
    .product-price-simple {
        margin-top: auto;
        padding-top: 8px;
        border-top: 1px solid #f0f0f0;
    }
    
    .price-amount {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary);
    }
    
    .product-hashtags {
        margin-bottom: 6px;
        gap: 4px;
    }
    
    .hashtag {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .product-meta {
        font-size: 0.7rem;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .product-wishlist {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .product-badges {
        top: 8px;
        left: 8px;
        gap: 4px;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .product-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .product-btn {
        width: 100%;
        text-align: center;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .destination-card.large {
        grid-row: span 1;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
    }
    
    .promo-image {
        order: -1;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .filter-section {
        margin-bottom: 0;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 50%;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr;
    }
    
    .item-actions {
        position: absolute;
        top: var(--space-md);
        right: var(--space-md);
    }
    
    .cart-item {
        position: relative;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        grid-template-columns: 1fr;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
    }
    
    .item-image {
        aspect-ratio: 16/9;
    }
    
    .item-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .item-total {
        text-align: left;
    }
}

/* ====================================
   Utility Classes
   ==================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ====================================
   Animations
   ==================================== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

