@charset "utf-8";

/* 메인 비주얼 */
.main-visual {
    position: relative;
    height: 800px;
    /* min-height: 600px; */
    overflow: hidden;
    width: 100%;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(3 16 23 / 60%);
    z-index: 1;
}

.visual-content {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
    padding: 250px 0px 0;
    color: #fff;
    z-index: 13;
}

.logo-white {
    width: 103px;
    height: 76px;
    margin-bottom: 10px;
}

.visual-title {
    font-family: 'Pretendard';
    font-size: 84px;
    font-weight: 700;
    /* margin-bottom: 20px; */
    color: white;
    line-height: 1.1;
}

.visual-text {
    font-family: 'Pretendard';
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 4px;
    word-break: keep-all;
    color: white;
    opacity: 1;
    font-weight: 300;
}

.visual-buttons {
    display: flex;
    gap: 9px;
}

.visual-buttons a {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #fff;
    color: white;
    /* background: white; */
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 700;
}


/* 제품 라인 */
.product-line {
    padding: 120px 0;
    background: var(--background-light);
}

.product-line .container {
    max-width: 1350px;
    margin: 0 auto;
    text-align: left;
}

.product-line .section-title,
.product-line .section-desc,
.product-line .btn-more-products {
    text-align: left;
    margin-left: 0;
}

.section-title {
    font-family: 'Pretendard';
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    color: black;
}

.section-desc {
    font-family: 'Pretendard';
    text-align: center;
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 14px;
}

.btn-more-products {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 19px;
    font-size: 18px;
    border: none;
    margin-bottom: 40px;
    transition: background 0.2s;
}

.btn-more-products:hover {
    background: #b8003a;
    color: #fff;
}

.product-grid {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.product-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    /* padding: 32px 24px 24px 24px; */
    text-align: center;
    /* transition: box-shadow 0.2s, transform 0.2s; */
    /* min-width: 220px; */
    /* max-width: 260px; */
    flex: 1;
    box-shadow: 0px 3px 6px #00000029;
}

.product-item:hover {
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); */
    /* transform: translateY(-6px); */
}

.product-item img {
    width: 330px;
    height: 280px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-brand {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-top: 0;
}

.product-brand.img1 {
    width: 182px;
    height: 29px;
    margin-top: 16px;
}

.product-brand.img2 {
    width: 139px;
    height: 63px;
}

.product-brand.img3 {
    width: 168px;
    height: 28px;
    margin-top: 16px;
}

.product-brand.img4 {
    width: 87px;
    height: 52px;
    margin-top: 6px;
}


/* 회사 소개 */
.company-intro {
    background: var(--background-light);
    padding: 100px 0;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-title {
    font-family: 'Pretendard';
    font-size: 48px;
    line-height: 1.3;
    word-break: keep-all;
    margin-bottom: 50px;
}

.intro-title strong {
    color: var(--primary-color);
}

.intro-image {
    position: relative;
    margin: 50px 0;
    border-radius: 20px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border-radius: 10px;
}

.intro-overlay p {
    font-family: 'Pretendard';
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    word-break: keep-all;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.info-box h3 {
    font-family: 'Pretendard';
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
    word-break: keep-all;
}

.time,
.phone {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-family: 'Pretendard';
    font-size: 16px;
    color: #666;
}

.time i,
.phone i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Pretendard';
}

.btn-contact i {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.btn-contact:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-contact:hover i {
    color: #fff;
}

/* 공지사항 */
.notice-news {
    padding: 100px 0;
    background: var(--background-light);
}

.notice-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.notice-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.notice-item .category {
    width: 80px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'Pretendard';
}

.notice-item .title {
    flex: 1;
    padding: 0 20px;
    font-family: 'Pretendard';
    color: #333;
}

.notice-item .date {
    color: #666;
    margin-right: 20px;
    font-family: 'Pretendard';
}

.notice-item .btn-more {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notice-item .btn-more:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}




.company-intro.new-layout {
    background: #fff;
    padding: 120px 0;
  }
  .company-grid {
    display: grid;
    grid-template-columns: 470fr 448fr 428fr;
    gap: 2px;
    max-width: 1350px;
    margin: 0 auto;
    align-items: start;
  }
  .company-title-area {
    /* padding-top: 20px; */
  }
  .company-title-sub {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
  }
  .company-title-main {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.18;
    color: #222;
    margin-bottom: 0;
    word-break: keep-all;
  }
  .company-title-main span {
    color: var(--primary-color);
    font-weight: 800;
  }
  .company-image-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .company-image-area img {
    width: 100%;
    height: 655px;
    /* max-width: 420px; */
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    object-fit: cover;
  }
  .company-desc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0001;
    padding: 22px 21px;
    margin-top: 15px;
    font-size: 18px;
    color: #222;
    line-height: 1.6;
    word-break: keep-all;
    position: relative;
    box-shadow: 0px 3px 6px #00000029;
  }
  .company-more-btn {
    display: block;
    width: 110px;
    height: 36px;
    background: #1a3881;
    color: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 8px;
    margin-left: auto;
  }
  .company-contact-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0001;
    padding: 36px 31px;
    margin-bottom: 8px;
    height: 236px;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0px 3px 6px #00000029;
  }
  .contact-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 11px;
  }
  .contact-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
  }
  .contact-info {
    font-size: 20px;
    color: #222;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 11px;
  }
  .contact-info i {
    margin-right: 7px;
    color: var(--primary-color);
  }
  .contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    padding: 53px 31px;
    margin-bottom: 0;
    text-decoration: none;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 12px #0001;
  }
  .contact-btn span {
    display: block;
  }
  .contact-btn.blue {
    background: var(--primary-color);
    color: #fff;
  }
  .contact-btn .btn-text {
  font-size: 28px;
  font-weight: 700;
  }
  .contact-btn.white {
    background: #fff;
    color: var(--primary-color);
    border: 1.5px solid #e6eaf2;
    box-shadow: 0px 3px 6px #00000029;
  }
  .contact-btn.red {
    background: #e6004c;
    color: #fff;
  }
  .contact-btn i {
    font-size: 32px;
    margin-left: 12px;
  }
  @media (max-width: 1100px) {
    .company-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .company-title-area, .company-image-area, .company-contact-area {
      text-align: center;
      align-items: center;
      justify-content: center;
    }
  }

