* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #fcf8f9;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
a {
    color: inherit;
    text-decoration: none;
}
.neighborcontainer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}
.neighborheader {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-bottom: 1px solid #f3e8ea;
}
.neighbartopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}
.neighborlogo img {
    max-height: 42px;
    max-width: 100%;
    object-fit: contain;
}
.neighbornav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.neighbornavlink {
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}
.neighbornavlink:hover, .neighbornavlink.active {
    color: #ff4757;
}
.neighborsearchinput {
    height: 36px;
    padding: 0 15px;
    border: 1px solid #ff4757;
    border-radius: 18px 0 0 18px;
    outline: none;
    font-size: 13px;
    width: 200px;
}
.neighborsearchbtn {
    height: 36px;
    padding: 0 18px;
    background: #ff4757;
    color: #ffffff;
    border: none;
    font-weight: 700;
    border-radius: 0 18px 18px 0;
    cursor: pointer;
}
.neighbornotice {
    background: #ffffff;
    border-left: 4px solid #ff4757;
    padding: 12px 18px;
    margin: 15px 0;
    border-radius: 4px;
    color: #555555;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(255,71,87,0.08);
}
.neighborherobox {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f3e8ea;
    overflow: hidden;
    margin-bottom: 25px;
}
.neighborheroimgbox {
    width: 100%;
    height: 240px;
    background: #fff0f2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.neighborheroimg {
    max-height: 200px;
    max-width: 85%;
    object-fit: contain;
}
.neighborherobody {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.neighbortabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f3e8ea;
    padding-bottom: 10px;
}
.neighbortabitem {
    font-size: 15px;
    font-weight: 600;
    color: #666666;
    padding: 5px 15px;
    border-radius: 15px;
    transition: all 0.2s;
}
.neighbortabitem.active {
    background: #ff4757;
    color: #ffffff;
}
.neighborgrid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.neighborcard {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f3e8ea;
    padding: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}
.neighborcard:hover {
    border-color: #ff4757;
    box-shadow: 0 4px 15px rgba(255,71,87,0.12);
}
.neighborcardimg {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
}
.neighborcardtitle {
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.neighborcardbottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.neighborprice {
    color: #ff4757;
    font-weight: 700;
    font-size: 16px;
}
.neighborbadge {
    position: absolute;
    bottom: 45px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #ff4757;
    color: #ffffff;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.neighborautotag {
    font-size: 11px;
    background: #ffeef0;
    color: #ff4757;
    padding: 2px 6px;
    border-radius: 3px;
}
.neighborsectiontitle {
    font-size: 16px;
    font-weight: 700;
    color: #ff4757;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff4757;
}
.neighborfooter {
    background: #2f3542;
    color: #a4b0be;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}
.neighborfooterlinks {
    margin-bottom: 10px;
}
.neighborfooterlinks a {
    color: #ffffff;
}
.neighborcardbox {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f3e8ea;
    padding: 25px;
    margin-bottom: 20px;
}
.neighborformgroup {
    margin-bottom: 15px;
}
.neighborlabel {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333333;
}
.neighborinput {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    outline: none;
}
.neighborbtn {
    display: inline-block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #ff4757;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
@media (max-width: 992px) {
    .neighborgrid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
