/* Trend06 Layout Style - Side-Nav & Catalog */ /* ๐Ÿ’ก [์ถ”๊ฐ€] ๊ณ ์ • ํ—ค๋”๋กœ ์ธํ•œ ๊ฒน์นจ ๋ฐฉ์ง€ */ body { padding-top: 80px; background-color: #f5f5f5; /* ์ „์ฒด ๋ฐฐ๊ฒฝ์ƒ‰ */ color: #333; } .trend06-layout { display: flex; gap: 30px; padding-top: 40px; padding-bottom: 80px; max-width: 1400px; margin: 0 auto; } /* 1. ์ขŒ์ธก ์‚ฌ์ด๋“œ๋ฐ” */ .layout-sidebar-left { flex: 0 0 250px; /* ๋„ˆ๋น„ ๊ณ ์ • */ background-color: #fff; border: 1px solid #ddd; border-radius: 5px; padding: 20px; height: fit-content; position: sticky; top: 100px; /* ์Šคํฌ๋กค ์‹œ ์ƒ๋‹จ ๊ณ ์ • */ } .sidebar-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #333; color: #333; } .sidebar-category-nav ul { list-style: none; padding: 0; margin: 0; } .category-item { margin-bottom: 10px; } .category-item > a { display: block; padding: 10px 15px; color: #555; text-decoration: none; font-weight: 500; border-radius: 4px; transition: all 0.2s; } .category-item > a:hover, .category-item.active > a { background-color: #f0f4f8; color: #0056b3; /* ํฌ์ธํŠธ ์ƒ‰์ƒ */ font-weight: 700; } /* 2์ฐจ ๋ถ„๋ฅ˜ (์„œ๋ธŒ ์นดํ…Œ๊ณ ๋ฆฌ) */ .sub-category-list { margin-top: 5px; padding-left: 15px !important; display: none; /* ๊ธฐ๋ณธ ์ˆจ๊น€ */ } .category-item.active .sub-category-list, .category-item:hover .sub-category-list { display: block; /* ํ™œ์„ฑํ™”๋˜๊ฑฐ๋‚˜ ํ˜ธ๋ฒ„ ์‹œ ํ‘œ์‹œ */ } .sub-category-item a { font-size: 0.9rem; padding: 5px 10px; color: #777; } .sub-category-item a:hover, .sub-category-item.active a { color: #0056b3; } /* 2. ์šฐ์ธก ๋ฉ”์ธ ์ฝ˜ํ…์ธ  */ .layout-main-content { flex: 1; min-width: 0; /* flex item overflow ๋ฐฉ์ง€ */ background-color: #fff; border: 1px solid #ddd; border-radius: 5px; padding: 30px; } .guide-box { padding: 40px; background-color: #f9f9f9; border: 1px dashed #ddd; color: #888; font-size: 0.9rem; text-align: center; margin-bottom: 20px; } /* ๐Ÿ’ก [์ถ”๊ฐ€] ์ƒํ’ˆ ๋ชฉ๋ก ์Šคํƒ€์ผ (Trend06 ์ „์šฉ) */ .trend06-layout .rb_shop_list .swiper-wrapper { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; height: auto !important; } .trend06-layout .rb_shop_list .swiper-slide { width: auto !important; height: auto !important; margin: 0 !important; } .trend06-layout .rb_shop_list_item { border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; background: #fff; height: 100%; display: flex; flex-direction: column; } .trend06-layout .rb_shop_list_item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-color: #0056b3; } .trend06-layout .rb_shop_list_item_img { position: relative; padding-top: 100%; /* 1:1 ๋น„์œจ */ overflow: hidden; background: #f9f9f9; } .trend06-layout .rb_shop_list_item_img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0 !important; border: none !important; } .trend06-layout .v_ch_list_r { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; } .trend06-layout .rb_shop_list_item_ca { font-size: 12px; color: #999; margin-bottom: 5px; } .trend06-layout .rb_shop_list_item_name a { font-size: 16px; font-weight: 700; color: #333; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 2.8em; } .trend06-layout .rb_shop_list_item_basic { font-size: 13px; color: #777; margin-top: 10px; margin-bottom: auto; /* ๊ฐ€๊ฒฉ์„ ํ•˜๋‹จ์œผ๋กœ ๋ฐ€๊ธฐ */ } .trend06-layout .rb_shop_list_item_pri { margin-top: 15px; padding-top: 15px; border-top: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; } .trend06-layout .rb_shop_list_item_pri .pri { font-size: 18px; font-weight: 900; color: #0056b3; } .trend06-layout .list_wish_int { display: none; /* ์ฐœํ•˜๊ธฐ ๋ฒ„ํŠผ ์ˆจ๊น€ (๊น”๋”ํ•˜๊ฒŒ) */ } /* ๋ชจ๋ฐ”์ผ ๋ฐ˜์‘ํ˜• */ @media (max-width: 1024px) { .trend06-layout { flex-direction: column; padding-top: 20px; } .layout-sidebar-left { flex: none; width: 100%; position: static; /* ๋ชจ๋ฐ”์ผ์—์„œ๋Š” ๊ณ ์ • ํ•ด์ œ */ margin-bottom: 20px; } .sidebar-category-nav ul { display: flex; flex-wrap: wrap; gap: 10px; } .category-item { margin-bottom: 0; } .category-item > a { padding: 8px 15px; background-color: #f9f9f9; border: 1px solid #eee; } .sub-category-list { display: none !important; /* ๋ชจ๋ฐ”์ผ์—์„œ๋Š” 2์ฐจ ๋ถ„๋ฅ˜ ์ˆจ๊น€ (๋„ˆ๋ฌด ๋ณต์žกํ•ด์ง) */ } .trend06-layout .rb_shop_list .swiper-wrapper { grid-template-columns: repeat(2, 1fr); /* ๋ชจ๋ฐ”์ผ 2์—ด */ gap: 10px; } }