/* BASIC css start */
body, div, h1, h2, h3, p, ul, li, label, input { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Nanum Gothic',sans-serif; background:#0f0f0f; color:#fff; line-height:1.6; padding: 20px 0; }
a { text-decoration:none; color:inherit; cursor:pointer; display: block; }
.intro_bg { position:fixed; width:100%; height:100%; z-index:-1; top:0; left:0; }
.intro_bg .overlay { position:absolute; width:100%; height:100%; background:rgba(0,0,0,0.65); } 
.intro_bg img { width:100%; height:100%; object-fit:cover; }
header { 
    background: rgba(255, 255, 255, 0.92) !important; 
    backdrop-filter: blur(15px) !important; 
    padding: 25px 0 !important; 
    text-align: center; 
    border: 1px solid #fff !important; 
    border-radius: 25px !important; 
    max-width: 1100px;
    margin: 0 auto 25px auto !important;
    position: relative; z-index: 999; 
}
.logo_img { height: 180px; width: auto; vertical-align: middle; }
.intro_wrap { width:100%; max-width:1100px; margin:0 auto; position: relative; z-index: 10; }
.container { 
    width:100%; 
    background:rgba(255,255,255,0.05); 
    backdrop-filter: blur(20px); 
    padding:45px 25px; 
    border-radius:25px; 
    border: 1px solid rgba(212,175,55,0.25); 
    text-align: center; 
}
.warning_banner {
    background: #eeeeee; border-radius: 15px; padding: 40px;
    display: flex; align-items: center; justify-content: center; gap: 40px; margin-bottom: 40px;
    text-align: left; color: #333; border: 1px solid #ccc;
}
.warning_icon {
    width: 130px; height: 130px; border: 10px solid #c62828; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 70px; font-weight: 900; color: #000; flex-shrink: 0;
}
.warning_text_area h2 { font-size: 34px; font-weight: 800; color: #000; margin-bottom: 10px; }
.warning_text_area p { font-size: 17px; color: #333; line-height: 1.5; font-weight: 500; }
.auth_wrapper { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 50px; }
.auth_box { 
    flex: 1; background: rgba(255, 255, 255, 0.08); padding: 35px; 
    border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); text-align: left;
}
.box-tit { font-size: 22px; font-weight: bold; color: #d4af37; margin-bottom: 20px; border-bottom: 2px solid #d4af37; display: inline-block; padding-bottom: 5px; }
.auth_box p.auth_notice { font-size: 14px; color: #ddd; margin-top: 25px; text-align: left; }
.btn_phone { background: #d4af37; color: #000; padding: 18px; text-align: center; font-weight: bold; border-radius: 10px; margin-bottom: 12px; font-size: 16px; }
.btn_ipin { background: #414c5b; color: #fff; padding: 18px; text-align: center; font-weight: bold; border-radius: 10px; font-size: 16px; }
.login_form { position: relative; }
.login_input { width: calc(100% - 100px); height: 50px; background: #fff; border: none; border-radius: 8px; margin-bottom: 8px; padding-left: 15px; font-size: 14px; color:#333; }
.btn_login_submit {
    position: absolute; top: 0; right: 0; width: 90px; height: 108px;
    background: #3c3f46; color: #fff; border-radius: 8px; border: none;
    font-weight: bold; font-size: 24px; text-align: center; cursor: pointer;
}
.category_grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:15px; margin-top:45px; }
.category_item { background:#ffffff; padding:25px 20px; border-radius:18px; border:1px solid #eee; position: relative; transition: 0.3s; text-align: left; }
.category_item:hover { border-color:#c19a6b; background:#fffcf9; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.mini_19 { position: absolute; top: 15px; right: 15px; width: 24px; height: 24px; background: #ff4d4d; color: #fff; font-size: 12px; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cat_title { font-size:18px; color:#c19a6b; font-weight:bold; margin-bottom:8px; display: block; }
.cat_desc { font-size:13px; color:#888; line-height:1.5; word-break: keep-all; }
.product_section { margin-top: 50px; text-align: left; }
.section_title {
    font-size: 22px;
    font-weight: 800;
    color: #F7F7F7;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section_title::before { content: ''; width: 4px; height: 20px; background: #c19a6b; display: block; }
.product_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.product_item { background: #fff; border-radius: 15px; padding: 15px; border: 1px solid #eee; transition: 0.3s; }
.product_item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: #c19a6b; }
.prd_img { width: 100%; aspect-ratio: 1/1; background: #f7f7f7; border-radius: 10px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 12px; }
.prd_name { font-size: 14px; font-weight: bold; color: #444; margin-bottom: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prd_tag { font-size: 11px; color: #c19a6b; font-weight: bold; }
.review_section { margin-top: 50px; text-align: left; }
.review_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.review_item { background: #fff; padding: 20px; border-radius: 15px; border: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.rev_header { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid #f5f5f5; padding-bottom: 10px; }
.rev_user { font-size: 13px; color: #c19a6b; font-weight: bold; }
.rev_star { color: #f1c40f; font-size: 12px; }
.rev_prd { font-size: 12px; color: #888; margin-bottom: 10px; display: block; }
.rev_content { font-size: 14px; color: #666; line-height: 1.5; height: 4.5em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.brand_guide { text-align:left; background:#ffffff; padding:40px; border-radius:20px; margin-top:50px; border: 1px solid #eee; }
.faq_area { margin-top:35px; border-top: 1px solid #eee; padding-top: 30px; }
.faq_item { margin-bottom: 25px; }
.faq_q { color:#c19a6b; font-weight:bold; font-size: 17px; margin-bottom:8px; display: flex; align-items: flex-start; }
.faq_q::before { content: 'Q.'; margin-right: 8px; color: #ff4d4d; }
.faq_a { color:#666; font-size:14px; line-height: 1.8; padding-left: 25px; }
.comp_section { margin-top: 45px; display: flex; flex-direction: column; align-items: center; gap: 20px; padding-top: 40px; border-top: 1px solid #eee; }
.comp_section img { max-width: 100%; height: auto; opacity: 0.8; }
.footer_black { background: #fff; color: #666; padding: 50px 0; border-radius: 30px; border: 1px solid #eee; max-width: 1100px; margin: 30px auto 0; }
.footer_inner { display: grid; grid-template-columns: 1.6fr 1.2fr; gap: 40px; padding: 0 50px; text-align: left; font-size: 13px; }
.footer_inner strong { color: #222; }
@media (max-width: 850px) { 
    .warning_banner { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; }
    .auth_wrapper { flex-direction: column; }
    .category_grid { grid-template-columns: 1fr; }
    .product_grid { grid-template-columns: repeat(2, 1fr); }
    .review_grid { grid-template-columns: 1fr; }
    .footer_inner { grid-template-columns: 1fr; }
}
/* BASIC css end */

