:root {
    --bg: #ffffff;
    --bg-soft: #f4f4f4;
    --panel: #ffffff;
    --line: #e8e8e8;
    --text: #1a1a1a;
    --muted: #666666;
    --primary: #000000;
    --accent: #cc0c00;
    --container: 1320px;
}

body.site {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Malgun Gothic", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.site-container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* --- 상단 유틸 (ASUS 스타일 얇은 바) --- */
.site-topbar {
    background: #2d2d2d;
    color: #ccc;
    font-size: 12px;
}

.site-topbar-inner {
    display: flex;
    justify-content: flex-end;
    padding: 6px 0;
}

.site-topbar-links a {
    color: #ccc;
    text-decoration: none;
}

.site-topbar-links a:hover {
    color: #fff;
}

.site-topbar-sep {
    margin: 0 10px;
    color: #555;
    user-select: none;
}

/* --- 메인 헤더: 화이트 + 보더 --- */
.site-header-asus {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 24px;
}

.site-logo-asus {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #000;
    text-decoration: none;
}

.site-nav-asus {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav-asus .nav-link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 2px;
}

.site-nav-asus .nav-link:hover,
.site-nav-asus .nav-link.is-active {
    color: #000;
    background: #f0f0f0;
}

.menu-products-asus {
    position: relative;
    display: inline-block;
}

.menu-products-asus .menu-products-panel {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    padding: 8px 0;   
    z-index: 120;
	opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.menu-products-asus:hover .menu-products-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; 
}

.menu-products-asus .menu-products-panel a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #222;
    text-decoration: none;
}

.menu-products-asus .menu-products-panel a:hover {
    background: #f5f5f5;
    color: #000;
}

/* --- 히어로 롤링 (대형 풀블리드) --- */
.hero-slider-lite {
    position: relative;
    min-height: min(72vh, 640px);
    max-height: 720px;
    overflow: hidden;
    background: #111;
}

.hero-slide-lite {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease;
    background-size: cover;
    background-position: center center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 48px 0 80px;
}

.hero-slide-lite::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 0;
}

.hero-slide-lite .site-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-slide-lite.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-lite h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 640px;
}

.hero-slide-lite p {
    margin: 0;
    font-size: clamp(14px, 1.6vw, 17px);
    opacity: 0.92;
    max-width: 520px;
    line-height: 1.55;
}

.hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-slide-lite .btn-primary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.hero-slide-lite .btn-primary:hover {
    background: transparent;
    color: #fff;
}

.hero-slide-lite .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    background: transparent;
}

.hero-slide-lite .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.hero-dots button.is-active {
    background: #fff;
    transform: scale(1.15);
}

/* --- 카테고리 타일 띠 (ASUS 메인 중간 띠 느낌) --- */
.asus-category-strip {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0 36px;
}

.asus-category-head {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 18px;
}

.asus-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.asus-cat-tile--accent {
    background: #111;
    color: #fff;
    border-color: #222;
}

.asus-cat-tile--accent strong,
.asus-cat-tile--accent span {
    color: #fff;
}

.asus-cat-tile--accent span {
    opacity: 0.85;
}

.asus-cat-tile--accent:hover {
    border-color: #444;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* --- G마켓 미니샵 전면 띠 --- */
.asus-minishop-hero {
    background: linear-gradient(105deg, #0a0a0a 0%, #1a1a2e 48%, #252540 100%);
    color: #fff;
    padding: 40px 0 44px;
}

.asus-minishop-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.asus-minishop-kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.asus-minishop-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.asus-minishop-desc {
    margin: 0;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.btn-minishop {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 12px 22px;
    font-size: 12px;
}

.btn-minishop:hover {
    background: transparent;
    color: #fff;
}

.asus-section-head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.asus-section-title-tight {
    margin-bottom: 0;
}

.asus-product-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.asus-product-card-price {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 800;
    color: #111;
}

.asus-product-card--shop h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 2.7em;
}

.asus-product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.asus-product-card-link:focus {
    outline: 2px solid #0046ad;
    outline-offset: 2px;
}

.asus-gmarket-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    background: #fafafa;
    border: 1px dashed var(--line);
}

.asus-cat-tile {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    padding: 18px 12px;
    text-align: center;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.asus-cat-tile:hover {
    border-color: #ccc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.asus-cat-tile strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.asus-cat-tile span {
    font-size: 12px;
    color: var(--muted);
}

/* --- 섹션 공통 --- */
.asus-section {
    padding: 48px 0 56px;
}

.asus-section--alt {
    background: var(--bg-soft);
}

.section-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 8px;
}

.section-title {
    margin: 0 0 28px;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- 제품 카드 (이미지 상단, ASUS 타일) --- */
.asus-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.asus-product-card {
    background: var(--panel);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.asus-product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.asus-product-card-img {
    aspect-ratio: 16 / 10;
    background: #f8f8f8;
    overflow: hidden;
}

.asus-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.asus-product-card-body {
    padding: 20px 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.asus-product-card-body h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
}

.asus-product-card-body p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}

/* --- 지원 띠 --- */
.asus-support-strip {
    background: #1a1a1a;
    color: #eee;
    padding: 22px 0;
}

.asus-support-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.asus-support-inner p {
    margin: 0;
    font-size: 15px;
}

.asus-support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.asus-support-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.asus-support-links a:hover {
    text-decoration: underline;
}

/* --- 푸터 --- */
.asus-footer {
    background: #f0f0f0;
    border-top: 1px solid var(--line);
    padding: 40px 0 24px;
    color: #444;
    font-size: 13px;
}

.asus-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.asus-footer h4 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
}

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

.asus-footer li {
    margin-bottom: 8px;
}

.asus-footer a {
    color: #555;
    text-decoration: none;
}

.asus-footer a:hover {
    color: #000;
    text-decoration: underline;
}

.asus-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 12px;
}

/* --- 공통 버튼 (내부 페이지용) --- */
.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 32px 24px 56px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 18px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.btn-outline {
    border: 2px solid #ccc;
    color: var(--text);
    background: #fff;
}

.btn-buy {
    background: #111;
    color: #fff;
    border: 2px solid #111;
}

.btn-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .asus-product-grid--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .asus-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0 16px;
    }

    .site-nav-asus {
        width: 100%;
    }

    .hero-slider-lite {
        min-height: 56vh;
    }

    .asus-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .asus-product-grid,
    .asus-product-grid--wide,
    .grid {
        grid-template-columns: 1fr;
    }

    .asus-footer-grid {
        grid-template-columns: 1fr;
    }
}

.section-desc {
    margin: -8px 0 28px;
    color: var(--muted);
    max-width: 640px;
}

.pc-line-section {
    margin-bottom: 48px;
}

.pc-line-section:last-child {
    margin-bottom: 0;
}

.pc-line-title {
    margin: 4px 0 18px;
    font-size: 28px;
    font-weight: 800;
}
