/* ===========================
   BLOG GRID
=========================== */

.blog-items{
    width:100%;
}

.blog-list{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
    gap:32px;
    margin:0;
    padding:0;
    list-style:none;
}

/* ===========================
   CARD
=========================== */

.blog-list li{
    position:relative;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border-radius:18px;
    background:#ffffff;
    border:1px solid #eceff5;
    transition:all .35s cubic-bezier(.22,.61,.36,1);
}

.blog-list li:hover{
    transform:translateY(-8px);
    border-color:#d9e3ff;
    box-shadow:
        0 12px 30px rgba(0,0,0,.05),
        0 25px 60px rgba(17,42,188,.08);
}

/* ===========================
   IMAGE
=========================== */

.item-post-img{
    position:relative;
    overflow:hidden;
    background:#f7f8fb;
}

.item-post-img img{
    width:100%;
    display:block;
    aspect-ratio:3/2;
    object-fit:cover;
    transition:filter .35s ease;
}

.blog-list li:hover .item-post-img img{
    filter:brightness(1.05) contrast(1.03) saturate(1.05);
}

/* Overlay */

.item-post-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(17,42,188,0),
        rgba(17,42,188,.08)
    );
    opacity:0;
    transition:.35s;
    pointer-events:none;
}

.blog-list li:hover .item-post-img::after{
    opacity:1;
}

/* Light Sweep */

.item-post-img::before{
    content:"";
    position:absolute;
    top:0;
    left:-180%;
    width:55%;
    height:100%;
    background:linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transform:skewX(-25deg);
    transition:.9s;
    z-index:2;
}

.blog-list li:hover .item-post-img::before{
    left:180%;
}

/* ===========================
   CONTENT
=========================== */

.post-info{
    padding:22px 24px 0;
}

.post-date{
    margin:0;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    color:#6b7280;
    font-size:13px;
    line-height:1.6;
}

/* ===========================
   CATEGORY
=========================== */

.post-date span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 14px;
    background:#eef3ff;
    color:#112abc;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    transition:.3s;
}

.blog-list li:hover .post-date span{
    background:#112abc;
    color:#ffffff;
}

/* ===========================
   TITLE
=========================== */

.post-title{
    margin:18px 24px 24px;
    font-size:23px;
    font-weight:700;
    line-height:1.45;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.post-title a{
    position:relative;
    color:#101828;
    text-decoration:none;
    transition:.3s;
}

.post-title a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#112abc;
    transition:.35s;
}

.blog-list li:hover .post-title a{
    color:#112abc;
}

.blog-list li:hover .post-title a::after{
    width:100%;
}

/* ===========================
   TOP BAR
=========================== */

.blog-list li::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:3px;
    background:#112abc;
    transition:.35s;
    z-index:5;
}

