
/* [1. °øÅë ¸®¼Â] - À¯Áö */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Noto Sans KR', sans-serif; background: #fff; color: #333; overflow-x: hidden; }
        ul { list-style: none; }
        a { text-decoration: none; color: inherit; }
body, table, th, td, input, select, textarea, div, button, a, li, p {
       font-family: 'Noto Sans KR', sans-serif;
}
        /* [2. È®Á¤µÈ ¿Ã°¡±ÂÁî Çì´õ ½ºÅ¸ÀÏ] - Àý´ë À¯Áö */
        .main-header { width: 100%; background: #fff; position: relative; z-index: 1000; }
        .header-container { max-width: 1280px; width: 1200px; margin: 0 auto; display: flex; align-items: center; padding:0px; }
        .top-bar { background-color: #f8f8f8; border-bottom: 1px solid #eee; padding: 6px 0; }
        .top-links { margin-left: auto; display: flex; gap: 18px; }
        .top-links a { font-size: 12px; color: #888; }
        .header-middle { padding: 25px 0; border-bottom: 1px solid #f5f5f5; }
        .middle-grid { display: grid; grid-template-columns: 250px 1fr 250px; align-items: center; } 
        .logo a { font-size: 30px; color: #111; letter-spacing: -1px; }
        .logo .bold { font-weight: 800; }
        .center-area { display: flex; flex-direction: column; align-items: center; gap: 6px; }
        .brand-switcher { display: flex; gap: 6px; align-self: flex-end; margin-right: 15px; margin-bottom: 2px; }
        .brand-btn { display: inline-flex; align-items: center; background-color: #222; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
        .brand-btn.active { background-color: #000; }
        .brand-btn .badge { background-color: #ff3b3b; color: #fff; font-size: 9px; padding: 1px 6px; border-radius: 10px; margin-left: 6px; text-transform: uppercase; }
        .search-box { position: relative; width: 100%; max-width: 480px; }
        .search-box input { width: 100%; padding: 12px 50px 12px 22px; border: 1px solid #ddd; border-radius: 35px; background: #f9f9f9; outline: none; font-size: 14px; }
        .btn-search { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); border: none; background: transparent; cursor: pointer; }
        .customer-info { text-align: right; line-height: 1.3; }
        .customer-info .phone { display: block; font-size: 24px; font-weight: 800; color: #000; }
        .customer-info .email { font-size: 12px; color: #777; }
        .gnb {  position: sticky; top: 0; background: #fff; z-index: 1000; }
        .nav-menu { display: flex; gap: 50px; }
        /*.nav-menu li a { display: block; padding: 18px 0; font-weight: 700; font-size: 16px; }
       
		
		*/
		 .nav-menu li.active a { color: #000; position: relative; }
        .nav-menu li.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: #000; }
        .nav-icons { margin-left: auto; display: flex;     gap: 15px;     margin-top: 2px;}

		
        /* --- [¸Þ´º µðÀÚÀÎ] --- */
        .header-container { display: flex; justify-content: space-between; align-items: center; height: 60px; }
        .nav-menu { display: flex; list-style: none; gap: 0; margin: 0; padding: 0; font-size: 16px; }
        .nav-menu > li { position: relative; }
        .nav-menu > li > a { 
            display: block; padding: 0 25px; line-height: 60px; 
            text-decoration: none; color: #333; font-weight: 500; 
        }
        .nav-menu > li:hover > a { color: #ff5a5f; }

        /* ¼­ºê¸Þ´º (2´Ü°è) */
        .submenu {
            display: none; position: absolute; top: 60px; left: 0; 
            min-width: 180px; background: #fff; border: 1px solid #eee; 
            box-shadow: 0 5px 15px rgba(0,0,0,0.08); list-style: none; margin: 0; padding: 10px 0;
            z-index: 3000;
        }
        .submenu li { position: relative; }
        .submenu a { display: block; padding: 10px 20px; color: #555; text-decoration: none; font-size: 14px; }
        .submenu a:hover { background: #f8f9fa; color: #ff5a5f; }

        /* ¼­ºê¸Þ´º (3´Ü°è) */
        .submenu-depth3 {
            display: none; position: absolute; top: -1px; left: 100%; 
            min-width: 180px; background: #fff; border: 1px solid #eee; 
            box-shadow: 5px 5px 15px rgba(0,0,0,0.08); list-style: none; margin: 0; padding: 10px 0;
            z-index: 4000;
        }

        .nav-menu li:hover > .submenu { display: block; }
        .submenu li:hover > .submenu-depth3 { display: block; }

        .submenu .has-child > a::after {
            content: '\203A';
            float: right;
            font-weight: bold;
            color: #ccc;
        }
		
		/* --- [¼öÁ¤µÈ ½ºÆ¼Å° ÇÙ½É CSS] --- */
        
        /* 1. Æò»ó½Ã »óÅÂ */
        .allcategory_top {
            width: 100%;
            background: #fff;
            z-index: 10000;
            transition: background 0.3s;
        }

        /* 2. °íÁ¤µÇ¾úÀ» ¶§ »óÅÂ  */
        .allcategory_top.fixed {
            position: fixed;
            top: 0;
            left: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            animation: slideDown 0.4s ease-out; /* ³»·Á¿À´Â È¿°ú */
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        /* °íÁ¤ ½Ã ¸Þ´º°¡ °©ÀÚ±â »ç¶óÁ®¼­ º»¹®ÀÌ Åö ¿Ã¶ó¿À´Â Çö»ó ¹æÁö¿ë */
        .header-spacer {
            display: none;
            height: 60px; /* allcategory_topÀÇ ³ôÀÌ¿Í µ¿ÀÏÇÏ°Ô */
        }
        .header-spacer.active {
            display: block;
        }

        /* [3. 3´Ü ¸ÖÆ¼ ½½¶óÀÌµå ½ºÅ¸ÀÏ] - À¯Áö */
        .main-slider-section { padding: 40px 0; background: #fff; }
        .swiper { width: 100%; padding-bottom: 10px; }
        .swiper-slide { width: 800px; height: 400px; border-radius: 25px; overflow: hidden; transition: all 0.4s; opacity: 0.5; transform: scale(0.85); }
        .swiper-slide-active { opacity: 1; transform: scale(1); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
        .slide-txt { position: absolute; left: 50px; top: 50%; transform: translateY(-50%); z-index: 5; }
        .slide-txt .tag { display: inline-block; background: #ff3b3b; color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 4px; font-weight: 700; margin-bottom: 15px; }
        .slide-txt h3 { font-size: 32px; font-weight: 800; line-height: 1.3; margin-bottom: 15px; }
        .slide-txt p { font-size: 15px; color: #555; }
        .slider-controls { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: -30px; position: relative; z-index: 10; }
        .swiper-pagination { position: relative !important; width: auto !important; }
        .swiper-pagination-bullet-active { background: #333; width: 25px; border-radius: 10px; }

        /* [4. Àü¹®°¡ ¼½¼Ç ½ºÅ¸ÀÏ] - À¯Áö */
        .expert-section { padding: 80px 0; background: #fff; text-align: center; }
        .expert-section .section-title { font-size: 32px; font-weight: 900; color: #000; margin-bottom: 15px; text-transform: uppercase; }
        .expert-section .section-desc { font-size: 15px; color: #888; margin-bottom: 50px; }
        .expert-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 20px; }
        .expert-card { background: #f8f9fb; border-radius: 15px; overflow: hidden; text-align: left; transition: 0.3s; }
        .expert-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .expert-card .img-box { width: 100%; height: 300px; background: #eef1f5; overflow: hidden; }
        .expert-card .img-box img { width: 100%; height: 100%; object-fit: cover; }
        .expert-card .info-box { padding: 25px; }
        .expert-card .info-box h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
        .expert-card .info-box p { font-size: 13px; color: #999; }


	.sub-main-banner {
            width: 100%;
            height: 400px;
            position: relative;
            background-color: #222;
            z-index: 1; /* Çì´õº¸´Ù ³·°Ô ¼³Á¤ */
        }

		 .sub-main-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .sub-banner-text {
            position: absolute;
            top: 50%;
            left: 400px;
            transform: translateY(-50%);
            color: #fff;
            z-index: 2;
        }

	.sub-banner-text h2 {
            font-size: 48px; /* ±âÁ¸ 20px¿¡¼­ ´ëÆø È®´ë */
            font-weight: 700;
            margin-bottom: 15px; /* ÅØ½ºÆ® »çÀÌ °£°Ý Á¶Á¤ */
            letter-spacing: -1.5px; /* Å« ±ÛÀÚÀÏ¼ö·Ï ÀÚ°£À» Á¼Çô¾ß ¼¼·ÃµÅ º¸ÀÓ */
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3); /* ¹è°æ ÀÌ¹ÌÁö ´ëºñ °¡µ¶¼º È®º¸ */
        }
		.sub-banner-text p {
            font-size: 20px; /* ±âÁ¸ 13px¿¡¼­ È®´ë */
            opacity: 0.95;
            font-weight: 400;
            letter-spacing: -0.5px;
            line-height: 1.6;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
        }
		
/* =========================
   ÇÁ·Î¼¼½º ¹Ú½º
========================= */
.process-box {
  padding: 80px 40px;
  background: #f5f6f8;
  border-radius: 18px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

.step-area {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.step {
  flex: 1;
  padding: 20px 10px 20px;
  position: relative;
}

.step + .step {
  border-left: 1px solid #eee;
}

.step-label {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.step-text {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.more-btn {
  margin-top: 40px;
  border: 1px solid black;
  background: #fff;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 14px;
}
/* =========================
   »ç·Ê ¿µ¿ª
========================= */
.case-area {
    padding: 80px 0;
  margin-top: 60px;
  text-align: center; max-width: 1280px;
    margin: 0 auto;
}

.case-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1.4;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  transition: transform 0.35s ease;
}

/* ÀÌ¹ÌÁö */
.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.35s ease;
}

.card-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 14px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );

  color: #fff;
  text-align: left;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

/* ÅØ½ºÆ® */
.card-title {
  font-size: 14px;
  font-weight: 600;
}

.card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.14));
}

.card:hover .card-info {
  opacity: 1;
  transform: translateY(0);
}
        @media (max-width: 1024px) {
            .expert-grid { grid-template-columns: repeat(2, 1fr); }
            .middle-grid { grid-template-columns: 1fr 1fr; }
            .center-area { display: none; }
        }
		
		/* ÇªÅÍ ÀüÃ¼ ½ºÅ¸ÀÏ */
        .olga-footer-wrap {
            background-color: #111; /* ¹è°æ: µöºí·¢ */
            color: #999; /* ±âº» ÅØ½ºÆ®: ±×·¹ÀÌ */
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
            font-size: 13px;
            line-height: 1.6;
            padding: 60px 0 40px;
            letter-spacing: -0.02em;
        }

        .footer-container {
            max-width: 1050px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* »ó´Ü ¸Þ´º ¸®½ºÆ® */
        .f-nav {
            margin-bottom: 40px;
            border-bottom: 1px solid #222;
            padding-bottom: 20px;
        }

        .f-nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 0;
        }

        .f-nav ul li a {
            color: #bbb;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .f-nav ul li a:hover {
            color: #fff;
        }

        /* ÀÔÁ¡½ÅÃ» °­Á¶ (¼¼·ÃµÈ Æ÷ÀÎÆ® ÄÃ·¯) */
        .f-nav ul li a.point-red {
            color: #ff4d4d; 
            font-weight: 700;
        }

        /* ÇªÅÍ ¸ÞÀÎ Á¤º¸ ¿µ¿ª */
        .f-main {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        /* ·Î°í ¿µ¿ª */
        .f-logo {
            flex-shrink: 0;
        }

        .f-logo img {
            max-width: 140px;
            opacity: 0.9;
        }

        /* Á¤º¸ ÅØ½ºÆ® ¿µ¿ª */
        .f-info {
            flex-grow: 1;
        }

        .f-info p {
            margin: 0 0 8px;
        }

        .f-info .company {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            display: block;
        }

        .f-info span {
            display: inline-flex;
            align-items: center;
        }

        .f-info span:not(:last-child)::after {
            content: "";
            display: inline-block;
            width: 1px;
            height: 10px;
            background-color: #333;
            margin: 0 10px;
        }

        .f-info a.biz-link {
            color: #666;
            text-decoration: underline;
            font-size: 11px;
            margin-left: 5px;
        }

        .f-info .contact-row strong {
            color: #fff;
            font-size: 15px;
        }

        /* ¿¡½ºÅ©·Î ¿µ¿ª */
        .f-escrow {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .f-escrow img {
            height: 35px;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .f-escrow img:hover {
            opacity: 1;
        }

        /* ÇÏ´Ü Ä«ÇÇ¶óÀÌÆ® */
        .f-copyright {
            margin-top: 40px;
            color: #555;
            font-size: 12px;
            border-top: 1px solid #1a1a1a;
            padding-top: 20px;
        }
.main-slider-section {
    position: relative;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
    font-size: 14px;    font-family: 'Noto Sans KR', sans-serif;
}

/* ±âº» È­»ìÇ¥ Á¦°Å */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Ä¿½ºÅÒ È­»ìÇ¥ */
.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 14px;
    cursor: pointer;
	background-image : none;
}

.swiper-button-prev::before {
    content: "<";
        font-weight: bold;
}

.swiper-button-next::before {
    content: ">";
        font-weight: bold;
}

/*
.swiper-pagination-current{
        font-weight: bold;
}
.swiper-pagination-current::after {
    content: " / ";
        font-weight: bold;
}
*/
/* fraction */
.swiper-pagination {
    position: static !important;
    width: auto !important;
    font-weight: bold;    font-family: 'Noto Sans KR', sans-serif;margin-top: -2px;
}
.swiper-pagination-total {
    position: static !important;
    width: auto !important;
    font-weight: normal;    font-family: 'Noto Sans KR', sans-serif;
}

/* Åä±Û ¹öÆ° */
.swiper-toggle {
    border: 0;
    background: none;
    cursor: pointer;
}

      .swiper-toggle img {
    width: 20px;
    height: 20px;
    display: block;
}

/* °øÅë ÃÊ±â »óÅÂ */
.reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

/* ÁÂ ¡æ ¿ì */
.reveal-left {
  transform: translateX(-80px);
}

/* À§ ¡æ ¾Æ·¡ */
.reveal-up {
  transform: translateY(-80px);
}

/* È°¼ºÈ­ »óÅÂ */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/*
»óÇ°¸®½ºÆ® CSS START
*/

.container {width: 1300px;
	max-width: 1300px;
	margin: 0 auto;
	padding: 50px 20px;
	display: flex;
	gap: 50px;
}

/* 2. »çÀÌµå¹Ù (ÁÖ½Å ÄÚµå ±×´ë·Î À¯Áö) */
.sidebar { width: 170px; flex-shrink: 0; }
.sidebar-title { font-size: 22px; font-weight: 700; margin-bottom: 35px; letter-spacing: -1px; }
.menu-group { margin-bottom: 5px; border-bottom: 1px solid #f4f4f4; }
.depth-01-title { font-size: 15px; font-weight: 700; color: #111; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.depth-01-title::after { content: '+'; font-size: 16px; font-weight: 300; transition: transform 0.3s; }
.menu-group.active .depth-01-title::after { content: '-'; transform: rotate(180deg); }
.sub-menu-container { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; overflow: hidden; }
.menu-group.active .sub-menu-container { grid-template-rows: 1fr; }
.sub-menu { min-height: 0; }
.sub-menu li { padding: 7px 0; }
.sub-menu li a { display: block; font-size: 14px; color: #888; transition: all 0.3s ease; }
.sub-menu li a:hover, .sub-menu li a.active { color: #000; font-weight: 500; padding-left: 8px; }

/* 3. ¿ìÃø ¸ÞÀÎ ¿µ¿ª (¿äÃ» »çÇ× ¹Ý¿µ) */
.main-content { flex-grow: 1; }
.content-header { margin-bottom: 20px; }
.category-name { font-size: 28px; font-weight: 700; margin-bottom: 20px; }

/* [Ãß°¡] Ä«Å×°í¸®¸í ¾Æ·¡ °¡·Î ÁÙ */
.header-line { 
	width: 100%; 
	height: 1px; 
	background-color: #000; 
	margin-bottom: 40px; 
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px 25px;
}

/* [Ãß°¡] ÀÌ¹ÌÁö ÀüÈ¯ ¹× Äüºä ¿µ¿ª */
.img-wrap {
	position: relative; width: 100%; aspect-ratio: 1/1;
	background-color: #f9f9f9; overflow: hidden;
}

.img-wrap img {
	width: 100%; height: 100%; object-fit: cover;
	position: absolute; top: 0; left: 0;
	transition: opacity 0.5s ease-in-out;
}
.img-hover { opacity: 0; }

/* [Ãß°¡] Äüºä ¹öÆ° */
.quick-view {
	position: absolute;
	bottom: -50px; left: 0; width: 100%; height: 50px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; font-weight: 500;
	z-index: 10;
	transition: bottom 0.3s ease;
	cursor: pointer;
}

/* È£¹ö ÀÎÅÍ·¢¼Ç */
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .quick-view { bottom: 0; }
.quick-view:hover { background-color: #000; }

/* [Ãß°¡] Á¤º¸ ÅØ½ºÆ® ¿µ¿ª */
.info-wrap { margin-top: 18px; }

/* ÅÂ±× */
.tag-wrap { display: flex; gap: 5px; margin-bottom: 8px; }
.tag { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 2px; }
.tag.best { background-color: #000; color: #fff; }
.tag.new { background-color: #fff; border: 1px solid #ddd; color: #333; }

.brand { font-size: 11px; color: #aaa; font-weight: 700; margin-bottom: 5px; }

/* »óÇ°¸í + ÃÖ¼Ò¼ö·® °¡·Î Á¤·Ä */
.name-area { display: flex; align-items: baseline; gap: 8px; margin-bottom: 7px; }
.name { font-size: 15px; font-weight: 500; color: #222; }
.moq { font-size: 12px; color: #888; font-weight: 400; white-space: nowrap; }

.price { font-size: 16px; font-weight: 700; }

/*
@media (max-width: 1024px) {
	.container { flex-direction: column; }
	.sidebar { width: 100%; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
}	
*/
/*
»óÇ°¸®½ºÆ® CSS END
*/

/*
»óÇ°»ó¼¼ CSS START
*/
.left-area { width: 400px; flex-shrink: 0; }
.main-thumb { width: 400px; height: 400px; background-color: #f7f7f7; border-radius: 4px; overflow: hidden; }
.main-thumb img { width: 100%; height: 100%; object-fit: cover; }
.right-area { margin-left: 20px; width: 560px; flex-grow: 0; }

.product-header { border-bottom: 2px solid #333; padding-bottom: 15px; margin-bottom: 20px; }
.title { font-size: 24px; font-weight: bold; line-height: 1.3; }
.short-desc { font-size: 14px; color: #777; line-height: 1.5; margin: 15px 0; }

.quantity-slider-wrap { margin: 25px 0; position: relative; }
.label-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 10px; }

.qty-title-area { 
	display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: bold; color: #444; 
	cursor: pointer; position: relative; padding-bottom: 2px; border-bottom: 1px dashed #ccc;
}
.qty-title-area:hover { border-bottom-color: #222; color: #222; }

.info-icon { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: #f0f0f0; border-radius: 50%; font-size: 10px; color: #999; }

.tooltip-box {
	display: none; position: absolute; top: -155px; left: 0; z-index: 100;
	width: 210px; background: #fff; border: 1px solid #222; padding: 15px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.15); border-radius: 6px;
}
.qty-title-area:hover .tooltip-box { display: block; }

.tooltip-table { width: 100%; font-size: 12px; border-collapse: collapse; }
.tooltip-table th { text-align: left; color: #888; font-weight: normal; padding-bottom: 8px; border-bottom: 1px solid #eee; }
.tooltip-table td { padding: 4px 0; font-weight: bold; }
.tooltip-table tr.active td { color: #e67e22; }

.qty-control-group { display: flex; align-items: center; gap: 12px; }
.price-display { display: flex; align-items: center; gap: 5px; }
.price-display .unit-label, .price-display .unit-price { font-size: 13px; color: #888; }
.qty-input-wrapper { display: flex; align-items: center; gap: 5px; }
.qty-input-wrapper input { width: 80px; height: 32px; border: 1px solid #ddd; border-radius: 4px; text-align: center; font-size: 15px; font-weight: bold; color: #e67e22; }

input[type="range"] { width: 100%; height: 6px; background: #eee; border-radius: 5px; outline: none; -webkit-appearance: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: #222; border-radius: 50%; cursor: pointer; }

.option-group { margin-bottom: 12px; }
.option-group label { display: block; font-size: 12px; font-weight: bold; margin-bottom: 6px; color: #444; }
.option-group select { width: 100%; height: 40px; padding: 0 10px; border: 1px solid #e0e0e0; font-size: 13px; color: #555; outline: none; background: #fff; }
.option-group select:disabled { background: #f2f2f2; color: #ccc; cursor: not-allowed; }

.total-price-box { margin-top: 20px; padding: 25px; background: #f9f9f9; border-radius: 4px; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.price-row:last-child { margin-bottom: 0; padding-top: 15px; border-top: 1px solid #ddd; }
.price-label { font-size: 14px; color: #666; }
.price-val { font-size: 16px; font-weight: 600; color: #444; }
.total-label { font-size: 16px; font-weight: bold; color: #222; }
.total-amount { font-size: 26px; font-weight: 800; color: #222; }

.btn-wrap { display: flex; gap: 8px; margin-top: 20px; }
.btn { height: 55px; flex: 1; border: 1px solid #222; font-size: 15px; font-weight: bold; cursor: pointer; transition: 0.2s; }
.btn-white { background: #fff; color: #222; }
.btn-black { background: #222; color: #fff; }	

.product-code {
    display: inline-block;
    padding: 5px 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
	font-size: 14px;
    color: #777;
}

.product-code span {
  margin-left: 4px;
}	
/*
»óÇ°»ó¼¼ CSS END
*/

  .kit-product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 1Çà 2¿­ ¼³Á¤ */
            gap: 50px 30px;
        }

        .kit-img-wrap {
            position: relative; 
            width: 100%; 
            aspect-ratio: 1.4 / 1; /* ¿äÃ»ÇÏ½Å °¡·Î 1.4 : ¼¼·Î 1.0 ¹èÀ² */
            background-color: #f9f9f9; 
            overflow: hidden;
        }

        .kit-img-wrap img {
            width: 100%; height: 100%; object-fit: cover;
            position: absolute; top: 0; left: 0;
            transition: opacity 0.5s ease-in-out;
        }

		.kit-product-card:hover .kit-img-wrap img {
			filter: brightness(90%);   /* 90% = 10% ¾îµÓ°Ô */
		}
		/*
        .kit-img-hover { opacity: 0; }

        .kit-product-card:hover .kit-img-main { opacity: 0; }
        .kit-product-card:hover .kit-img-hover { opacity: 1; }
		*/

        /* Á¤º¸ ÅØ½ºÆ® ¿µ¿ª */
        .kit-info-wrap { margin-top: 20px; }
        .kit-tag-wrap { display: flex; gap: 5px; margin-bottom: 10px; }
        .kit-tag { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 2px; }
        .kit-tag.best { background-color: #fff; border: 1px solid #ddd; color: #333; }
        .kit-tag.new { background-color: #fff; border: 1px solid #ddd; color: #333; }

        .kit-brand { font-size: 12px; color: #aaa; font-weight: 700; margin-bottom: 6px; }
        .kit-name-area { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
        .kit-name { font-size: 17px; font-weight: 500; color: #222; }
        .kit-moq { font-size: 13px; color: #888; font-weight: 400; white-space: nowrap; }
        .kit-price { font-size: 18px; font-weight: 700; }


.sub-section-title { font-size: 16px; font-weight: bold; margin-bottom: 15px;     margin-top: 15px;color: #333; }
.component-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
 .comp-item { text-align: left; }
.comp-img { 
    width: 100%; 
    aspect-ratio: 1; 
    background: #f9f9f9; 
    border-radius: 4px; 
    margin-bottom: 6px; 
    border: 1px solid #f0f0f0; 
    overflow: hidden; /* ÀÌ¹ÌÁö°¡ ¿µ¿ªÀ» ¹þ¾î³ªÁö ¾Ê°Ô ¼³Á¤ */
}

.comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ÀÌ¹ÌÁö°¡ Á¤»ç°¢Çü¿¡ ²Ë Â÷°Ô Á¤·Ä */
    display: block;
}
.comp-name { font-size: 11px; color: #666; word-break: keep-all; line-height: 1.3; }


.addon-section-title { font-size: 14px; font-weight: bold; margin: 25px 0 10px; color: #444; }
				.addon-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
		.addon-img { 
			width: 50px; 
			height: 50px; 
			background: #f2f2f2; 
			border-radius: 4px; 
			flex-shrink: 0; 
			overflow: hidden; /* Ãß°¡: ÀÌ¹ÌÁö°¡ ³ÑÄ¡Áö ¾Ê°Ô */
		}

		.addon-img img {
			width: 100%;
			height: 100%;
			object-fit: cover; /* Ãß°¡: ÀÌ¹ÌÁö°¡ ¿µ¿ª¿¡ ¸Â°Ô ²Ë Â÷µµ·Ï */
			display: block;
		}
        .addon-info { flex: 1; }
        
        /* [Ãß°¡] µµ¿ò¸» ¾ÆÀÌÄÜ ½ºÅ¸ÀÏ */
        .addon-name-wrap { display: flex; align-items: center; gap: 5px; }
        .addon-name { font-size: 13px; font-weight: 600; }
        .help-icon { 
            display: inline-flex; align-items: center; justify-content: center;
            width: 16px; height: 16px; border-radius: 50%; border: 1px solid #ccc;
            font-size: 11px; color: #999; cursor: help; font-style: normal;
        }
        .help-icon:hover { background: #eee; color: #666; }
        
        .addon-price { font-size: 13px; color: #111; font-weight: bold; margin-top: 2px; }
.min-qty-info {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-left: 5px;
}

.addon-scroll-container {
    max-height: 225px;
    overflow-y: auto;
    border-top: 1px solid #f5f5f5;
    padding-right: 8px;
}
			 .portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .portfolio-card { background-color: #f9f9f9; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; text-decoration: none; display: block; }
        .portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .image-wrapper { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background-color: #eee; position: relative; }
        .image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .portfolio-card:hover img { transform: scale(1.1); }
        .text-wrapper { padding: 20px 15px; }
        .client-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: #222; }
        .project-category { font-size: 13px; color: #888; }