/* ============================================
   BEAUTYLINK GLOBAL — MAIN STYLESHEET
   ============================================ */

/* ---- ROOT / VARIABLES ---- */
:root {
    --primary: #CB6565;
    --primary-dark: #A84444;
    --primary-light: #F5B3C1;
    --accent: #F48292;
    --black: #1A1A1A;
    --dark: #2C2C2C;
    --mid: #6B6B6B;
    --light: #FEF0F2;
    --lighter: #FEF4F4;
    --white: #FFFFFF;
    --border: #F0DCDE;
    
    --font-ko: 'Noto Sans KR', sans-serif;
    --font-en: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 60px rgba(0,0,0,0.16);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-ko);
    color: var(--dark);
    background: #FEF4F4;
    line-height: 1.7;
    overflow-x: hidden;
    word-break: keep-all;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.mt-20 { margin-top: 20px; }

/* ---- TYPOGRAPHY ---- */
.section-tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-ko);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--mid);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-tag::before { left: 50%; transform: translateX(-50%) translateY(-50%); display: none; }
.section-header .section-tag { padding-left: 0; }
.section-header .section-tag::after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    margin: 6px auto 0;
}
.section-header .section-desc { margin: 0 auto; }

.section-header.light .section-title,
.section-header.light .section-desc { color: rgba(255,255,255,0.9); }
.section-header.light .section-tag { color: var(--accent); }
.section-header.light .section-tag::after { background: var(--accent); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200,149,108,0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,149,108,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}

#header.scrolled .navbar {
    /* padding: 12px 0; */
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#header.scrolled .logo-en { color: var(--black); }
#header.scrolled .logo-sub { color: var(--primary); }
#header.scrolled .nav-link { color: var(--dark); }
#header.scrolled .nav-link:hover { color: var(--primary); }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-en {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    transition: var(--transition);
}
.logo-sub {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 4px;
    transition: var(--transition);
}

/* PC 드롭다운 */
.nav-item {
    position: relative;
}
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    padding-top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 130px;
    padding: 8px 0;
    z-index: 200;
}
.nav-item:hover .nav-dropdown {
    display: block;
}
.nav-dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
    color: #444;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-dropdown li a:hover {
    color: rgb(203, 101, 101);
    background: rgba(203,101,101,0.06);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}
.nav-link:hover {
    color: rgb(203, 101, 101);
}

/* PC: hover 시 밑줄 효과 */
.nav-link::after {
    content: '';
    display: block;
    height: 1.5px;
    background: rgb(203, 101, 101);
    width: 0;
    transition: width 0.25s ease;
    margin-top: 2px;
}
.nav-link:hover::after {
    width: 100%;
}
#header.scrolled .nav-link:hover {
    color: rgb(203, 101, 101);
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.lang-btn {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    padding: 4px 6px;
    border-radius: 4px;
    transition: var(--transition);
}
.lang-btn.active,
.lang-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}
#header.scrolled .lang-btn { color: var(--mid); }
#header.scrolled .lang-btn.active,
#header.scrolled .lang-btn:hover { color: var(--dark); background: var(--light); }
#header.scrolled .nav-lang { color: var(--border); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--dark); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slider { height: 100%; }

.hero-slide {
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-1 { background-image: url('/img/hero-slide-1.png'); }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?w=1800&q=80'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1571781926291-c477ebfd024b?w=1800&q=80'); }

.hero-main-title {
    font-family: var(--font-ko);
    font-size: clamp(18px, 3.5vw, 52px);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    white-space: normal;
    word-break: keep-all;
    padding: 0 16px;
}
.hero-main-title em {
    font-style: normal;
    color: var(--primary);
    font-size: 1.2em;
}
.hero-main-sub {
    font-family: var(--font-ko);
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255,255,255,0.85);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 400;
}
.hero-main-brand {
    font-family: var(--font-ko);
    font-size: clamp(16px, 1.8vw, 22px);
    color: rgba(255,255,255,0.95);
    text-align: center;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: 2px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,26,0.75) 0%,
        rgba(26,26,26,0.4) 60%,
        rgba(26,26,26,0.2) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 550px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.05);
}