.contact-btn .contact-icon {
  width: 60px;
  height: 60px;
  margin-left: 12px;
  display: block;
}

.contact-label {
  display: inline-block;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  padding: 2px 4px;
  margin-bottom: 10px;
  margin-right: 10px;
  vertical-align: middle;
  /* letter-spacing: 0.04em; */
  width: 75px;
}
.contact-btn.blue .contact-label {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

/* 플로팅 버튼 스타일은 default.css로 이동됨 */

/* 반응형 스타일 */
@media (max-width: 768px) {
    .container{
        padding-left:16px;
        padding-right:16px;
    }
    .main-visual {
        height: 600px;
        min-height: 180px;
    }
    .visual-content {
        padding: 210px 8px 0;
        text-align: center;
    }
    .logo-white {
        width: 48px;
        height: 36px;
        margin-bottom: 4px;
    }
    .visual-title {
        font-size: 22px;
        margin-bottom: 8px;
        line-height: 1.3;
        word-break: keep-all;
    }
    .visual-text {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
        word-break: keep-all;
    }
    .visual-buttons {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }
    .visual-buttons a {
        font-size: 13px;
        padding: 6px 0;
        width: 100px;
        border-radius: 5px;
    }
    .mobile-br { display: inline; }
    .product-line {
        padding: 50px 0 0 0;
        background: white;
        margin-bottom: 30px;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 6px;
    }
    .section-desc {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .btn-more-products {
        font-size: 15px;
        padding: 8px 12px;
        margin-bottom: 18px;
        border-radius: 6px;
    }
    .product-grid {
        flex-direction: column;
        gap: 12px;
    }
    .product-item {
        min-width: 100%;
        padding: 12px 0;
        border-radius: 10px;
    }
    .product-item img {
        width: 90vw;
        /* max-width: 220px; */
        height: 90px;
        margin-bottom: 8px;
    }
    .product-brand {
        font-size: 15px;
    }
    .product-brand.img1{
        width: 50%;
        height: 60px;
    }
    .company-intro.new-layout {
        padding: 30px 0 10px 0;
        background: #fff;
        padding: 50px 0 !important;
    }
    .company-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100vw;
        /* padding: 0 8px; */
    }
    .company-title-area {
        text-align: left;
        margin-bottom: 0;
    }
    .company-title-sub {
        font-size: 13px;
        margin-bottom: 6px;
        color: #888;
    }
    .company-title-main {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #222;
        line-height: 1.5;
        word-break: keep-all;
    }
    .company-image-area {
        margin: 0;
        padding: 0;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .company-image-area img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }
    .company-desc-card {
        font-size: 14px;
        padding: 34px 18px;
        margin-top: 20px;
        border-radius: 8px;
        /* box-shadow: 3px 13px 2px 3px #595959b5; */
        background: var(--background-light);
        color: #222;
        line-height: 2;
        word-break: keep-all;
        text-align: left;
    }
    .company-more-btn {
        width: 100%;
        height: 46px;
        font-size: 14px;
        border-radius: 6px;
        margin-top: 12px;
        background: var(--primary-color);
        color: #fff;
        text-align: center;
        line-height: 1;
        display: block;
        margin-left: auto;
        font-weight: 300;
        padding: 15px 0;
    }
    .company-contact-area {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    .contact-card {
        padding: 12px 8px;
        padding: 34px 18px;
        width: 100%;
        height: auto;
        font-size: 14px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 12px #0001;
        margin-bottom: 4px;
    }
    .contact-title {
        font-size: 20px;
        margin-bottom: 9px;
        color: #1a3881;
        font-weight: 700;
        text-align: left;
    }
    .contact-desc {
        font-size: 14px;
        margin-bottom: 14px;
        text-align: left;
        color: #888;
    }
    .contact-info {
        text-align: left;
        font-size: 16px;
        gap: 9px;
        color: #222;
    }

    .contact-info img{
        width: 20px;
        height: 20px;
    }

    .contact-btn {
        padding: 15px 8px;
        font-size: 14px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        text-decoration: none;
        box-shadow: 0 2px 12px #0001;
        font-weight: 700;
    }
    .contact-btn .btn-text {
        font-size: 20px;
        font-weight: 700;
        text-align: left;
        margin-top: 6px;
        line-height: 1.3;
    }
    .contact-btn .contact-icon {
        width: 60px;
        height: 60px;
        margin-left: 4px;
    }
    .contact-label {
        font-size: 14px;
        padding: 1px 2px;
        border-radius: 3px;
        margin-bottom: 2px;
        margin-right: 4px;
        width: 74px;
        border: 1.5px solid #fff;
        color: #fff;
        background: #1a3881;
        display: inline-block;
        text-align: center;
    }
    .contact-btn.blue {
        background: #1a3881;
        color: #fff;
        padding: 34px 18px;
        width: 100%;
    }
    .contact-btn.white {
        background: #fff;
        color: #1a3881;
        border: 1.5px solid #e6eaf2;
        padding: 34px 18px;
        width: 100%;
    }
    .contact-btn.red {
        background: #e6004c;
        color: #fff;
        padding: 34px 18px;
        width: 100%;
    }

    .contact-btn.blue .contact-label {
        background: #1a3881;
        color: #fff;
        border-color: #fff;
    }

    .contact-btn.red .contact-label {
        background: #e6004c;
        color: #fff;
        border-color: #fff;
    }

    .contact-btn.white .contact-label {
        background: #fff;
        color: #1a3881;
        border-color: #1a3881;
    }

    .notice-news {
        padding: 0px 0 10px 0;
        background: white;
    }
    .notice-list {
        padding: 0 5px;
    }
    .notice-item {
        padding: 7px 0;
        font-size: 13px;
    }
    .notice-item .category {
        width: auto;
        font-size: 12px;
        margin-right: 4px;
    }
    .notice-item .title {
        font-size: 13px;
        padding: 4px 0;
    }
    .notice-item .date {
        font-size: 11px;
        margin-right: 4px;
    }
    .notice-item .btn-more {
        width: 18px;
        height: 18px;
        font-size: 13px;
    }
    .product-slider-wrap {
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        padding: 18px 0 32px 0;
        /* margin: 0 8px; */
        position: relative;
    }
    .product-slider {
        display: flex;
        /* transition: transform 0.3s; */
        width: 100%;
        min-height: 340px;
        background: transparent;
    }
    .product-item {
        min-width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        background: transparent;
        box-shadow: none;
    }
    .product-img-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 180px;
    }
    .product-img-wrap img {
        width: 100%;
        /* max-width: 220px; */
        height: auto;
        object-fit: contain;
    }
    .product-brand-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 18px;
        height: 70px;
    }
    .product-brand {
        /* max-width: 160px; */
        height: auto;
    }
    .product-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        background: #fff;
        border: none;
        /* border-radius: 50%; */
        width: 15px;
        height: 31px;
        /* font-size: 28px; */
        /* color: #1a3881; */
        /* box-shadow: 0 2px 8px #0002; */
        cursor: pointer;
        /* opacity: 0.85; */
        /* transition: all 0.2s; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .product-arrow img {
        width: 18px;
        height: auto;
    }
    .product-arrow.prev {left: 15px;}
    .product-arrow.next {right: 15px;}
    /* .product-arrow:hover {
        background: #1a3881;
    } */
    .product-arrow:hover img {
        /* filter: brightness(0) invert(1); */
    }
    .product-grid { display: none !important; }
    /* Remove these styles as they are now in default.css */
    /* .btn-buy .icon-circle {
        background: var(--secondary-color);
    }
    .btn-buy .icon-circle img {
        filter: brightness(0) invert(1);
    } */
}

@media (min-width: 769px) {
    .mobile-br { display: none; }
}



@media (max-width: 768) {
    .product-grid {
        flex-direction: column;
        gap: 16px;
    }

    .contact-info img{
        width: 20px;
        height: 20px;
    }

    .btn-more-products {
        /* width: 100%; */
        text-align: center;
    }
}

.main-banner-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 12px;
    padding: 16px 36px;
    margin-top: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    text-decoration: none;
    letter-spacing: -0.5px;
    font: normal normal bold 20px/30px Pretendard;
}
.main-banner-btn:hover {
    background: #f2f2f2;
    color: #E50040;
}
.main-banner-btn .cart-icon {
    margin-left: 16px;
    vertical-align: middle;
    width: 23px;
    height: 24px;
}

.main-banner-btn:hover .cart-icon {
    filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7482%) hue-rotate(340deg) brightness(90%) contrast(118%);
}

@media (max-width: 768px) {
    .main-banner-btn {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 54%;
        border-radius: 10px;
        margin-top: 12px;
    }
    .main-banner-btn .cart-icon {
        font-size: 1.3rem;
        margin-left: 6px;
    }
}