.blog-list li:hover::before{
    width:100%;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:991px){

.blog-list{
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.post-title{
    font-size:20px;
}

}

@media (max-width:768px){

.blog-list{
    grid-template-columns:1fr;
}

.post-info{
    padding:18px 20px 0;
}

.post-title{
    margin:16px 20px 22px;
    font-size:18px;
}

}
/* ============================================
   PRODUCT ITEM / LISTING
   ============================================ */
.l-product_item {
  width: 33.6rem;
  max-width: calc(33.333% - 1.8rem);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.l-product_item .wrap {
  position: relative;
  overflow: hidden;
}

.l-product_item .item_image {
  width: 100%;
  padding-top: 100%;
  height: 0;
  position: relative;
}

.l-product_item .item_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .l-product_item .item_image:hover + .image_small {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.l-product_item .image_small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 11;
  border: 0.1rem solid #1c274c;
}

.l-product_item .image_small:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-product_item .image_small img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.l-product_item .item_detail {
  padding: 2.3rem 0 0;
}

.l-product_item .detail_type {
  color: #4b5390;
  font-size: 1.2rem;
}

.l-product_item .detail_title {
  color: #0d0f3b;
  font-size: 1.6rem;
  margin: 0.7rem 0 1.3rem;
}

.l-product_item .review_star {
  gap: 0.2rem;
  margin-bottom: 1.7rem;
}

.l-product_item .review_star li {
  width: 1.4rem;
  height: 1.4rem;
}

.l-product_item .detail_price {
  color: #1c274c;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.l-product_item .detail_btn,
.l-product_item .view_btn {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  border: 0.15rem solid #1c224d;
  background-color: #1c224d;
  color: #fff;
  width: 100%;
  height: 4.3rem;
  justify-content: center;
  transition: all 0.3s ease;
  padding-right: 0.2rem;
}

.l-product_item .detail_btn:hover,
.l-product_item .view_btn:hover {
  background-color: #fff;
  color: #1c224d;
}

.l-product_item .detail_btn:hover svg path,
.l-product_item .view_btn:hover svg path {
  stroke: #1c224d;
}

.l-product_item .detail_btn svg,
.l-product_item .view_btn svg {
  margin-right: 0.7rem;
}

.l-product_item .detail_btn svg path,
.l-product_item .view_btn svg path {
  transition: all 0.3s ease;
}

.l-product_item .view_btn {
  max-width: calc(100% - 1.6rem);
  position: absolute;
  bottom: 1rem;
  margin: 0 0.8rem;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .l-product_item {
    max-width: calc(50% - 0.5rem);
    margin-bottom: 2rem;
  }

  .l-product_item .item_detail {
    padding: 1rem 0;
  }

  .l-product_item .detail_type {
    font-size: 1rem;
  }

  .l-product_item .detail_title {
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
  }

  .l-product_item .review_star {
    margin-bottom: 1rem;
  }

  .l-product_item .detail_price {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .l-product_item .detail_btn {
    height: 4rem;
    font-size: 1.2rem;
    padding-right: 2rem;
  }

  .l-product_item .detail_btn svg {
    max-width: 1.4rem;
    position: relative;
    top: -0.1rem;
  }
}

.l-product_item.is-seller,
.l-product_item.is-collection {
  width: calc(25% - 1.8rem);
}

.l-product_item.is-seller .detail_title,
.l-product_item.is-collection .detail_title {
  color: #1c224d;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 0.7rem;
}

.l-product_item.is-seller .detail_text,
.l-product_item.is-collection .detail_text {
  color: #0d0f3b;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0.2rem 0 2.9rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.l-product_item.is-seller .detail_footer,
.l-product_item.is-collection .detail_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.l-product_item.is-seller .detail_footer .detail_btn,
.l-product_item.is-collection .detail_footer .detail_btn {
  display: inline-flex;
  width: 18.6rem;
}

.l-product_item.is-seller .detail_footer .more_btn,
.l-product_item.is-collection .detail_footer .more_btn {
  min-height: 4.3rem;
}

.l-product_item.is-seller .detail_btn,
.l-product_item.is-collection .detail_btn {
  min-width: 18.6rem;
}

.l-product_item.is-seller .more_btn,
.l-product_item.is-collection .more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 14.6rem;
  text-decoration: underline;
  border: none;
  color: #0d0f3b;
  font-size: 1.6rem;
}

.l-product_item.is-seller .more_btn:hover,
.l-product_item.is-collection .more_btn:hover {
  text-decoration: none;
}

.l-product_item.is-seller .item_image,
.l-product_item.is-collection .item_image {
  pointer-events: none;
}

.l-product_item.is-seller .detail_other,
.l-product_item.is-collection .detail_other {
  color: #1c224d;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: normal;
  opacity: 0.5;
  letter-spacing: -0.1rem;
  margin-bottom: 1.4rem;
}

.l-product_item.is-collection .detail_text {
  margin-bottom: 1.2rem;
}

.l-product_item.is-collection .more_btn {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .l-product_item.is-seller,
  .l-product_item.is-collection {
    width: calc(50% - 0.5rem);
  }

  .l-product_item.is-seller .detail_title,
  .l-product_item.is-collection .detail_title {
    font-size: 1.6rem;
  }

  .l-product_item.is-seller .detail_text,
  .l-product_item.is-collection .detail_text {
    font-size: 1.2rem;
  }

  .l-product_item.is-seller .detail_footer,
  .l-product_item.is-collection .detail_footer {
    display: block;
    text-align: center;
  }

  .l-product_item.is-seller .detail_footer .detail_btn,
  .l-product_item.is-collection .detail_footer .detail_btn {
    margin: 0 auto;
  }

  .l-product_item.is-seller .more_btn,
  .l-product_item.is-collection .more_btn {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  .l-product_item.is-seller .detail_other,
  .l-product_item.is-collection .detail_other {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}


.contact-map .contact-form {
    background: #ffffff;
    border: 1px solid #e6e8ef;
    box-shadow: 0 18px 50px rgba(10, 18, 40, 0.06);
    padding: 32px;
}

.contact-map .contact-form .form-title {
    margin: 0 0 22px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1c224d;
}

.contact-map .contact-form .box-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.contact-map .contact-form .form-row {
    width: 100%;
    margin: 0;
}

.contact-map .contact-form .from-row-full,
.contact-map .contact-form .form-row.from-row-full {
    width: 100%;
    margin-bottom: 18px;
}

.contact-map .contact-form .form-item,
.contact-map .contact-form .form-input-wrapper,
.contact-map .contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-map .contact-form .form-input,
.contact-map .contact-form input[type="text"],
.contact-map .contact-form input[type="email"],
.contact-map .contact-form input[type="tel"],
.contact-map .contact-form select,
.contact-map .contact-form textarea {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border: 1px solid #dfe3ee;
    border-radius: 18px;
    background: #f8f9fd;
    color: #1b1f2f;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
    box-shadow: none;
    transition: all 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-map .contact-form textarea,
.contact-map .contact-form .is-textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 16px;
}

.contact-map .contact-form select {
    cursor: pointer;
    padding-right: 44px;
    background-image: linear-gradient(45deg, transparent 50%, #1c224d 50%),
                      linear-gradient(135deg, #1c224d 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px),
                         calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-map .contact-form .form-input::placeholder,
.contact-map .contact-form input::placeholder,
.contact-map .contact-form textarea::placeholder {
    color: #7a8297;
    opacity: 1;
}

.contact-map .contact-form .form-input:focus,
.contact-map .contact-form input[type="text"]:focus,
.contact-map .contact-form input[type="email"]:focus,
.contact-map .contact-form input[type="tel"]:focus,
.contact-map .contact-form select:focus,
.contact-map .contact-form textarea:focus {
    border-color: rgba(28, 34, 77, 0.28);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(28, 34, 77, 0.08);
}

.contact-map .contact-form .primary-btn.is-submit {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 4px;
}

.contact-map .contact-form .primary-btn.is-submit button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 54px;
    padding: 14px 26px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1c224d 0%, #151a3a 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(28, 34, 77, 0.22);
    transition: all 0.25s ease;
}

.contact-map .contact-form .primary-btn.is-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(28, 34, 77, 0.26);
}

.contact-map .contact-form .primary-btn.is-submit button:focus-visible {
    outline: 2px solid #1c224d;
    outline-offset: 3px;
}

.contact-map .contact-form .input-hiden {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.contact-map .contact-form .wpcf7-spinner {
    margin-left: 10px;
}

.contact-map .contact-form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-map .contact-form .wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid rgba(20, 110, 70, 0.18);
    background: #eefaf4;
    color: #146e46;
}

.contact-map .contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-map .contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-map .contact-form .wpcf7 form.failed .wpcf7-response-output {
    border: 1px solid rgba(186, 54, 54, 0.18);
    background: #fff3f3;
    color: #a12b2b;
}

.contact-map .contact-form .wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #b42318;
    font-size: 13px;
    line-height: 1.45;
}

.contact-map .contact-form .wpcf7 form .wpcf7-not-valid {
    border-color: rgba(180, 35, 24, 0.3);
    background: #fffafa;
}

.contact-map .contact-form .screen-reader-response {
    display: none;
}

.contact-map .contact-form:hover {
    box-shadow: 0 24px 60px rgba(10, 18, 40, 0.1);
    transition: all 0.25s ease;
}


.factory-tour-section {
    padding: 70px 15px;
    background: #fff;
    font-family: inherit;
}

.factory-tour-container {
    margin: 0 auto;
    text-align: center;
}

.factory-tour-title {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #1c224d;
    font-family: "Vogue", sans-serif;
}

.factory-tour-title span,
.factory-tour-title strong {
    color: #ffc300;
}

.factory-tour-description {
    max-width: 780px;
    margin: 0 auto 38px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.factory-tour-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.factory-tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(215, 47, 101, 0.12);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.factory-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(215, 47, 101, 0.18);
    border-color: rgba(215, 47, 101, 0.35);
}

.factory-tour-video-btn {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    padding: 0;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    background: #f7f7f7;
}

.factory-tour-video-btn img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.factory-tour-card:hover .factory-tour-video-btn img {
    transform: scale(1.06);
}

.factory-tour-video-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18),
        rgba(0, 0, 0, 0.02) 45%,
        rgba(0, 0, 0, 0.22)
    );
    pointer-events: none;
}

.factory-tour-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 74px;
    height: 54px;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #e33668, #b91646);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(215, 47, 101, 0.45);
    transition: transform 0.3s ease;
}

.factory-tour-card:hover .factory-tour-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.factory-tour-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}


/* =========================================================
   FACTORY TOUR MODAL
   Cần dùng nếu HTML/JS của bạn có popup video:
   #factoryTourModal
   #factoryTourIframe
   ========================================================= */

.factory-tour-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.factory-tour-modal.active {
    display: flex;
}

.factory-tour-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(3px);
}

