@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/zen-kaku-gothic-new');

/* montserrat-latin-500-normal */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-display: swap;
    font-weight: 500;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/montserrat@latest/latin-500-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/montserrat@latest/latin-500-normal.woff) format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Global & Typography --- */
body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #4C4948;
}

.fs-sm {
    font-size: 0.85rem;
}

/* --- Navbar --- */
.custom-navbar {
    padding: 19px 0;
}

@media (max-width: 1048px) {
    .custom-navbar {
        max-height: 64px;
        padding-right: 24px;
        padding-left: 24px;
    }
}

img.logo-top {
    max-width: 72px;
    vertical-align: baseline;
}

@media (max-width: 480px) {
    img.logo-top {
        max-width: 45px;
    }
}

nav.navbar.navbar-expand-lg.sticky-top.py-3.custom-navbar {
    background-color: #EFEFEF;
}

@media (max-width: 480px) {
    nav.navbar.navbar-expand-lg.sticky-top.py-3.custom-navbar {
        background-color: #EFEFEF;
    }
}

#navbarNav ul li a {
    padding: 0;
    margin-right: 40px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
}

#navbarNav ul li a:hover {
    color: #737171 !important;
}

a.nav-link.px-3.text-dark {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
}

.mr-80 {
    margin-right: 80px;
}

/* --- Profile Section --- */
.profile-section {
    background-color: #EFEFEF;
    padding-top: 56px;
    padding-bottom: 48px;
}

@media (max-width: 480px) {
    .profile-section {
        padding: 18px 24px 24px 24px;
    }
}

.profile-section .name {

    font-weight: 500;
    font-size: 32px;

    letter-spacing: 0%;
}

@media (max-width: 480px) {
    .profile-section .name {
        margin-bottom: 2px;
        font-size: 20px;
    }
}

.profile-section .user_name {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
    color: #B5B5B6;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .profile-section .user_name {
        margin-bottom: 12px;
    }
}

.profile-section a.ig-icon {
    margin-bottom: 24px;
    display: block;
}

.profile-section a.ig-icon img {
    max-width: 32px;
}

@media (max-width: 480px) {
    .profile-section a.ig-icon img {
        max-width: 20px;
    }
}

.view_pc {
    display: block;
}

.view_sp {
    display: none;
}

@media (max-width: 480px) {
    .view_pc {
        display: none !important;
    }

    .view_sp {
        display: block !important;
    }
}

.profile-img-placeholder {
    overflow: hidden;
}

.profile-img-placeholder .logo {
    width: 100%;
}

