/* Reset & Basics */
.l-wrapper:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.l-wrapper .l-breadcrumb {
    width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

.l-content * {
    box-sizing: border-box;
}

/* Layout Utilities */
.l-content .l-center {
    text-align: center;
}

.l-content .container {
    /* width: 1000px; */
    /* margin: 0 auto; */
}

.l-content .u-mt30 {
    margin-top: 30px;
}

.l-content .u-mt50 {
    margin-top: 50px;
}

/* Banners and Images */
.ms-wrapper h2 {
    margin: 0;
}

.ms-wrapper img {
    width: 100%;
    display: block;
}

.l-content img {
    max-width: 100%;
    display: block;
}

/* Flex Grid System */
.l-content .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.l-content .flex-center {
    justify-content: center;
    gap: 20px;
}

.l-content .flex-start {
    justify-content: flex-start;
    gap: 20px;
}

.l-content .item-2 {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

.l-content .item-3 {
    width: calc(33.333% - 13.33px);
    margin-bottom: 20px;
}

.l-content .item-4 {
    width: calc(25% - 15px);
    margin-bottom: 20px;
}

.l-content .item-2 img,
.l-content .item-3 img,
.l-content .item-4 img {
    width: 100%;
    display: block;
}

/* Footer Links */
.l-content .footer-link {
    padding-bottom: 60px;
}

.l-content .footer-link a {
    display: inline-block;
    margin: 0 20px;
}

/* Titles with background */
.l-content .title-type1 {
    background: url('images/title1.png') no-repeat center center;
    background-size: 100% 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    min-width: 600px;
    min-height: 50px;
    padding: 10px 40px;
}

.l-content .title-type2 {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    background: linear-gradient(to right, #ffcc00 0%, #ffcc00 70%, rgba(255, 204, 0, 0) 100%);
    margin: 0;
}

.l-content .title-type2 span {
    background: #2b2b2b;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 0 40px 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

/* Product Cards */
.l-content .prd-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.l-content .prd-name {
    color: #005eb8;
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 10px;
    line-height: 1.4;
    display: block;
}

.l-content .prd-name:hover {
    text-decoration: none;
}

.l-content .prd-code-wrap {
    font-size: 12px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    word-break: break-all;
}

.l-content .prd-code-label {
    display: block;
    color: #666;
}

.l-content .prd-code {
    display: block;
}

.l-content .prd-img {
    text-align: center;
    margin-bottom: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-content .prd-img img {
    max-width: 100%;
    height: auto;
    /* max-height: 120px; */
}

.l-content .prd-card {
    position: relative;
}

.l-content .prd-price-wrap {
    margin-top: auto;
}

.l-content .prd-price-label {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 2px;
}

.l-content .prd-price {
    color: #e60000;
    font-size: 18px;
    font-weight: bold;
    margin-top: auto;
}

.l-content .prd-price-wrap .prd-price {
    margin-top: 0;
}

/* Save Tag */
.l-content .has-save-tag .prd-name {
    margin-top: 30px;
}

.l-content .save-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #ffcc00;
    display: flex;
    align-items: stretch;
    background: #fff;
    padding: 0;
    border-radius: 2px;
    overflow: hidden;
}

.l-content .save-tag .save-txt {
    background: #ffcc00;
    color: #000;
    text-align: center;
    padding: 3px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.l-content .save-tag .save-txt .t1 {
    font-size: 10px;
    font-weight: bold;
}

.l-content .save-tag .save-txt .t2 {
    font-size: 8px;
    font-weight: normal;
}

.l-content .save-tag .save-num {
    color: #e60000;
    font-size: 18px;
    font-weight: bold;
    padding: 0 4px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.l-content .save-tag .save-num span {
    font-size: 12px;
    margin-left: 1px;
}

/* Explore Button */
.l-content .btn-explore {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    background-color: #ef7c00;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 7px 0;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s;
}

.l-content .btn-explore:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
}

.l-content .btn-explore::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}