@charset "UTF-8";

:root {
    --max-container: 1400px;
    --navy: #051766;
    --navy-dark: #0c1e6a;
    --blue: #57bbeb;
    --text-dark: #212121;
    --text-muted: #556677;
    --text-light: #6a7f95;
    --text-light-2: #8899aa;
    --line: #dbe2e9;
    --line-2: #c4ccd4;
    --bg-soft: #eff2f5;
    --bg-muted: #a6b2bf;
    --danger: #da291c;
}
.wow.animate__fadeInLeft {
    --animate-translate-y: -16px;
    animation-duration: 0.8s !important;
}
  

@font-face {
    font-family: "HanjinGroupSans";
    font-weight: 300;
    font-style: normal;
    src:
      url("../assets/fonts/HanjinGroupSans-Light.otf") format("opentype"),
      url("../assets/fonts/HanjinGroupSans-Light.woff") format("woff"),
      url("../assets/fonts/HanjinGroupSans-Light.ttf") format("truetype"),
      url("../assets/fonts/HanjinGroupSans-Light.woff2") format("woff2");
  }
  
  @font-face {
    font-family: "HanjinGroupSans";
    font-weight: 400;
    font-style: normal;
    src:
      url("../assets/fonts/HanjinGroupSans-Regular.otf") format("opentype"),
      url("../assets/fonts/HanjinGroupSans-Regular.woff") format("woff"),
      url("../assets/fonts/HanjinGroupSans-Regular.ttf") format("truetype"),
      url("../assets/fonts/HanjinGroupSans-Regular.woff2") format("woff2");
  }
  
  @font-face {
    font-family: "HanjinGroupSans";
    font-weight: 700;
    font-style: normal;
    src:
      url("../assets/fonts/HanjinGroupSans-Bold.otf") format("opentype"),
      url("../assets/fonts/HanjinGroupSans-Bold.woff") format("woff"),
      url("../assets/fonts/HanjinGroupSans-Bold.ttf") format("truetype"),
      url("../assets/fonts/HanjinGroupSans-Bold.woff2") format("woff2");
  }

  * {
    box-sizing: border-box;
    word-break: keep-all;
  }
html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    font-family: "Pretendard", "HanjinGroupSans", "Apple SD Gothic Neo", sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}
i {
    display: flex;
}

/* common */
.container {
    width: var(--max-container);
    margin: 0 auto;
}
.m-br {
    display: none;
}



/* header */
.site-header {
    position: relative;
    z-index: 999;
}

.top-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #ffffff;
    font-family: "HanjinGroupSans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 12px;
    background: var(--navy);
}

.sub-header {
    height: 45px;
    border-bottom: 1px solid var(--line);
}

.sub-header-inner,
.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

.cate-wrap {
    overflow: hidden;
    visibility: hidden;
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 50%;
    top: 93px;
    z-index: 999999999;
    transform: translate(-50%, -10px);
    width: 1320px;
    padding: 40px 80px;
    border-radius: 20px;
    background-color: #fff;
    transition: opacity 0.25s ease,
                transform 0.25s ease,
                visibility 0.25s ease;
    opacity: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    pointer-events: none;
}
.cate-wrap.is-open {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
    pointer-events: auto;
}
.cate-nav-wrap {
    display: flex;
    gap: 0 139px;
}

.cate-nav-left {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}
.cate-nav-wrap a {
    display: inline-block;
    width: auto;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.4px;
    transition: all .3s;
}
.cate-nav-wrap a:hover {
    color: var(--blue);
}
.cate-nav-wrap a + a {
    margin-top: 20px;
}

.cate-right-box figure {
    margin-bottom: 30px;
}
.cate-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.cate-quick a {
    display: flex;
    justify-content: space-between;
    width: calc((100% - 20px) / 2);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    background-color: #eff2f5;
    transition: all .3s;
}  
.cate-quick a:hover {
    background-color: var(--blue);
    color: #ffffff;
}
.cate-quick a:hover img {
    filter: brightness(0) invert(1);
}