.factory-tour-modal-content {
    position: relative;
    z-index: 2;
    width: 420px;
    max-width: 92vw;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.factory-tour-modal-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.factory-tour-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 28px;
    line-height: 38px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
    .factory-tour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .factory-tour-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .factory-tour-section {
        padding: 50px 0 55px;
        overflow: hidden;
    }

    .factory-tour-title {
        padding: 0 15px;
        font-size: 32px;
    }

    .factory-tour-description {
        padding: 0 15px;
        margin-bottom: 26px;
        font-size: 15px;
    }

    .factory-tour-grid {
        display: flex !important;
        overflow-x: auto !important;
        gap: 16px;
        padding: 0 15px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: thin;
        scrollbar-color: #d72f65 #f4e8ed;
    }

    .factory-tour-card {
        flex: 0 0 76% !important;
        max-width: 76%;
        scroll-snap-align: start;
        border-radius: 14px;
    }

    .factory-tour-grid::-webkit-scrollbar {
        height: 6px;
    }

    .factory-tour-grid::-webkit-scrollbar-track {
        background: #f4e8ed;
        border-radius: 20px;
        margin: 0 15px;
    }

    .factory-tour-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #e33668, #b91646);
        border-radius: 20px;
    }

    .factory-tour-modal-content {
        width: 360px;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .factory-tour-card {
        flex-basis: 82% !important;
        max-width: 82%;
    }

    .factory-tour-title {
        font-size: 28px;
    }

    .factory-tour-play {
        width: 62px;
        height: 46px;
        border-radius: 15px;
    }

    .factory-tour-play::before {
        border-left-width: 18px;
        border-top-width: 11px;
        border-bottom-width: 11px;
    }
}


