body, html {
    margin: 0;
    padding: 0;
    background-color: #fafbfc;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: #ff5768;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #e04152;
}
.moreoverTopBar {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f2f6;
    padding: 8px 0;
    font-size: 13px;
    color: #888888;
}
.moreoverTopWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.moreoverHeader {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f2f6;
    position: relative;
    z-index: 1000;
}
.moreoverNavWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}
.moreoverLogo img {
    height: 42px;
    max-width: 160px;
    object-fit: contain;
    vertical-align: middle;
}
.moreoverNavMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.moreoverNavMenu li {
    margin: 0 8px;
}
.moreoverNavMenu li a {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}
.moreoverNavMenu li a:hover, .moreoverNavMenu li.moreoverActive a {
    color: #ff5768;
    background: rgba(255, 87, 104, 0.08);
}
.moreoverContainer {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
}
.moreoverSectionHeader {
    text-align: center;
    margin: 40px 0 25px 0;
}
.moreoverSectionTitle {
    font-size: 24px;
    color: #1e272e;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.moreoverSectionLine {
    width: 40px;
    height: 3px;
    background: #ff5768;
    margin: 0 auto;
    border-radius: 2px;
}
.moreoverHeroBox {
    background: linear-gradient(135deg, #f2f9f9 0%, #fff0f2 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid #edf2f2;
}
.moreoverHeroCard {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #f1f2f6;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.moreoverHeroImg {
    width: 75px;
    height: 95px;
    object-fit: cover;
    border-radius: 4px;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.moreoverHeroInfo {
    flex: 1;
    overflow: hidden;
}
.moreoverHeroTitle {
    font-size: 16px;
    font-weight: 600;
    color: #1e272e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.moreoverGridFive {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.moreoverCard {
    background: #ffffff;
    border: 1px solid #f1f2f6;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.moreoverCard:hover {
    transform: translateY(-4px);
    border-color: #ff5768;
    box-shadow: 0 6px 18px rgba(255, 87, 104, 0.12);
}
.moreoverCardImg {
    width: 60px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.moreoverCardTitle {
    color: #1e272e;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.moreoverCardPrice {
    color: #ff5768;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.moreoverCardBtn {
    display: block;
    background: #ff5768;
    color: #ffffff !important;
    padding: 6px 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}
.moreoverCardBtn:hover {
    background: #e04152;
}
.moreoverGridFour {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.moreoverListCol {
    background: #ffffff;
    border: 1px solid #f1f2f6;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.moreoverListColTitle {
    font-size: 15px;
    font-weight: 700;
    color: #1e272e;
    border-bottom: 2px solid #f5f6fa;
    padding-bottom: 8px;
    margin-bottom: 4px;
}
.moreoverListItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #fafafa;
}
.moreoverListImg {
    width: 35px;
    height: 45px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.moreoverListInfo {
    flex: 1;
    overflow: hidden;
}
.moreoverGridThree {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.moreoverGridTwo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.moreoverGridSix {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}
.moreoverSquareCard {
    background: #ffffff;
    border: 1px solid #f1f2f6;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}
.moreoverSquareImg {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 auto 6px auto;
}
.moreoverTableWrap {
    background: #ffffff;
    border: 1px solid #f1f2f6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.moreoverTable {
    width: 100%;
    border-collapse: collapse;
}
.moreoverTable th {
    text-align: left;
    padding: 12px 15px;
    color: #888888;
    border-bottom: 1px solid #f1f2f6;
    font-size: 13px;
    font-weight: 600;
    background: #fafbfc;
}
.moreoverTable td {
    padding: 14px 15px;
    border-bottom: 1px solid #f8f9fa;
    color: #444444;
    font-size: 14px;
    vertical-align: middle;
}
.moreoverTable tr:hover td {
    background: #fffafa;
}
.moreoverBadge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}
.moreoverBadgeAuto {
    background: rgba(255, 87, 104, 0.1);
    color: #ff5768;
    border: 1px solid #ff5768;
}
.moreoverBadgeManual {
    background: #f5f5f5;
    color: #777777;
    border: 1px solid #dddddd;
}
.moreoverBtnSmall {
    padding: 5px 14px;
    background: #ff5768;
    color: #ffffff !important;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.moreoverBtnSmall:hover {
    background: #e04152;
}
.moreoverPanel {
    background: #ffffff;
    border: 1px solid #f1f2f6;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.moreoverFormLabel {
    color: #444444;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}
.moreoverInput {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #dcdde1;
    color: #2c3e50;
    padding: 10px 15px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}
.moreoverInput:focus {
    border-color: #ff5768;
}
.moreoverBtnSubmit {
    background: #ff5768;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.moreoverBtnSubmit:hover {
    background: #e04152;
}
.moreoverFooter {
    background: #ffffff;
    border-top: 1px solid #f1f2f6;
    padding: 40px 20px;
    text-align: center;
}
.moreoverFooterLinks a {
    color: #7f8c8d;
    margin: 0 12px;
    font-size: 14px;
}
.moreoverFooterLinks a:hover {
    color: #ff5768;
}
.moreoverFooterLinks span {
    color: #dcdde1;
}
.moreoverCopyright {
    color: #95a5a6;
    font-size: 13px;
    margin-top: 15px;
}
@media (max-width: 992px) {
    .moreoverGridFive { grid-template-columns: repeat(3, 1fr); }
    .moreoverGridFour { grid-template-columns: repeat(2, 1fr); }
    .moreoverGridSix { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .moreoverGridFive { grid-template-columns: repeat(2, 1fr); }
    .moreoverGridFour { grid-template-columns: 1fr; }
    .moreoverGridThree { grid-template-columns: 1fr; }
    .moreoverGridTwo { grid-template-columns: 1fr; }
    .moreoverGridSix { grid-template-columns: repeat(2, 1fr); }
    .moreoverNavMenu { display: none; }
}
