.product-list-container {
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 20px;
}

.lc-sidebar {
    width: 100%;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    overflow: hidden;
}

.lc-sidebar-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #4ec548, #4ec548);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.lc-sidebar-nav {
    padding: 0px 0;
}

.lc-sidebar-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s;
    position: relative;
    border-left: 3px solid transparent;
}

.lc-sidebar-item:hover {
    color: #4ec548;
    background: #e8f5e9;
}

.lc-sidebar-item.active {
    color: #4ec548;
    background: #e8f5e9;
    border-left-color: #4ec548;
    font-weight: 600;
}

.lc-sidebar-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-sidebar-item-icon svg {
    width: 16px;
    height: 16px;
    transition: 0.25s;
}

.lc-sidebar-item:hover .lc-sidebar-item-icon svg,
.lc-sidebar-item.active .lc-sidebar-item-icon svg {
    transform: translateX(3px);
}

.lc-sidebar-item:hover .lc-sidebar-item-icon svg path,
.lc-sidebar-item.active .lc-sidebar-item-icon svg path {
    stroke: #4ec548;
}

.lc-sidebar-divider {
    height: 1px;
    background: #ececec;
    margin: 8px 16px;
}

.product-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.product-list-title {
    font-size: 28px;
    font-weight: 600;
    color: #002b50;
    margin: 0;
}

.product-list-count {
    font-size: 14px;
    color: #888;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-content {
    padding: 10px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #002b50;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.product-card-title a {
    color: #002b50;
    text-decoration: none;
}

.product-card-title a:hover {
    color: #f19b00;
}

.product-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-desc p{
    margin: 0;
}

.product-card-desc ul,
.product-card-desc ol {
    margin: 0;
    padding-left: 20px;
}

.product-card-desc li {
    margin-bottom: 4px;
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #4ec548;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card-btn:hover {
    background: #d98600;
    transform: translateX(4px);
}

.product-card-btn svg {
    width: 16px;
    height: 16px;
}

.product-pagination {
    margin-top: 20px;
    text-align: center;
}

.product-pagination .page_con {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-pagination a,
.product-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.product-pagination a:hover {
    background: #f5f5f5;
    color: #f19b00;
}

.product-pagination a.page_a.current {
    background: #f19b00;
    color: #fff;
}

@media screen and (max-width: 1600px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-list-title {
        font-size: 24px;
    }
}


@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap:8px;
    }

    .product-list-container {
        padding: 0px 12px;
    }

    .product-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .product-list-title {
        font-size: 20px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-card:hover {
        transform: translateY(-4px);
    }

    .product-card-content {
        padding: 12px;
    }

    .product-card-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .product-card-desc {
        display: none;
    }

    .product-card-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
    }

    .product-card-btn svg {
        width: 14px;
        height: 14px;
    }
}

#c_static_001-1704770195805 .e_container-1 {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

#c_static_001-1704770195805 .cbox-1-0 {
    width: 22%;
    flex-shrink: 0;
}

#c_static_001-1704770195805 .cbox-1-1 {
    flex: 1;
    min-width: 0;
}

.mobile-category-menu {
    display: none;
}

@media screen and (min-width: 769px) and (max-width: 1600px) {
    #c_static_001-1704770195805 .e_container-1 {
        max-width: 1100px;
        padding: 20px 0;
    }

    #c_static_001-1704770195805 .cbox-1-0 {
        width: 20%;
    }

    .product-list-container {
        padding: 0 0 0 16px;
    }

    .lc-sidebar {
        border-radius: 8px;
    }

    .lc-sidebar-header {
        padding: 14px 16px;
        font-size: 15px;
    }

    .lc-sidebar-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .lc-sidebar-item-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

    .lc-sidebar-item-icon svg {
        width: 14px;
        height: 14px;
    }

    .lc-sidebar-divider {
        margin: 6px 12px;
    }

    .product-list-header {
        margin-bottom: 28px;
        padding-bottom: 16px;
    }

    .product-list-title {
        font-size: 24px;
    }

    .product-grid {
        gap: 10px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-card:hover {
        transform: translateY(-6px);
    }

    .product-card-content {
        padding: 12px;
    }

    .product-card-title {
        font-size: 14px;
        margin: 0;
        font-weight: normal;
    }

    .product-card-desc {
        font-size: 12px;
        margin-bottom: 16px;
        -webkit-line-clamp: 2;
    }

    .product-card-btn {
        padding: 8px 20px;
        font-size: 13px;
        gap: 6px;
    }

    .product-card-btn svg {
        width: 14px;
        height: 14px;
    }

    .product-pagination {
        margin-top: 16px;
    }

    .product-pagination .page_con {

    }

    .product-pagination a,
    .product-pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

@media screen and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-list-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    #c_static_001-1704770195805 .e_container-1 {
        flex-direction: column;
        padding: 20px 0;
    }

    #c_static_001-1704770195805 .cbox-1-0 {
        display: none;
    }

    .mobile-category-menu {
        display: block;
        padding: 0 16px 16px;
    }

    .mobile-category-btn {
        width: 100%;
        padding: 12px 16px;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 8px;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-category-arrow {
        font-size: 10px;
        color: #999;
        transition: transform 0.2s;
    }

    .mobile-category-menu.open .mobile-category-arrow {
        transform: rotate(180deg);
    }

    .mobile-category-list {
        display: none;
        background: #fff;
        border: 1px solid #ececec;
        border-top: none;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
    }

    .mobile-category-menu.open .mobile-category-list {
        display: block;
    }

    .mobile-category-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-category-list li {
        border-bottom: 1px solid #f5f5f5;
    }

    .mobile-category-list li:last-child {
        border-bottom: none;
    }

    .mobile-category-list li a {
        display: block;
        padding: 12px 16px;
        color: #444;
        text-decoration: none;
        font-size: 14px;
    }

    .mobile-category-list li.active a {
        color: #f19b00;
        background: #fef3e0;
        font-weight: 600;
    }
}