.sub-links-m-title {
    display: none;
}
.sub-links-wrap {
    position: relative;
}
.sub-links,
.sub-actions,
.sub-actions .my-info-wrap {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}
.sub-links a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-wrap {
    display: flex;
    gap: 12px;
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.m-lang-wrap {
    position: relative;
    cursor: pointer;
}
.lang-manu-wrap {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 20px;
    z-index: 99999999;
    transform: translateX(-50%);
    width: 150%;
}

.lang-manu-wrap.is-open {
    display: flex;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 6px;
}
.lang-manu-wrap.is-open span {
    display: block;
    text-align: center;
}
.lang-manu-wrap.is-open span + span {
    margin-top: 5px;
}
.lang-item i {
    transition: all .3s;
}
.lang-item.is-active i {
    transform: rotate(180deg);
}

.sub-actions .divider,
.footer-links .divider {
    width: 1px;
    background: var(--line-2);
    height: 14px;
    align-self: center;
}

.main-header {
    height: 90px;
}

.logo img {
    width: 200px;
    height: 45px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 80px;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "HanjinGroupSans", sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.main-nav a {
    transition: all .3s;
}
.main-nav a:hover {
    color: var(--blue);
}
.nav-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 33px 0;
    font-family: inherit;
    font-weight: 700;
    font-size: 20px;
    transition: all .3s;
}
.nav-category.is-active {
    color: var(--blue);
}
.nav-category.is-active .hamburger span {
    background: var(--blue);
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 28px;
    position: relative;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}
.hamburger span + span {
    margin-top: 6px;
}
.main-icons {
    display: flex;
    gap: 19px;
    align-items: center;
}

.icon-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    right: -2px;
    top: 3px;
    background: var(--blue);
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.home-bar {
    display: none;
}


/* 메인 비주얼얼 */

.hero {
    overflow: hidden;
    padding: 10px 0 45px;
}

.hero-banner {
    margin: 0 auto;
    overflow: visible;
    position: relative;
    width: 1720px;
    height: 600px;
}

.hero-slider {
    overflow: visible !important;
    width: var(--max-container);
    height: 600px;
}
.hero-slide.swiper-slide.swiper-slide-prev {
    transform: scale(0.7) translateX(300px);
}
.hero-slide.swiper-slide.swiper-slide-next {
    transform: scale(0.7) translateX(-300px);
}

.hero-slide {
    border-radius: 20px 80px 0px 80px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.hero-slider .swiper-wrapper {
    align-items: center;
}

.hero-slide.swiper-slide-active {
    transform: scale(1);
}

.hero-slide.swiper-slide-prev {
    transform: scale(0.7);
}

.hero-slide.swiper-slide-next {
    transform: scale(0.7);
}



.hero-content {
    position: absolute;
    top: 121px;
    left: 140px;
    width: 540px;
    font-family: "HanjinGroupSans", sans-serif;
}
.hero-content-white {
    color: #ffffff;
}

.hero-title {
    margin-bottom: 12px;
    font-size: 46px;
    line-height: 69px;
    font-weight: 700;
    letter-spacing: -0.92px;
}

.hero-subtitle {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.48px;
}

.hero-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}
.hero-link img {
    transform: translate(0, 2px);
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 50%;
    bottom: 30px;
    z-index: 4;
    transform: translateX(50%);
}

.hero-count {
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
}

.hero-count-divider {
    margin-left: 6px;
    opacity: 0.6;
}

.hero-pause {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.3);
}

.hero-pause::before,
.hero-pause::after {
    position: absolute;
    top: 9px;
    bottom: 9px;
    width: 3px;
    border-radius: 99px;
    background: #ffffff;
    content: "";
}

.hero-pause::before {
    left: 11px;
}

.hero-pause::after {
    right: 11px;
}

.hero-pause.is-paused::before {
    left: 12px;
    top: 8px;
    width: 0;
    height: 0;
    border-left: 10px solid #ffffff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-radius: 0;
    background: transparent;
}

.hero-pause.is-paused::after {
    content: none;
}

.hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 1000;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s ease;
}

.hero-arrow img {
    width: 30px;
    height: 30px;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.16);
}

.hero-arrow-left {
    left: 195px;
}

.hero-arrow-right {
    right: 195px;
}


@media screen and (max-width: 1720px) {
    .hero-banner {
        width: 100%;
    }
}

/* 섹션 공통통 */
.section-title {
    margin-bottom: 40px;
}
.section-title h2 {
    font-family: "HanjinGroupSans", sans-serif;
    color: var(--navy);
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-muted);
    font-size: 22px;
    line-height: 33px;
}



/* 추천 섹션 */

.recommend {
    padding: 60px 0 70px;
}