/* =========================================================
   GREAT HAIR ABOUT SECTION
========================================================= */

.gh-home-about {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 195, 0, 0.14), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(18, 42, 186, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f7fb 100%);
}

.gh-home-about__wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.gh-home-about__content {
  max-width: 670px;
}

.gh-home-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(18, 42, 186, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #122aba;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gh-home-about__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffc300;
  box-shadow: 0 0 0 6px rgba(255, 195, 0, 0.18);
}

.gh-home-about__title {
  margin: 0;
  color: #070f3d;
  font-family: Vogue, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.gh-home-about__desc {
  margin-top: 22px;
  color: #5c6475;
  font-size: 17px;
  line-height: 1.75;
}

.gh-home-about__desc p {
  margin: 0 0 14px;
}

.gh-home-about__desc p:last-child {
  margin-bottom: 0;
}

.gh-home-about__desc strong {
  color: #070f3d;
}

.gh-home-about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 34px;
}

.gh-home-about__stat {
  padding: 18px 16px;
  border: 1px solid rgba(18, 42, 186, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(7, 15, 61, 0.06);
}

.gh-home-about__stat strong {
  display: block;
  color: #070f3d;
  font-size: 25px;
  line-height: 1;
  margin-bottom: 8px;
}

.gh-home-about__stat span {
  display: block;
  color: #5c6475;
  font-size: 13px;
  line-height: 1.35;
}

.gh-home-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gh-home-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #122aba;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
}

