body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}


/* TOP BAR */
.topbar {
    background: #000;
    color: #fff;
    font-size: 13px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}
.topbar a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

/* HEADER */
.header {
    background: #fff;
    padding: 15px 0;
}
.header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo img {
    height: 50px;
}
.search-box {
    flex: 1;
}
.hotline {
    text-align: right;
    color: red;
    font-size: 16px;
}

/* MENU */
.main-menu {
    background: #d60000;
    color: #fff;
}
.menu-flex {
    display: flex;
}
.menu-category {
    width: 250px;
    background: #b80000;
    padding: 12px;
    font-weight: bold;
}
.menu-main {
    flex: 1;
}
.menu-main a {
    color: #fff;
    padding: 12px 15px;
    display: inline-block;
    text-decoration: none;
}

/* MAIN */
.main {
    margin-top: 15px;
}
.main-grid {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 15px;
}

/* SIDEBAR */
.sidebar-left {
    background: #fff;
}

/* SLIDER */
.slider {
    background: #000;
    min-height: 380px;
}

/* BANNER */
.banner-right img {
    width: 100%;
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: #222;
    color: #ccc;
    padding: 20px 0;
    margin-top: 30px;
}











/* CATEGORY MENU */
.category-menu {
    background: #fff;
    border: 1px solid #ddd;
}

.category-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-menu li {
    border-bottom: 1px solid #eee;
}

.category-menu li:last-child {
    border-bottom: none;
}

.category-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.category-menu a:hover {
    background: #f5f5f5;
}

.category-menu .icon {
    margin-right: 8px;
    font-size: 16px;
}

.category-menu a span {
    color: #999;
    font-size: 16px;
}




.product-block {
    background: #fff;
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid #eee;
}

/* TITLE */
.block-title {
    display: inline-block;
    background: #ec4c8c;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 2px solid #ec4c8c;
}

.product-item {
    position: relative;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px;
    text-align: center;
}

.product-item:last-child {
    border-right: none;
}

.product-item img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
}

/* DISCOUNT */
.discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5a00;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 7px;
    line-height: 1.2;
}

/* NAME */
.product-item h3 {
    font-size: 14px;
    font-weight: normal;
    margin: 10px 0;
    min-height: 38px;
}

/* PRICE */
.price {
    margin-top: 5px;
}

.price .new,
.price {
    color: #ec4c8c;
    font-weight: bold;
    font-size: 16px;
}

.price .old {
    display: block;
    color: #999;
    font-size: 13px;
    text-decoration: line-through;
}