/* Instagram Icon Gradient */
.ig-icon i {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-desc {

    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
}

/* --- Products & Tabs --- */
.product-tabs .nav-link {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
}

.product-tabs .active-tab {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
}

.card-title {

    font-weight: 500;
    font-size: 12px;

    letter-spacing: 0%;
}

.product-card {
    border-radius: 8px !important;
    border: .75px solid #EFEFEF !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* --- Tùy chỉnh cho Product Tabs Scroll Ngang --- */

.product-tabs {
    display: flex;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* Giúp scroll mượt hơn trên iOS */
    margin-bottom: 64px;
    justify-content: space-around;
    top: 64px;
    z-index: 888;
    background: white;
}

@media (max-width: 480px) {
    .product-tabs {
        margin-bottom: 33px;
        border-bottom: 1px solid #EFEFEF;
        padding-left: 36px !important;
        gap: 64px;
        justify-content: unset;
        position: sticky;
    }
}

/* Ẩn thanh scroll bar nhưng vẫn cho phép cuộn (tùy chọn) */
.custom-scrollbar-hide::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.custom-scrollbar-hide {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-tabs .nav-link {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
    color: #B5B5B6;
}

@media (max-width: 480px) {
    .product-tabs .nav-link {
        padding-top: 0;
        padding-bottom: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .list-product-items {
        max-width: 100%;
        margin-left: 0;
        padding: 0 6px;
        padding-top: 26px;
    }

    .list-product-items .product-item {
        padding: 6px;
        margin-top: 0;
    }
}

.profile-section .avatar-section {
    margin-right: 80px
}

@media (max-width: 1048px) {
    .profile-section .avatar-section {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .profile-section .avatar-section {
        margin-right: 0;
    }
}

/* Đảm bảo container trên mobile vẫn nằm trong giới hạn 960px của bạn */
@media (max-width: 960px) {
    .products-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .product-tabs {
        padding-top: 16px;
        overflow-x: auto;
    }
}

/* --- Carbon Offset Section --- */
.carbon-number {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 88px;

    letter-spacing: 0%;
    color: #4C4948;
    padding-top: 48px;
    padding-bottom: 24px;
}

.carbon_desc1 {

    font-weight: 500;
    font-size: 24px;

    letter-spacing: 0%;
    text-align: center;
}

@media (max-width: 480px) {
    .carbon_desc1 {
        font-size: 16px;
        margin-bottom: 8px;
        padding-left: 44px;
        padding-right: 43px;
        text-align: start;
    }
}

.carbon_desc2 {
    font-weight: 500;
    font-size: 12px;

    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 11px;
}

@media (max-width: 480px) {
    .carbon_desc2 {
        padding-left: 44px;
        padding-right: 46px;
        text-align: start;
        line-height: 1.3;
        margin-bottom: 8px;
    }
}


.carbon_desc3 {
    font-weight: 500;
    font-size: 12px;

    letter-spacing: 0%;
    text-align: right;
    color: #B5B5B6;
}

.bottom-line {
    height: 1px;
    margin-top: 50px;
    margin-bottom: 48px;
    background: #4C4948;
}

@media (max-width: 480px) {
    .bottom-line {
        margin-top: 40px;
        margin-bottom: 32px;
    }
}

footer {
    padding-top: 64px;
    padding-bottom: 64px;
}

footer .footer_menu.view_sp .left-col {
    display: inline-block;
    text-align: center;
}

footer .footer_menu.view_sp .left-col a {
    float: left;
    width: 100%;
    color: #FFFFFF;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
    text-decoration: none;
    margin-bottom: 16px;
}

footer .footer_menu.view_sp .left-col a:last-child {
    margin-bottom: 0;
}

.carbon-number span#gram {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 40px;

    letter-spacing: 0%;
    color: #4C4948;
}

@media (max-width: 480px) {
    .carbon-number span#gram {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .carbon-number {
        font-size: 2.5rem;
    }
}

.carbon-desc {
    max-width: 600px;
    line-height: 1.5;
}

/* --- Footer --- */
footer {
    background-color: #4C4948;
    /* Màu xám đậm cho footer */
}

footer .logo {
    margin-top: 64px;
}

@media (max-width: 480px) {
    footer {
        padding-bottom: 48px;
        padding-top: 48px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

.footer-links {
    max-width: 685px;
    text-align: center;
    margin: auto;
    gap: 64px;
}

.footer-links a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d9d9d9;
}

#mobileMenu .wrapper_menu {
    padding: 5px 31px 24px 24px;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #4C4948;
    z-index: 1050;
    /* Cao hơn navbar */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    color: #fff;
    text-decoration: none;
    margin: 16px 0;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
}

#contact {
    background: #FFFFFF;
    color: #4C4948 !important;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 12px;

    letter-spacing: 0%;
    width: 108px;
    height: 31px;
    padding: 6px 0;
}

/* --- Cấu hình kích thước theo yêu cầu (PC 1440px) --- */

/* 1. Header: Max 1080px */
.custom-navbar .container {
    max-width: 1080px !important;
    padding-left: 0;
    padding-right: 0;
}

/* 3. Footer: Thông thường sẽ đi theo Header hoặc Full width tùy thiết kế, 
   ở đây tôi để 1080px cho đồng bộ với Header */
footer .container {
    max-width: 1080px !important;
}

@media (max-width: 480px) {
    footer .container {
        padding: 0;
    }
}

/* --- Tinh chỉnh thêm để khớp với bản thiết kế --- */

/* Căn giữa toàn bộ nội dung khi màn hình lớn hơn 1440px */
@media (min-width: 1440px) {
    body {
        background-color: #fff;
        /* Hoặc màu nền bạn muốn cho phần lề ngoài 1440px */
    }
}

/* Khoảng cách giữa các card sản phẩm (Gutter) */
.products-section .row {
    --bs-gutter-x: 2rem;
    /* Khoảng cách ngang giữa các item */
    --bs-gutter-y: 2rem;
    /* Khoảng cách dọc */
}

/* Hình ảnh sản phẩm tỉ lệ 1:1 hoặc theo thiết kế */
.product-card img {
    aspect-ratio: 3 / 4;
    /* Điều chỉnh tỉ lệ này cho khớp với ảnh thật của bạn */
    object-fit: contain;
    background-color: #fff;
}

.product-card .card-price {

    font-weight: 700;
    font-size: 16px;
    color: #4C4948;
    letter-spacing: 0%;
}

/* Profile Image cố định kích thước để không bị vỡ khi co giãn */
.profile-img-placeholder {
    width: 160px;
    height: 160px;
}

@media (max-width: 1048px) {
    .profile-img-placeholder {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .profile-img-placeholder {
        width: 116px;
        height: 116px;
        margin-right: 15px;
        float: left;
    }
}

.products-section {
    padding-top: 10px;
    padding-bottom: 112px;
}

@media (max-width: 480px) {
    .products-section {
        padding-top: 0px;
        padding-bottom: 64px;
    }
}

/* タイトル全体のラッパー */
.carbon-offset-title-wrapper {
    display: flex;
    align-items: center;
    /* 垂直方向の中央揃え */
    justify-content: center;
    width: 100%;
}

@media (max-width: 480px) {
    .carbon-offset-title-wrapper {
        padding: 0 17px;
    }
}

/* 左右の線 */
.title-line {
    flex-grow: 1;
    /* 利用可能なスペースをすべて埋める */
    height: 1px;
    /* 線の太さ */
    background-color: #4C4948;
    /* 線の色（ロゴやテキストに合わせて調整してください） */
}

/* 中央のテキスト部分 */
/* --- 前回のCSSに以下を追加・修正 --- */

/* 中央のテキスト全体を少し整える */
.title-content {
    display: flex;
    align-items: center;
    padding: 0 10px;
    /* 線とテキストの間の余白を少し詰める（お好みで） */
    white-space: nowrap;
}

/* 斜線記号（span.fs-4）のスタイル */
.title-content span.fs-4 {
    display: inline-block;
    /* transformを適用するために必要 */
    color: #4C4948;
    /* 線の色と合わせる */
    font-size: 1.8rem;
    /* 少し大きくして存在感を出す */
    font-weight: 100;
    /* 細くしてスタイリッシュに */

    /* ★ここが重要：傾ける */
    /* 15deg（15度）傾けます。
       「/」は本来右に傾いていますが、それをさらに寝かせるイメージです。
       値が大きいほど、より寝た（水平に近い）線になります。 */


    /* 傾けたことによる位置の微調整（必要であれば） */
    margin-top: -2px;
}

/* 左側の「\」だけ個別に微調整が必要な場合 */
.title-content span.fs-4:first-child {
    transform: skewX(15deg) scaleY(1.2);
}

/* 右側の「/」だけ個別に微調整が必要な場合 */
.title-content span.fs-4:last-child {
    transform: skewX(-15deg) scaleY(1.2);
}

.carbon-offset-title-wrapper span.fw-medium {
    font-family: Montserrat;
    font-size: 1.5rem;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
}

@media (max-width: 480px) {
    .carbon-offset-title-wrapper span.fw-medium {
        font-size: 12px;
    }
}

.w-1080 {
    max-width: 1080px !important;
}

/* detail page */

/* Tỉ lệ ảnh sản phẩm chính */
.product-main-image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.related-products {
    margin-bottom: 96px;
}

.carbon-summary-bar {
    margin-bottom: 64px;
    margin-top: 98px;
}

@media (max-width: 480px) {
    .carbon-summary-bar {
        margin-top: 48px;
        margin-bottom: 19px;
        padding: 0 24px;
    }
}

/* Carbon summary bar tinh chỉnh */
.carbon-summary-bar .border {
    border: 1px solid #EFEFEF !important;
    border-radius: 4px;
}

/* Dot indicators cho mobile */
.dot {
    height: 6px;
    width: 6px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.dot.active {
    background-color: #4C4948;
}

/* Mobile responsive cho buttons */
@media (max-width: 768px) {
    .buy-actions .btn {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .buy-actions .btn {
        font-size: 16px;
    }
}

.banner_wrapper {
    padding-top: 97px;
}

@media (max-width: 1048px) {
    .banner_wrapper {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .banner_wrapper {
        margin: 0;
        padding-top: 0;
    }

    .navbar-toggler {
        padding-right: 0;
    }

    .banner_wrapper .col-left.view_sp .logo-desc-right {
        font-weight: 500;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0%;
        margin-left: 12px;
    }

    .product-detail-section {
        padding-top: 20px !important;
    }
}


.banner_wrapper .col-left {
    padding: 0 40px;
    margin-top: 0;
}

@media (max-width: 480px) {
    .banner_wrapper .col-left {
        padding: 0 24px;
        margin-top: 0;
    }
}

.banner_wrapper .col-right {
    margin-top: 0;
    padding-left: 80px;
}

@media (max-width: 1048px) {
    .banner_wrapper .col-right {
        padding-right: 40px;
    }
}

@media (max-width: 480px) {
    .banner_wrapper .col-right {
        display: grid;
        padding: 0 24px;
    }

    .banner_wrapper .col-right .product-info-header {
        order: 2;
        margin-bottom: 0 !important;
    }

    .banner_wrapper .col-right .comment-box {
        order: 1;
    }

    .banner_wrapper .col-right .buy-actions {
        order: 3;
    }
}

.banner_wrapper .col-right .logo-desc-right {
    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
    margin-left: 12px;
}

.banner_wrapper .col-right .product-info-header .product-title {
    font-weight: 700;
    font-size: 31px;

    letter-spacing: 0%;
}

@media (max-width: 480px) {
    .banner_wrapper .col-right .product-info-header .product-title {
        font-size: 18px;
    }
}

.banner_wrapper .col-right .product-info-header .product-author {

    font-weight: 500;
    font-size: 16px;

    letter-spacing: 0%;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .banner_wrapper .col-right .product-info-header .product-author {
        font-size: 12px;
    }
}

.banner_wrapper .col-right .product-info-header .product-price {

    font-weight: 700;
    font-size: 36px;

    letter-spacing: 0%;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .banner_wrapper .col-right .product-info-header .product-price {
        font-size: 20px;
    }
}

.banner_wrapper .col-right .product-info-header .product-description-short p {

    font-weight: 500;
    font-size: 14px;

    letter-spacing: 0%;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .banner_wrapper .col-right .product-info-header .product-description-short p {
        margin-bottom: 0 !important;
    }
}

.banner_wrapper .col-right .comment-box {
    border: 1px solid #EFEFEF;
    padding: 16px;
    background: #EFEFEF;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .banner_wrapper .col-right .comment-box {
        margin-top: 24px;
        margin-bottom: 24px;
    }

}

.banner_wrapper .col-right .comment-box .eco-text-wrap .fade-overlay {
    background: linear-gradient(to right, transparent, #EFEFEF);

}

.banner_wrapper .col-right .comment-box p {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.5;
    margin-bottom: 0;
    -webkit-line-clamp: 7;
}

.banner_wrapper .col-right .comment-box p a {
    font-weight: 500;
    font-size: 12px;

    letter-spacing: 0%;
    color: #B5B5B6;
}

.banner_wrapper .col-right .buy-actions .btn:first-child:hover {
    background-color: #970000 !important;

}

.banner_wrapper .col-right .buy-actions .btn:last-child:hover {
    background-color: #d9a11f !important;

}



.eco-wrapper {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 16px;
}

.eco-box {
    border: 1px solid #B5B5B6;
    border-radius: 6px;
    padding: 40px 48px;
    padding-right: 38px;
    background: #fff;
}

@media (max-width: 480px) {
    .eco-box hr {
        width: 100%;
        border: 1px dashed #B5B5B6;
        margin-top: 20px;
        margin-bottom: 24px;
    }
}


@media (max-width: 480px) {
    .eco-box {
        padding: 24px 18px;
    }
}

/* layout */
.eco-grid {
    display: flex;
    align-items: center;
}

/* LEFT */
.eco-left {
    width: 47%;
    padding-right: 48px;
    position: relative;
}

/* divider */
.eco-left::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    border-right: 1px dashed #dcdcdc;
}

/* RIGHT */
.eco-right {
    width: 49%;
    padding-left: 9%;
    text-align: right;
}


@media (max-width: 480px) {
    .eco-right {
        margin-top: 0 !important;
    }
}

/* text styles */
.eco-title {
    font-weight: 700;
    font-size: 20px;

    letter-spacing: 0%;
    margin-bottom: 12px;

}

@media (max-width: 480px) {
    .eco-title {
        font-size: 16px;
    }
}

.eco-text {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    letter-spacing: 0%;
}

/* clamp 2 dòng */
.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* fade effect */
.eco-text-wrap {
    position: relative;
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 20px;
    background: linear-gradient(to right, transparent, #fff);
    pointer-events: none;
}

/* hide fade khi expand */
.eco-text.expand+.fade-overlay {
    display: none;
}

/* button link */
.eco-link {
    font-size: 12px;
    color: #888;
    background: none;
    border: none;
    padding: 0;
    margin-top: 4px;
    cursor: pointer;
}

/* RIGHT CONTENT */
.eco-small {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
    text-align: center;
}

@media (max-width: 480px) {
    .eco-small {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

.eco-smal:last-child {
    margin-bottom: 0;
}

.eco-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-number .sub-1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
}

.eco-number .sub-2 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 60px;
    margin-left: 5px;
    letter-spacing: 0%;
}

@media (max-width: 480px) {
    .eco-number .sub-2 {
        font-size: 40px;
    }
}

.eco-number .sub-3 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: -25px;
}

/* responsive */
@media (max-width: 768px) {
    .eco-grid {
        flex-direction: column;
    }

    .eco-left,
    .eco-right {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .eco-left::after {
        display: none;
    }

    .eco-right {
        margin-top: 16px;
        text-align: center;
    }
}

.product-slider {
    max-width: 500px;
    margin: auto;
}

.swiper {
    width: 100%;
}

.product-slider .swiper-slide {
    border: 1px solid #EFEFEF;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-height: 670px;
    min-height: 670px;
}

@media (max-width: 480px) {
    .product-slider .swiper-slide {
        padding: 0 30px;
    }
}

.swiper-slide img {
    width: 100%;
    display: block;
    object-fit: contain;
}

/* dots style */
.swiper-pagination {
    margin-top: 16px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #cfcfcf;
    opacity: 1;
    margin: 0 4px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: #555;
}

.recommend-section {
    padding-left: 24px;
    padding-bottom: 64px;
}

@media (max-width: 480px) {
    .recommend-section h5 {
        font-weight: 700;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;

    }
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    display: block;
}

/* swiper */
.recommendSwiper {
    overflow: hidden;
}

.recommendSwiper .swiper-slide {
    width: 144px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.recommendSwiper .swiper-slide img {
    object-fit: contain;
    background-color: #fff;
}

.profile-wrapper {
    text-align: left;
}

.profile-desc {
    margin: 0;
    line-height: 1.6;
}

.read-more-inline {
    color: #B5B5B6;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 6px;
    float: right;
}