.gh-home-about__btn:hover {
  transform: translateY(-2px);
  background: #070f3d;
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(18, 42, 186, 0.28);
}

.gh-home-about__media {
  position: relative;
}

.gh-home-about__image-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(7, 15, 61, 0.14);
  isolation: isolate;
}

.gh-home-about__thumb {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.gh-home-about__image-card:hover .gh-home-about__thumb {
  transform: scale(1.05);
}

.gh-home-about__image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 15, 61, 0.04) 0%, rgba(7, 15, 61, 0.44) 100%);
  pointer-events: none;
}

.gh-home-about__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.25s ease;
}

.gh-home-about__play::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 23px solid #122aba;
}

.gh-home-about__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.gh-home-about__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 340px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(7, 15, 61, 0.16);
}

.gh-home-about__badge strong {
  display: block;
  color: #070f3d;
  font-size: 18px;
  margin-bottom: 6px;
}

.gh-home-about__badge span {
  display: block;
  color: #5c6475;
  font-size: 14px;
  line-height: 1.45;
}

.gh-home-about__floating {
  position: absolute;
  right: -22px;
  top: 34px;
  z-index: 4;
  width: 190px;
  padding: 18px;
  border-radius: 22px;
  background: #070f3d;
  color: #ffffff;
  box-shadow: 0 22px 56px rgba(7, 15, 61, 0.24);
}

.gh-home-about__floating small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gh-home-about__floating strong {
  display: block;
  color: #ffc300;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.gh-home-about__floating span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.42;
}

.gh-about-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.gh-about-modal.active {
  display: flex;
}

.gh-about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 61, 0.78);
}

.gh-about-modal__content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.gh-about-modal__content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gh-about-modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #070f3d;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .gh-home-about__wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gh-home-about__content {
    max-width: 840px;
  }

  .gh-home-about__floating {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .gh-home-about {
    padding: 58px 0;
  }

  .gh-home-about__title {
    font-size: 36px;
  }

  .gh-home-about__desc {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .gh-home-about__stats {
    grid-template-columns: 1fr;
  }

  .gh-home-about__btn {
    width: 100%;
  }

  .gh-home-about__image-card,
  .gh-home-about__thumb {
    min-height: 360px;
  }

  .gh-home-about__floating {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 16px;
  }

  .gh-home-about__badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .gh-home-about__play {
    width: 68px;
    height: 68px;
  }

  .gh-home-about__play::before {/* ======================================
   GREAT HAIR COLLECTION SECTION
   PC vertical tabs | Mobile horizontal tabs
   ====================================== */

.gh-method-collection {
    --gh-primary: #122aba;
    --gh-secondary: #ffc300;
    --gh-dark: #111111;
    --gh-text: #222222;
    --gh-muted: #8b8b8b;
    --gh-border: #dedede;
    --gh-bg: #ffffff;

    width: 100%;
    max-width: 100%;
    padding: 90px 0;
    background: var(--gh-bg);
    overflow: hidden;
}

.gh-method-collection,
.gh-method-collection * {
    box-sizing: border-box;
}

.gh-method-collection .wrapper {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.gh-method-collection__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 90px;
    width: 100%;
    max-width: 100%;
}

.gh-method-collection__media,
.gh-method-collection__content,
.gh-method-collection__body,
.gh-method-collection__detail {
    min-width: 0;
    max-width: 100%;
}

/* Image */
.gh-method-collection__media {
    width: 100%;
}

.gh-method-collection__image-link {
    display: block;
    width: 100%;
    height: 620px;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f4f4;
}

.gh-method-collection__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: opacity .55s ease, transform .7s ease, filter .55s ease;
}

.gh-method-collection__image-link.is-changing img {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(8px);
}

/* Heading */
.gh-method-collection__eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gh-primary);
}

