/* Tech Modern Design System */

/* Pretendard Font Face */
@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    src: url('/fonts/Pretendard-Thin.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    src: url('/fonts/Pretendard-ExtraLight.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    src: url('/fonts/Pretendard-Light.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    src: url('/fonts/Pretendard-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    src: url('/fonts/Pretendard-Medium.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    src: url('/fonts/Pretendard-SemiBold.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    src: url('/fonts/Pretendard-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    src: url('/fonts/Pretendard-ExtraBold.otf') format('opentype');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    src: url('/fonts/Pretendard-Black.otf') format('opentype');
}

:root {
    --tech-bg: #0a0a0f;
    --tech-card: #0f0f1a;
    --tech-surface: #1a1a25;
    --tech-border: rgba(0, 212, 255, 0.1);
    --tech-blue: #00d4ff;
    --tech-purple: #8b5cf6;
    --tech-pink: #ec4899;
    --tech-green: #10b981;
    --neon-glow: 0 0 30px rgba(0, 212, 255, 0.5);
    --circuit-color: rgba(0, 212, 255, 0.05);
}

/* Global Background */
body {
    background: var(--tech-bg);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow-x: hidden;
    padding-top: 76px; /* navbar height */
}

/* Circuit Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 255, 0.02) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 2px, transparent 2px);
    background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
    z-index: -2;
    animation: circuit-move 20s linear infinite;
}

@keyframes circuit-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Tech Particles Background */
.tech-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--tech-blue);
    box-shadow: 0 0 10px var(--tech-blue);
    animation: float-up 15s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* Modern Tech Navigation */
.navbar {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--tech-border);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1000 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar.navbar-scrolled {
    background: rgba(10, 10, 15, 0.98) !important;
    box-shadow: 0 5px 40px rgba(0, 212, 255, 0.2);
}

.navbar-brand img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--tech-blue));
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tech-blue), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--tech-blue) !important;
    text-shadow: 0 0 20px var(--tech-blue);
}

/* Tech Dropdown */
.dropdown-menu {
    background: rgba(10, 10, 15, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--tech-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 0 !important;
    z-index: 1001 !important;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    color: var(--tech-blue);
    background: transparent;
    padding-left: 30px;
}

/* Tech Sections */
section {
    position: relative;
    background: transparent;
    z-index: 10;
}

section.bg-light {
    background: transparent !important;
}

/* Tech Cards */
.card {
    background: rgba(26, 26, 37, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--tech-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tech-blue), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card:hover {
    border-color: var(--tech-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

/* Tech Buttons */
.btn {
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
    border: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

/* Tech Page Headers */
.page-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 1px solid var(--tech-border);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 255, 0.03) 100px,
            rgba(0, 212, 255, 0.03) 101px
        );
    animation: data-flow 10s linear infinite;
}

@keyframes data-flow {
    0% { transform: translateX(0); }
    100% { transform: translateX(101px); }
}

/* Tech Footer */
footer {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--tech-border);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tech-blue), transparent);
    animation: scan 3s linear infinite;
}