.hero-title {
    font-family: var(--font-ko);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
    font-style: normal;
    color: var(--accent);
}

.hero-desc {
    font-size: clamp(14px, 1.6vw, 18px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center; }

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 40px;
    gap: 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
    padding: 0 40px;
    flex: 1;
    max-width: 200px;
}

.stat-num {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.stat-unit {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--mid);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* Swiper Hero Overrides */
.hero-pagination { bottom: 80px !important; }
.swiper-pagination-bullet { 
    width: 8px; height: 8px; 
    background: rgba(255,255,255,0.5); 
    opacity: 1; 
}
.swiper-pagination-bullet-active { 
    background: var(--white); 
    width: 24px;
    border-radius: 4px;
}
.hero-prev, .hero-next {
    color: var(--white) !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-prev::after, .hero-next::after { font-size: 14px !important; font-weight: 700 !important; }
.hero-prev { left: 24px !important; }
.hero-next { right: 24px !important; }

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    height: 44px;
    overflow: hidden;
}

.ticker-label {
    background: var(--primary);
    color: var(--white);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
    font-size: 13px;
    padding: 0 48px;
    opacity: 0.85;
    border-right: 1px solid rgba(255,255,255,0.15);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about { background: var(--lighter); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(200,149,108,0.4);
    z-index: 2;
}
.about-badge i { font-size: 24px; }
.about-badge span { font-size: 12px; font-weight: 600; line-height: 1.4; }

.about-text {
    font-size: 15px;
    color: var(--mid);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--black);
}
.feature-text p {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.6;
}

/* ============================================
   WHY K-BEAUTY
   ============================================ */
.why-kbeauty {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-num {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 800;
    color: rgba(200,149,108,0.12);
    line-height: 1;
    margin-bottom: 8px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}
.why-card p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 20px;
}
.why-card p strong { color: var(--primary); }

.why-bar {
    position: relative;
}
.why-bar span {
    font-size: 11px;
    color: var(--mid);
    margin-bottom: 6px;
    display: block;
}
.why-bar::after {
    content: '';
    display: block;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}
.why-bar-fill {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    position: relative;
    top: -4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands { background: var(--lighter); }

.brand-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    background: var(--white);
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.brand-card.hidden { display: none; }

.brand-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.brand-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.brand-card:hover .brand-img-wrap img { transform: scale(1.08); }

.brand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.brand-card:hover .brand-overlay { opacity: 1; }

.brand-tag-pill {
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.brand-inquiry {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.7);
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition);
}
.brand-inquiry:hover {
    background: var(--white);
    color: var(--dark);
}

.brand-info { padding: 20px; }
.brand-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}
.brand-desc {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 12px;
}
.brand-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.brand-meta span {
    font-size: 11px;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 4px;
}
.brand-meta .fa-star { color: var(--primary); }

.brands-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}
.brands-cta p {
    font-size: 16px;
    color: var(--mid);
    margin-bottom: 16px;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories { background: var(--white); }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    height: 240px;
}
.cat-card.cat-large {
    grid-column: span 2;
    height: 320px;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.08); }

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}
.cat-card:hover .cat-overlay {
    background: linear-gradient(to top, rgba(200,149,108,0.7) 0%, rgba(0,0,0,0.2) 60%);
}

.cat-tag {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 6px;
}
.cat-overlay h3 {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.cat-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}
.cat-count {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ============================================
   MARKET INFO
   ============================================ */
.market-info { background: var(--lighter); }

.market-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mtab {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mid);
    transition: var(--transition);
    white-space: nowrap;
}
.mtab.active,
.mtab:hover {
    background: var(--primary);
    color: var(--white);
}

.market-content { position: relative; }

.mtab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}
.mtab-panel.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.market-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.market-panel-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
}

.market-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.market-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
}
.market-list li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}
.market-list li strong { color: var(--black); }