.gh-method-collection__heading {
    margin: 0 0 46px;
    font-family: "Vogue",sans-serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--gh-dark);
}

/* Body */
.gh-method-collection__body {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: flex-start;
    gap: 58px;
}

/* Desktop tabs */
.gh-method-collection__tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    border-left: 2px solid var(--gh-border);
    overflow: visible;
}

.gh-method-collection__tab {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 27px 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--gh-muted);
    text-transform: uppercase;
    white-space: normal;
    cursor: pointer;
    transition: color .25s ease, transform .25s ease;
}

.gh-method-collection__tab::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 28px;
    background: transparent;
    transition: background .25s ease, height .25s ease;
}

.gh-method-collection__tab:hover {
    color: var(--gh-primary);
    transform: translateX(3px);
}

.gh-method-collection__tab.is-active {
    color: var(--gh-dark);
}

.gh-method-collection__tab.is-active::before {
    height: 34px;
    background: var(--gh-primary);
}

/* Detail */
.gh-method-collection__detail {
    max-width: 520px;
    transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}

.gh-method-collection__detail.is-changing {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
}

.gh-method-collection__detail h3 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 400;
    color: var(--gh-dark);
}

.gh-method-collection__detail p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gh-text);
}

.gh-method-collection__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border: 1px solid var(--gh-primary);
    border-radius: 999px;
    background: var(--gh-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.gh-method-collection__button:hover {
    background: var(--gh-secondary);
    border-color: var(--gh-secondary);
    color: var(--gh-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(18, 42, 186, .18);
}

/* Force PC layout if old mobile CSS is still cached */
@media (min-width: 768px) {
    .gh-method-collection__inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) !important;
    }

    .gh-method-collection__body {
        display: grid !important;
        grid-template-columns: 230px minmax(0, 1fr) !important;
    }

    .gh-method-collection__tabs {
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        border-left: 2px solid var(--gh-border) !important;
    }

    .gh-method-collection__tab {
        flex: unset !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--gh-muted);
        white-space: normal !important;
    }

    .gh-method-collection__tab.is-active {
        color: var(--gh-dark) !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .gh-method-collection {
        padding: 70px 0;
    }

    .gh-method-collection__inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .gh-method-collection__image-link {
        height: 560px;
    }

    .gh-method-collection__content {
        max-width: 820px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .gh-method-collection {
        padding: 46px 0;
    }

    .gh-method-collection .wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
    }

    .gh-method-collection__inner {
        display: block !important;
        width: 100%;
        max-width: 100%;
    }

    .gh-method-collection__media {
        width: 100%;
        margin-bottom: 28px;
    }

    .gh-method-collection__image-link {
        width: 100%;
        height: auto !important;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }

    .gh-method-collection__image-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gh-method-collection__content {
        width: 100%;
        max-width: 100%;
    }

    .gh-method-collection__eyebrow {
        margin-bottom: 10px;
        font-size: 11px;
        line-height: 1.4;
    }

    .gh-method-collection__heading {
        margin-bottom: 22px;
        font-size: 31px;
        line-height: 1.1;
    }

    .gh-method-collection__body {
        display: block !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .gh-method-collection__tabs {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 26px;
        padding: 0 0 12px;
        border-left: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
    }

    .gh-method-collection__tabs::-webkit-scrollbar {
        display: none;
    }

    .gh-method-collection__tab {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: max-content !important;
        max-width: none !important;
        padding: 12px 18px !important;
        border: 1px solid #dddddd !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: #666666 !important;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap !important;
        text-align: center;
    }

    .gh-method-collection__tab::before {
        display: none !important;
    }

    .gh-method-collection__tab:hover {
        transform: none;
    }

    .gh-method-collection__tab.is-active {
        background: var(--gh-primary) !important;
        border-color: var(--gh-primary) !important;
        color: #ffffff !important;
    }

    .gh-method-collection__detail {
        width: 100%;
        max-width: 100%;
    }

    .gh-method-collection__detail h3 {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.16;
    }

    .gh-method-collection__detail p {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 420px) {
    .gh-method-collection .wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }

    .gh-method-collection__heading {
        font-size: 28px;
    }

    .gh-method-collection__detail h3 {
        font-size: 26px;
    }

    .gh-method-collection__tab {
        padding: 11px 15px !important;
        font-size: 10.5px;
    }
}
    left: 28px;
    top: 21px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 19px;
  }
}
/* ======================================
   GREAT HAIR COLLECTION SECTION
   PC vertical tabs | Mobile horizontal tabs
   ====================================== */