/* Holographic Effect */
.holographic {
    background: linear-gradient(
        45deg,
        #ff00ff,
        #00ffff,
        #ff00ff,
        #00ffff
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographic 3s ease infinite;
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Neon Text */
.neon-text {
    text-shadow: 
        0 0 10px var(--tech-blue),
        0 0 20px var(--tech-blue),
        0 0 30px var(--tech-blue),
        0 0 40px var(--tech-blue);
}

/* Data Stream Animation */
.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.data-stream::before {
    content: '010110100101101001011010';
    position: absolute;
    color: var(--tech-green);
    font-family: monospace;
    font-size: 10px;
    opacity: 0.1;
    white-space: nowrap;
    animation: stream 10s linear infinite;
}

@keyframes stream {
    0% {
        transform: translateY(-100%) translateX(-50%) rotate(90deg);
    }
    100% {
        transform: translateY(100vh) translateX(-50%) rotate(90deg);
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--tech-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--tech-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: inset(50% 0 20% 0);
        transform: translate(2px, -2px);
    }
    60% {
        clip-path: inset(80% 0 10% 0);
        transform: translate(0, 0);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(2px, 0);
    }
    40% {
        clip-path: inset(20% 0 50% 0);
        transform: translate(-2px, 0);
    }
    60% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(0, 2px);
    }
}

/* Override Bootstrap Colors */
.bg-white {
    background: var(--tech-surface) !important;
}

.bg-light {
    background: var(--tech-card) !important;
}

.text-dark {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Force text colors for dark theme */
h1, h2, h3, h4, h5, h6 {
    color: white !important;
}

p, span, div, li, a {
    color: rgba(255, 255, 255, 0.9);
}

.card-title {
    color: white !important;
}

.card-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

.btn-link {
    color: var(--tech-blue) !important;
}

.lead {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Business section text */
.business-title,
.business-desc,
.business-subdesc,
.business-contact {
    color: white !important;
}

.business-title .highlight {
    color: var(--tech-blue) !important;
}

/* Icon colors */
.icon-box i {
    color: var(--tech-blue) !important;
}

/* Page headers */
.page-header h1,
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: white !important;
}

/* Section backgrounds with transparency */
section {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 10;
}

section.bg-light {
    background: transparent !important;
}

/* Terms and Privacy pages */
.bg-white.rounded.shadow {
    background: var(--tech-surface) !important;
    border: 1px solid var(--tech-border) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.bg-white.rounded.shadow h3 {
    color: white !important;
}

.bg-white.rounded.shadow p,
.bg-white.rounded.shadow li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.bg-light.rounded {
    background: var(--tech-card) !important;
    border: 1px solid var(--tech-border) !important;
}

/* Navbar text */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Footer links */
footer a {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a:hover {
    color: var(--tech-blue) !important;
}

/* Form Controls */
.form-control {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    color: white;
}

.form-control:focus {
    background: var(--tech-surface);
    border-color: var(--tech-blue);
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--tech-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tech-blue);
}

/* Main content above particles */
main {
    position: relative;
    z-index: 10;
}

/* B Design 추가 스타일 - 첫 번째 정의 제거, 하단에 통합된 정의 사용 */

/* Contact Modal Styles */
#contactModal .modal-content {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    color: white;
}

#contactModal .modal-header {
    background: var(--tech-card);
    border-bottom: 1px solid var(--tech-border);
}

#contactModal .modal-footer {
    background: var(--tech-card);
    border-top: 1px solid var(--tech-border);
}

#contactModal .form-control,
#contactModal .form-select {
    background: var(--tech-bg);
    border: 1px solid var(--tech-border);
    color: white;
}

#contactModal .form-control:focus,
#contactModal .form-select:focus {
    background: var(--tech-bg);
    border-color: var(--tech-blue);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

#contactModal .form-label {
    color: rgba(255, 255, 255, 0.9);
}

#contactModal .form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

#contactModal .btn-close {
    filter: invert(1);
}

/* Success Modal Styles */
#successModal .modal-content {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    color: white;
}

#successModal .modal-body {
    background: var(--tech-card);
}

#successModal h4 {
    color: white !important;
}

#successModal .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

#successModal .text-success {
    color: #10b981 !important;
}

header {
    position: relative;
    z-index: 1000;
}

footer {
    position: relative;
    z-index: 10;
}

/* Override location section from modern.css */
.location-section {
    background: transparent !important;
    border-top: 1px solid var(--tech-border);
    border-bottom: 1px solid var(--tech-border);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.location-section h2 {
    color: white !important;
}

.location-section .lead {
    color: rgba(255, 255, 255, 0.7) !important;
}

.location-map {
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: var(--tech-blue) !important;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.location-overlay {
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 50%) !important;
}

.location-item:hover .location-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 212, 255, 0.2) 100%) !important;
}

.location-info .address i {
    color: var(--tech-blue) !important;
}