.market-panel-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.donut-chart-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--mid);
}
.chart-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 0; }
.services-bg {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #1A1A1A 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.services-bg::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,149,108,0.15), transparent 70%);
    border-radius: 50%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: linear-gradient(to top, rgba(200,149,108,0.1), transparent);
    transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
    border-color: rgba(200,149,108,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(200,149,108,0.2);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.service-card > p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-card ul li {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    padding-left: 20px;
    position: relative;
}
.service-card ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   PARTNER LOGOS
   ============================================ */
.partner-logos { background: var(--white); padding: 60px 0; }

.logo-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    gap: 0;
    animation: logoScroll 20s linear infinite;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    padding: 20px 40px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.logo-text {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.4;
    transition: var(--transition);
    white-space: nowrap;
}
.logo-item:hover .logo-text { opacity: 1; }
.shopee { color: #EE4D2D; }
.lazada { color: #0F146D; }
.tiktok { color: #000000; }
.watsons { color: #00A651; }
.central { color: #C8A96E; }
.boots { color: #004899; }
.mall { color: #8B0000; }
.villa { color: #2E7D32; }

/* 스몰빅 로고 이미지 */
.logo-img {
    height: 50px;
    width: auto;
    padding: 5px 5px;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none;
}
.logo-fallback {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    transition: var(--transition);
}
#header.scrolled .logo-fallback { color: var(--black); }
/* 가로 스크롤 방지 */
html {
    overflow-x: hidden;
}

.partner-logos,
.ticker-wrap,
.logo-track-wrap {
    overflow: hidden;
    max-width: 100vw;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--lighter); }

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    margin: 10px 4px;
    box-shadow: var(--shadow);
}

.testi-quote {
    font-size: 28px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.testi-card > p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-author div strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}
.testi-author div span {
    font-size: 12px;
    color: var(--mid);
}

.testi-pagination { margin-top: 24px; position: relative !important; }
.testi-pagination .swiper-pagination-bullet { background: var(--border); }
.testi-pagination .swiper-pagination-bullet-active { background: var(--primary); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title { font-size: 32px; }
.contact-info > p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.c-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}
.contact-item span {
    font-size: 13px;
    color: var(--mid);
}

.sns-links {
    display: flex;
    gap: 10px;
}
.sns-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light);
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.sns-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--black);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}
.form-group textarea { resize: vertical; }

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--mid);
    cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 60px 20px;
    display: none;
}
.form-success i {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}
.form-success h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.form-success p { color: var(--mid); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
}

.footer-top {
    background: var(--black);
    padding: 72px 0 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 16px;
}
.footer-logo .logo-en {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}
.footer-logo .logo-sub {
    font-family: var(--font-en);
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 4px;
}

.footer-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-sns {
    display: flex;
    gap: 10px;
}
.footer-sns a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: var(--transition);
}
.footer-sns a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-info {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}
.footer-label {
    flex-shrink: 0;
    min-width: 100px;
    color: rgba(255,255,255,0.75);
}

.footer-bottom {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); }

/* Policy Modal */
.policy-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.policy-modal-overlay.active {
    display: flex;
}
.policy-modal {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 680px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #eee;
}
.policy-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}
.policy-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 4px;
}
.policy-modal-close:hover { color: #111; }
.policy-modal-body {
    padding: 28px;
    overflow-y: auto;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}
.policy-modal-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 24px 0 8px;
}
.policy-modal-body h4:first-of-type { margin-top: 0; }
.policy-modal-body ul {
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.policy-modal-body ul li {
    color: #555;
}
.policy-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px !important;
}
/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(200,149,108,0.4);
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
}
.back-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.back-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .market-panel-grid { grid-template-columns: 1fr; gap: 32px; }
    .market-panel-visual { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
        gap: 4px;
    }
    .nav-menu.open { right: 0; }
    .nav-link { color: var(--dark); width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav-lang { padding-top: 16px; }
    .lang-btn { color: var(--mid); }
    .hamburger { display: flex; }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 0;
        padding: 16px;
    }
    .stat-item { padding: 12px 20px; }
    .stat-divider { display: none; }
    .stat-num { font-size: 28px; }
    
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .cat-card.cat-large { grid-column: span 2; }
    .why-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 20px; justify-self: anchor-center; }
    .footer-brand {
        justify-self: center;
    }
    .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
    
    .market-tabs { overflow-x: auto; width: 100%; }
    .back-top { bottom: 20px; right: 20px; }
    
    .hero-content { bottom: 140px; }
    
    .hero-prev, .hero-next { display: none !important; }
}