.gh-method-collection {
    --gh-primary: #122aba;
    --gh-secondary: #ffc300;
    --gh-dark: #111111;
    --gh-text: #222222;
    --gh-muted: #8b8b8b;
    --gh-border: #dedede;
    --gh-bg: #ffffff;

    width: 100%;
    max-width: 100%;
    padding: 90px 0;
    background: var(--gh-bg);
    overflow: hidden;
}

.gh-method-collection,
.gh-method-collection * {
    box-sizing: border-box;
}

.gh-method-collection .wrapper {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.gh-method-collection__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 90px;
    width: 100%;
    max-width: 100%;
}

.gh-method-collection__media,
.gh-method-collection__content,
.gh-method-collection__body,
.gh-method-collection__detail {
    min-width: 0;
    max-width: 100%;
}

/* Image */
.gh-method-collection__media {
    width: 100%;
}

.gh-method-collection__image-link {
    display: block;
    width: 100%;
    height: 620px;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f4f4;
}

.gh-method-collection__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: opacity .55s ease, transform .7s ease, filter .55s ease;
}

.gh-method-collection__image-link.is-changing img {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(8px);
}

/* Heading */
.gh-method-collection__eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gh-primary);
}

.gh-method-collection__heading {
    margin: 0 0 46px;
    font-family: "Vogue",sans-serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--gh-dark);
}

/* Body */
.gh-method-collection__body {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: flex-start;
    gap: 58px;
}

/* Desktop tabs */
.gh-method-collection__tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    border-left: 2px solid var(--gh-border);
    overflow: visible;
}

.gh-method-collection__tab {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 27px 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--gh-muted);
    text-transform: uppercase;
    white-space: normal;
    cursor: pointer;
    transition: color .25s ease, transform .25s ease;
}

.gh-method-collection__tab::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 28px;
    background: transparent;
    transition: background .25s ease, height .25s ease;
}

.gh-method-collection__tab:hover {
    color: var(--gh-primary);
    transform: translateX(3px);
}

.gh-method-collection__tab.is-active {
    color: var(--gh-dark);
}

.gh-method-collection__tab.is-active::before {
    height: 34px;
    background: var(--gh-primary);
}

/* Detail */
.gh-method-collection__detail {
    max-width: 520px;
    transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}

.gh-method-collection__detail.is-changing {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
}

.gh-method-collection__detail h3 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 400;
    color: var(--gh-dark);
}

.gh-method-collection__detail p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gh-text);
}