/* Hero section adjustments */
.hero-section {
    background: transparent !important;
    position: relative;
    z-index: 10;
    margin-top: -76px;
    padding-top: 76px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Business section transparency */
.business-intro-section {
    background: transparent !important;
    position: relative;
    z-index: 10;
}

/* 사업소개 상세 설명 스타일 */
.business-details-section {
    background: transparent;
    color: var(--bs-light);
    position: relative;
    z-index: 10;
}

.business-detail-item {
    padding: 3rem 0;
}

.detail-image-wrapper {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.detail-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    z-index: 10;
}

.detail-content h3 {
    color: var(--bs-light);
    margin-bottom: 1.5rem;
}

.detail-content .lead {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.feature-list i {
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

/* 프로세스 섹션 스타일 */
.custom-process-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--tech-border);
    border-bottom: 1px solid var(--tech-border);
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.process-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--tech-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.process-item h5 {
    color: white;
    font-size: 1.25rem;
}

.process-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 슬라이드 인 애니메이션 */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-right[data-delay="0"] {
    animation-delay: 0s;
}

.slide-in-right[data-delay="200"] {
    animation-delay: 0.2s;
}

.slide-in-right[data-delay="400"] {
    animation-delay: 0.4s;
}

.slide-in-right[data-delay="600"] {
    animation-delay: 0.6s;
}

/* 프로세스 아이템 연결선 */
@media (min-width: 768px) {
    .process-item:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: var(--tech-blue);
        opacity: 0.7;
        text-shadow: 0 0 10px var(--tech-blue);
    }
}

/* Responsive adjustments for business details */
@media (max-width: 768px) {
    .business-detail-item {
        padding: 2rem 0;
    }
    
    .detail-image-wrapper img {
        height: 300px;
    }
    
    .custom-process-section {
        padding: 2rem 1rem;
    }
    
    .process-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-item::after {
        display: none;
    }
}

/* Category Groups */
.category-groups {
    padding: 2rem 0;
}

.category-group {
    margin-bottom: 6rem !important;
}

h2.category-title,
.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--tech-text);
    margin-bottom: 2rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 1rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    display: inline-block;
}

.category-title::after,
.category-title.fw-bold::after,
h2.category-title::after,
h2.category-title.fw-bold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tech-border);
}

/* Product Card 16:9 Aspect Ratio */
.product-card {
    overflow: hidden;
}

.product-card .card-img-top {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

/* B Design Styles */
.category-header-wrapper {
    display: flex;
    position: absolute;
    left: -10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 60px;
    position: relative;
}

/* category-header-wrapper 앞에 동그라미 추가 */
.category-header-wrapper::before {
    content: '';
    position: absolute;
    left: 0px; /* 원래 위치로 */
    top: 50%;
    transform: translateY(-130%); /* 세로 중앙 정렬 */
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
}

.category-title-b {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

/* category-title-b의 before 제거 */
.category-title-b::before {
    margin-right: 160px;
    display: none !important;
}

/* 모든 h3 관련 after 강제 제거 */
.category-title-b::after,
h3.category-title-b::after,
.category-title-b.fw-bold::after,
.category-title-b.mb-0::after,
.category-title-b.fw-bold.mb-0::after {
    display: none !important;
    content: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}

.category-dot {
    display: none; /* 동그라미 완전 제거 */
}

.category-text {
    text-decoration: none !important; /* 밑줄 완전 제거 */
    border: none !important; /* border 제거 */
    display: inline-block;
    position: relative;
    padding-bottom: 8px; /* after를 위한 여백 */
}

/* category-text의 before 제거 */
.category-text::before {
    display: none !important;
}

/* category-text의 after 추가 */
.category-text::after {
    content: '' !important;
    position: absolute !important;
    bottom: -14px !important; /* 바텀에 14px 여백 */
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background-color: #fff !important;
    display: block !important;
}

.text-wrapper-b {
    margin-bottom: 2rem;
}

.category-main-title {
    margin-bottom: 0.5rem;
}

.category-description {
    margin-bottom: 0;
}