@media (max-width: 480px) {
    .brand-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
    .cat-card.cat-large { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    
    .hero-title { font-size: 30px; }
    .hero-btns { flex-direction: column; align-items: stretch; width: calc(100% - 48px); margin: 0 auto; }
    .hero-btns .btn { text-align: center; justify-content: center; width: 100%; box-sizing: border-box; }
    
    .ticker-track span { padding: 0 24px; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-aos] {
    will-change: transform, opacity;
}

/* Chart.js canvas sizing */
canvas {
    max-width: 260px;
    max-height: 260px;
}

/* ============================================
   SIDE MENU (햄버거 슬라이드)
   ============================================ */
.side-menu {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 72px 32px 40px;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 40px rgba(0,0,0,0.12);
    overflow-y: auto;
}
.side-menu.open {
    right: 0;
}
.side-menu-close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 22px;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}
.side-menu-close:hover { color: rgb(203,101,101); }

.side-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 9998;
}
.side-menu-overlay.open { display: block; }

.side-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.side-nav-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 10px 0 6px;
    border-bottom: 1px solid #f0e8e8;
    cursor: default;
}
.side-nav-title[href] {
    cursor: pointer;
    transition: color 0.2s;
}
.side-nav-title[href]:hover { color: rgb(203,101,101); }

.side-nav ul {
    list-style: none;
    padding-left: 12px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.side-nav-link {
    display: block;
    font-size: 13px;
    color: #666;
    padding: 7px 0;
    transition: color 0.2s;
}
.side-nav-link:hover { color: rgb(203,101,101); }

/* 모바일에서 기존 nav-menu 숨김 처리 */
@media (max-width: 900px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }
}
@media (min-width: 901px) {
    .hamburger { display: none; }
    .side-menu, .side-menu-overlay { display: none !important; }
}

/* ============================================
   INTRO OVERLAY
   ============================================ */
#introOverlay {
    position: fixed;
    inset: 0;
    background: #FEE4E8;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.6s ease;
}
#introOverlay.hide {
    opacity: 0;
    pointer-events: none;
}

#introLogo {
    cursor: pointer;
    animation: introFloat 3s ease-in-out infinite;
    transition: transform 0.2s ease;
}
@media (max-width: 768px) {
    #introLogo {
        animation: none;
    }
}
#introLogo:hover {
    transform: scale(1.05);
}
#introLogo img {
    height: 260px;
    width: auto;
}

@media (max-width: 768px) {
    #introLogo img {
        height: 200px; /* 모바일: 기존 400px의 1/2 */
        width: auto;
    }
}

@keyframes introFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

#introHint {
    font-family: var(--font-en);
    font-size: 30px;
    letter-spacing: 4px;
    color: rgba(180, 120, 120, 0.6);
    text-transform: lowercase;
    animation: introBlink 2s ease-in-out infinite;
}
@keyframes introBlink {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* 확대되며 앞으로 빠져나가는 효과 */
#introOverlay.suck {
    animation: introBlast 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes introBlast {
    0%   { opacity: 1; transform: scale(1); }
    60%  { opacity: 0.6; transform: scale(1.3); }
    100% { opacity: 0; transform: scale(2); }
}

/* ============================================
   STICKY PURCHASE BAR (product-detail)
   ============================================ */
.sticky-purchase-bar {
    position: fixed;
    bottom: -80px;
    left: 0; right: 0;
    z-index: 9000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 24px;
}
.sticky-purchase-bar.visible {
    bottom: 0;
}
.spb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.spb-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.spb-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}
.spb-price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}
.spb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(203,101,101,0.35);
}
.spb-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(203,101,101,0.45);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.service-card-header h3 {
    margin: 0;
}

@media (max-width: 480px) {
    .spb-product-info { display: none; }
    .spb-btn { width: 100%; justify-content: center; }
}