.tab-list {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tab {
    border-radius: 99px;
    padding: 6px 18px 9px 18px;
    font-size: 20px;
    font-weight: 700;
    font-family: "HanjinGroupSans", sans-serif;
    background: var(--bg-soft);
    color: var(--bg-muted);
    transition: all .3s;
}

.tab.active {
    background: var(--blue);
    color: #ffffff;
}

.tab:hover {
    background: var(--line);
    color: var(--text-muted);
}

.recommend-content {
    margin-top: 30px;
}

.recommend-slider {
    overflow: hidden;
}

.recommend-track {
    display: flex;
    transition: transform 0.5s ease;
}

.recommend-slide {
    margin-right: 20px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
    min-width: 100%;
}

.category-banner {
    height: 562px;
    border-radius: 20px 60px 0 60px;
    background: url("../assets/images/tab-img01.png") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.category-text {
    position: absolute;
    left: 40px;
    top: 40px;
    color: #ffffff;
    font-family: "HanjinGroupSans", sans-serif;
}

.category-text h3 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
}

.category-text p {
    font-size: 20px;
    line-height: 30px;
}

.product-grid {
    display: grid;
    gap: 40px;
}

.three-col {
    grid-template-columns: repeat(3, calc((100% - 60px) / 3));
    gap: 30px;
}

.four-col {
    grid-template-columns: repeat(4, calc((100% - 90px) / 4));
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product-card:hover .add-cart {
    opacity: 1;
}

.thumb {
    height: 320px;
    border-radius: 20px;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.recommend-content .product-grid.three-col .product-card:nth-child(1) .thumb {
    background-image: url("../assets/images/tab-img01.png");
    background-size: cover;
    background-position: center;
}

.recommend-content .product-grid.three-col .product-card:nth-child(2) .thumb {
    background-image: url("../assets/images/tab-img02.png");
    background-size: cover;
    background-position: center;
}

.recommend-content .product-grid.three-col .product-card:nth-child(3) .thumb {
    background-image: url("../assets/images/tab-img03.png");
    background-size: cover;
    background-position: center;
}

.thumb .rank {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--blue);
    color: #ffffff;
    font-weight: 700;
    font-family: "HanjinGroupSans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.add-cart {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    font-family: "HanjinGroupSans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transition: all .3s;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.rating-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
}

.product-info h4 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    color: var(--text-dark);
}

.price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price .origin {
    color: var(--text-light-2);
    font-size: 18px;
    text-decoration: line-through;
}

.price .sale {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    color: var(--text-dark);
}

.price .sale em {
    color: var(--danger);
    font-style: normal;
    font-weight: 700;
    margin-left: 6px;
    font-size: 18px;
}

.badge-row {
    display: flex;
    gap: 8px;
}

.badge {
    padding: 2px 8px 4px 8px;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 14px;
    border-radius: 8px;
    font-family: "HanjinGroupSans", sans-serif;
    font-weight: 400;
}

.badge.muted {
    border-color: var(--line);
    color: var(--text-light);
    background: var(--line);
}

.slider-indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.slider-indicator button,
.slider-indicator span {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    border-radius: 99px;
    background: var(--line-2);
    text-indent: -9999px;
}

.slider-indicator button.swiper-pagination-bullet-active,
.slider-indicator span.active {
    width: 30px;
    background: var(--navy);
}

.banner {
    position: relative;
    width: var(--max-container);
    height: 200px;
    margin: 80px auto 0;
    border-radius: 20px 60px 0 60px;
}

.banner-gift .banner-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 270px;
    background: url("../assets/images/banner2-img.png") center/cover no-repeat !important;
}
.banner-img-m {
    display: none;
}

.banner-mileage {
    display: flex;
    align-items: center;
    padding-left: 60px;
    height: 180px;
    background: url("../assets/images/banner2-bg.png") center/cover no-repeat;
}
.banner-mileage::after{ 
    content: "";
    position: absolute;
    top: -59px;
    right: 133px;
    width: 478px;
    height: 256px;
    background: url("../assets/images/banner-icon2.png") center/cover no-repeat;
}

.banner-gift .banner-text {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-right: 256px;
    font-family: "HanjinGroupSans", sans-serif;
}

.banner-text.right {
    right: 40px;
    text-align: right;
}

.banner-text.left {
    left: 60px;
}

.banner-text h3 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
}

.banner-text p {
    font-size: 20px;
    line-height: 30px;
}

.banner-gift h3 {
    color: var(--navy-dark);
}

.banner-gift p {
    color: #2e5094;
}

.banner-mileage h3 {
    color: #c01150;
}

.banner-mileage p {
    color: #bd3a67;
}

.best {
    padding: 80px 0;
}