.gh-method-collection__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border: 1px solid var(--gh-primary);
    border-radius: 999px;
    background: var(--gh-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.gh-method-collection__button:hover {
    background: var(--gh-secondary);
    border-color: var(--gh-secondary);
    color: var(--gh-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(18, 42, 186, .18);
}

/* Force PC layout if old mobile CSS is still cached */
@media (min-width: 768px) {
    .gh-method-collection__inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) !important;
    }

    .gh-method-collection__body {
        display: grid !important;
        grid-template-columns: 230px minmax(0, 1fr) !important;
    }

    .gh-method-collection__tabs {
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        border-left: 2px solid var(--gh-border) !important;
    }

    .gh-method-collection__tab {
        flex: unset !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--gh-muted);
        white-space: normal !important;
    }

    .gh-method-collection__tab.is-active {
        color: var(--gh-dark) !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .gh-method-collection {
        padding: 70px 0;
    }

    .gh-method-collection__inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .gh-method-collection__image-link {
        height: 560px;
    }

    .gh-method-collection__content {
        max-width: 820px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .gh-method-collection {
        padding: 46px 0;
    }

    .gh-method-collection .wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
    }

    .gh-method-collection__inner {
        display: block !important;
        width: 100%;
        max-width: 100%;
    }

    .gh-method-collection__media {
        width: 100%;
        margin-bottom: 28px;
    }

    .gh-method-collection__image-link {
        width: 100%;
        height: auto !important;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }

    .gh-method-collection__image-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gh-method-collection__content {
        width: 100%;
        max-width: 100%;
    }

    .gh-method-collection__eyebrow {
        margin-bottom: 10px;
        font-size: 11px;
        line-height: 1.4;
    }

    .gh-method-collection__heading {
        margin-bottom: 22px;
        font-size: 31px;
        line-height: 1.1;
    }

    .gh-method-collection__body {
        display: block !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .gh-method-collection__tabs {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 26px;
        padding: 0 0 12px;
        border-left: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
    }

    .gh-method-collection__tabs::-webkit-scrollbar {
        display: none;
    }

    .gh-method-collection__tab {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: max-content !important;
        max-width: none !important;
        padding: 12px 18px !important;
        border: 1px solid #dddddd !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: #666666 !important;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap !important;
        text-align: center;
    }

    .gh-method-collection__tab::before {
        display: none !important;
    }

    .gh-method-collection__tab:hover {
        transform: none;
    }

    .gh-method-collection__tab.is-active {
        background: var(--gh-primary) !important;
        border-color: var(--gh-primary) !important;
        color: #ffffff !important;
    }

    .gh-method-collection__detail {
        width: 100%;
        max-width: 100%;
    }

    .gh-method-collection__detail h3 {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.16;
    }

    .gh-method-collection__detail p {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 420px) {
    .gh-method-collection .wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }

    .gh-method-collection__heading {
        font-size: 28px;
    }

    .gh-method-collection__detail h3 {
        font-size: 26px;
    }

    .gh-method-collection__tab {
        padding: 11px 15px !important;
        font-size: 10.5px;
    }
}
/* ==================== BLOG CATEGORIES ==================== */

.blog-categories {
    margin: 24px 0 40px;
    overflow-x: auto;
}

.blog-categories ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.blog-categories li {
    flex: 0 0 auto;
}

.blog-categories li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 7px;
    background: #112abc;
    color: #fff;
    transition: all 0.25s ease;
}

.blog-categories li.active a,
.blog-categories li a:hover {
    background: #ffc300;
    color: #333;
}

.blog-categories li.current-cat a {
    background: #000;
    color: #fff;
}

.blog-categories::-webkit-scrollbar {
    display: none;
}
/* ==================== BLOG INTRO & TOGGLE ==================== */

.blog-intro {
    padding: 4rem 0;
    background-color: #f3f4f6;
    margin-bottom: 32px;
}

.blog-intro h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.content-inner {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    transition: all 0.4s ease;
    overflow: hidden;
}

.content-inner.is-collapsed {
    max-height: 200px;
    position: relative;
}

.content-inner.is-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(transparent, #f3f4f6);
}

.content-inner p {
    margin-bottom: 16px;
}

.content-inner h2,
.content-inner h3 {
    margin: 24px 0 12px;
    font-weight: 600;
}

.content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.toggle-content {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 3rem;
    background: #1c224d;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.toggle-content:hover {
    background: #0d0f3b;
}

/* ==================== BLOG CATEGORY & DETAIL ==================== */

.category .section-blog-detail .detail_title {
    text-align: center !important;
    margin: 0;
}

.section-blog-detail {
    padding-top: 7.8rem;
}

.section-blog-detail .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-blog-detail .detail_content {
    flex: 0 0 75%;
    max-width: 75%;
    box-shadow: 0 1px 3px -2px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    padding: 10px;
    background-color: #fff;
    border-bottom: .1rem solid #1c274c;
    margin-bottom: 8rem;
}

.section-blog-detail .detail_aside {
    flex: 0 0 25%;
    max-width: 25%;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.section-blog-detail .detail_title,
h1.section-blog-detail .detail_title {
    color: #353535;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.17;
    text-align: left !important;
    margin: 0;
}