
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
a {
    transition:
        opacity 150ms linear,
        color 150ms linear,
        background 150ms linear;
}
:root {
    --primary: #1e73be;
    --second: #ff2d37;
}
.scrollbar {
    overflow-y: overlay;
}

.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #d62929;
}
.clamp-1 {
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-2 {
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-3 {
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.box_content img {
    margin: 10px auto;
    max-width: 100%;
    height: auto !important;
}

.box_content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 10px;
    font-style: 16px;
}

.box_content p {
    margin-bottom: 10px;
    /*word-break: break-all;*/
}

.box_content h2,
.box_content h3,
.box_content h4,
.box_content h5 {
    margin-bottom: 10px;
}
.box_content iframe {
    margin: 0px auto;
    max-width: 100% !important;
}
.box_content h2 {
    font-size: 18px;
    font-weight: bold;
}

.box_content h3 {
    font-size: 16px;
    font-weight: 600;
}
.box_content h4,
.box_content h5 {
    font-weight: 500;
}

/* Site header sticky */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9;
    width: 100%;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Desktop menu header */
.header-pc {
    background-color: #fff;
}
.header-pc__top {
    background-color: #fff;
}
.header-pc__top-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 88px;
    padding: 12px 0;
}
.header-pc__brand {
    display: flex;
    justify-content: center;
    padding: 0 16px;
}
.header-pc__brand img {
    display: block;
    max-height: 64px;
    width: auto;
    object-fit: contain;
}
.header-pc__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.header-pc__search {
    position: relative;
    width: 280px;
}
.header-pc__search input {
    width: 100%;
    height: 40px;
    padding: 0 42px 0 18px;
    border: none;
    border-radius: 999px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 14px;
    outline: none;
}
.header-pc__search input::placeholder {
    color: #8a8a8a;
}
.header-pc__search button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-pc__search button svg {
    width: 18px;
    height: 18px;
}
.header-pc .header-cart-badge.hidden {
    display: inline-block !important;
}
.header-pc__nav {
    background-color: #d29f13bf;
    overflow: visible;
}
.header-pc .menu-header-child a {
    color: #222;
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    white-space: normal;
}
.header-pc .menu-header {
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
}
.header-pc .menu-header > li > a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 6px;
    line-height: 1.2;
}
.header-pc .menu-header > li > a:hover,
.header-pc .menu-header > li.active > a {
    color: #fff;
    opacity: 0.88;
}
.header-pc__home > a {
    padding-left: 0 !important;
    padding-right: 8px !important;
}
.header-pc__home svg {
    width: 20px;
    height: 20px;
    display: block;
}
.header-pc__caret {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.menu-header-child li:last-child {
    border-bottom: 0px;
}
.menu-header-child {
    -moz-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 0;
    visibility: hidden;
}
.menu-header li:hover .menu-header-child {
    opacity: 1;
    visibility: visible;
}

/* Image hover zoom */
.zoom-effect img {
    transition: transform 0.3s ease-in-out;
}
.zoom-effect:hover img,
.group:hover .zoom-effect img {
    transform: scale(1.1);
}
.date_label {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 20;
    background-color: #f8f8f8;
    border-radius: 4px;
    font-size: 12px;
    line-height: 18px;
    display: inline-block;
    padding: 2px 5px;
}
.date_label:after {
    border-left-color: #f8f8f8;
    content: "";
    display: block;
    position: absolute;
    right: -5px;
    top: 6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5.5px 0 5.5px 5px;
    border-color: transparent;
    border-left-color: #f8f8f8;
}
.pagination {
    display: inline-block;
}
.pagination li {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    background: #f3f5f7;
    font-weight: 600;
    margin: 0px 2px;
}

.pagination li.active {
    background-color: #20b200;
    color: white;
}

.pagination li:hover:not(.active) {
    background-color: #ddd;
}