.video-section {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "HanjinGroupSans", sans-serif;
    font-size: 50px;
    font-weight: 700;
    overflow: hidden;
}
.video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    pointer-events: none;
    border: 0;
}
.video-section p {
    position: relative;
    z-index: 1;
}
.video-section figure {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.md-pick {
    padding: 80px 0 60px;
}
.product-card.swiper-slide .thumb {
    margin-bottom: 10px;
}

.md-slider {
    margin-top: 30px;
}

.md-slider .swiper-wrapper {
    align-items: stretch;
}

.md-slider .swiper-slide {
    width: 320px;
}

.instagram {
    padding: 80px 0 70px;
}

.insta-grid {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(6, calc((100% - 50px) / 6));
    gap: 10px;
    margin-top: 40px;
    border-radius: 20px;
}

.insta-item {
    height: 281px;
    background: #cecece;
}

.site-footer {
    margin-top: 80px;
    background: var(--bg-soft);
}

.footer-links {
    height: 53px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
}

.footer-links .container {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.footer-main {
    padding: 30px 0 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    width: 160px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: grayscale(1);
}

.footer-info {
    color: var(--text-light);
    font-size: 14px;
    line-height: 21px;
}

.footer-info .company {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info .copyright {
    margin-top: 14px;
}

.footer-center {
    width: 172px;
    color: var(--text-light);
}

.center-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 4px;
}

.center-number {
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.center-hours {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}



@media screen and (max-width: 1500px) {
    .hero-arrow-right {
        right: 50px;
    }
    .hero-arrow-left {
        left: 50px;
    }
}
@media screen and (max-width: 1400px) {
    .container,
    .banner,
    .banner-gift img,
    .hero-slider {
        overflow: hidden !important;
        width: 100%;
        padding: 0 20px !important;
    }
    .banner {
        overflow: unset !important;
    }
    .banner-gift .banner-bg {
        background-position: left center !important;
    }

    .product-grid {
        gap: 20px;
    }
    .four-col {
        grid-template-columns: repeat(4, calc((100% - 60px) / 4));
    }

    .section-title h2 {
        font-size: 30px;
    }
    .section-title p {
        font-size: 20px;
    }

    .tab {
        font-size: 16px;
    }

    .recommend-slide {
        grid-template-columns: 320px 1fr;
    }
    .category-banner {
        height: 480px;
    }
    .category-text h3 {
        font-size: 30px;
    }
    .category-text p {
        font-size: 16px;
    }

    .banner-gift .banner-text {
        padding-right: 100px;
    }

    .recommend-slide {
        gap: 20px;
    }
    .three-col {
        grid-template-columns: repeat(3, calc((100% - 40px) / 3));
        gap: 20px;
    }

    .banner-mileage {
        background-image: none;
    }
    .banner-mileage .banner-text {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: 100%;
        height: 180px;
        padding-left: 60px;
        border-radius: 20px 60px 0 60px;
        background-color: #fedce4;
    }

}

@media screen and (max-width: 1280px) {

    .hero-title {
        margin-bottom: 20px;
        font-size: 35px;
        line-height: 150%;
    }
    .hero-subtitle {
        font-size: 20px;
    }


    .product-info h4 {
        font-size: 16px;
    }
    .price .origin {
        font-size: 14px;
    }
    .price .sale {
        font-size: 22px;
    }

    .banner-mileage::after {
        top: 7px;
        right: 50px;
        width: 300px;
        height: 163px;
    }
}

@media screen and (max-width: 1080px) {

    .main-nav {
        gap: 30px;
        font-size: 18px;
    }
    .nav-category {
        font-size: 18px;
    }
    .main-icons {
        gap: 10px;
    }
    .logo img {
        width: 140px;
    }


    .hero-slide.swiper-slide.swiper-slide-prev {
        transform: translateX(0px);
    }
    .hero-slide.swiper-slide.swiper-slide-next {
        transform: translateX(0px);
    }

    .recommend-slider .product-card:last-child {
        display: none;
    }

    .three-col {
        grid-template-columns: repeat(2, calc((100% - 20px) / 2));
        gap: 20px;
    }

    .banner-text h3 {
        font-size: 25px;
    }
    .banner-text p {
        font-size: 16px;
    }
    .banner-text h3 {
        font-size: 25px;
        line-height: 140%;
    }
    
    .four-col {
        grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    }

    .container.footer-inner {
        flex-direction: column;
    }
}

@media screen and (max-width: 880px) {

    .m-br {
        display: block;
    }

    .main-nav {
        gap: 20px;
        font-size: 16px;
    }
    .nav-category {
        font-size: 16px;
    }

    .recommend-slide {
        grid-template-columns: unset;
    }
    .category-banner {
        height: 180px;
    }
    .three-col {
        grid-template-columns: repeat(3, calc((100% - 40px) / 3));
        gap: 20px;
    }
    .recommend-slider .product-card:last-child {
        display: block;
    }

    .four-col {
        grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    }

    .insta-grid {
        grid-template-columns: repeat(4, calc((100% - 30px) / 4));
    }
}

@media screen and (max-width: 768px) {

    .main-nav, .main-icons {
        display: none;
    }
    .home-bar {
        display: block;
    }
    .home-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999999999;
        width: 100%;
        padding: 14px 30px;
        border-radius: 16px 16px 0 0;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .home-bar .container {
        display: flex;
        justify-content: space-between;
        padding: 0 !important;
    }

    .sub-header-inner, .main-header-inner {
        overflow: visible !important;
    }
    .sub-header-inner {
        justify-content: flex-end;
        gap: 20px;
    }
    .sub-links {
        flex-direction: column;
        position: absolute;
        z-index: 999999999999;
        width: 100%;
        background-color: #fff;
        display: none;
    }
    .sub-links.is-open {
        display: flex;
        gap: 8px;
        top: 23px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
        width: 150%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }
    .sub-links-m-title img {
        transition: all .3s;
    }
    .sub-links-m-title.is-active img {
        transform: rotate(180deg);
    }
    .sub-links-m-title {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 14px;
        font-weight: 500;
        line-height: 150%;
        color: var(--text-light);
    }
    .divider,
    .sub-actions .my-info-wrap {
        display: none;
    }

    .hero-banner {
        overflow: hidden !important;
    }
    .hero-slide-1 {
        background-image: url("../assets/images/main-banner01-m.png") !important;
    }
    .hero-slide-2 {
        background-image: url("../assets/images/main-banner02-m.png") !important;
    }
    .hero-slide-3 {
        background-image: url("../assets/images/main-banner03-m.png") !important;
    }
    .hero-slide-4 {
        background-image: url("../assets/images/main-banner01-m.png") !important;
    }
    .hero-slide-5 {
        background-image: url("../assets/images/main-banner02-m.png") !important;
    }
    .hero-slide-6 {
        background-image: url("../assets/images/main-banner03-m.png") !important;
    }

    .hero-content {
        left: 24px;
        top: 24px;
    }
    .hero-title {
        margin-bottom: 10px;
        font-size: 24px;
    }
    .hero-subtitle {
        margin-bottom: 18px;
        font-size: 16px;
    }
    .hero-controls {
        right: 40px;
        transform: translateX(0);
    }
    .hero-arrow {
        display: none;
    }

    .section-title h2 {
        font-size: 25px;
    }
    .section-title p {
        font-size: 16px;
    }
    
    .three-col {
        grid-template-columns: repeat(2, calc((100% - 20px) / 2));
        gap: 20px;
    }
    .recommend-slider .product-card:last-child {
        display: none;
    }

    .banner {
        height: auto !important;
        margin: 0 auto !important;
        padding: 0px !important;
        background: none !important;
    }
    .banner-bg {
        display: none;
    }
    .banner-gift .banner-text {
        align-items: center;
        padding-right: 0;
        padding: 0 20px;
    }
    .banner-img-m {
        width: 100%;
        display: block;
    }
    .banner-text.right {
        display: none;
    }
    .banner-text.left {
        display: none;
    }
    .banner-mileage::after {
        display: none;
    }
    .banner.banner-mileage {
        padding: 0 20px !important;
    }

    .tab-list {
        overflow-x: scroll;
        flex-wrap: nowrap;
        gap: 10px;
    }
    .tab-list button {
        white-space: nowrap;
        padding: 4px 15px 7px 15px;
        font-size: 14px;
    }

    .video-section p {
        font-size: 24px;
    }

    .insta-grid {
        grid-template-columns: repeat(3, calc((100% - 20px) / 3));
    }
}

@media screen and (max-width: 500px) {


    .thumb {
        height: 170px;
    }
    .badge {
        font-size: 13px;
    }
    .rating {
        margin-bottom: 10px;
        font-size: 15px;
    }
    .rating img {
        width: 13px;
    }
    .product-info h4 {
        font-size: 15px;
        line-height: 130%;
    }

    .insta-grid {
        grid-template-columns: repeat(2, calc((100% - 10px) / 2));
    }
}