html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #f1f5f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    font-size: 13px;
}
* { box-sizing: border-box; }
a { color: #1e293b; text-decoration: none; }
.pendantheader {
    background: #0f172a;
    border-bottom: 3px solid #f97316;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.pendantheaderinner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pendantlogo img { max-height: 40px; vertical-align: middle; }
.pendantnav { display: flex; list-style: none; margin: 0; padding: 0; gap: 15px; }
.pendantnav a {
    font-weight: bold;
    color: #94a3b8;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}
.pendantnav a:hover, .pendantnav .active {
    background: #1e293b;
    color: #ffffff;
}
.pendantwrap {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 10px;
}
.pendantcard {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.pendantcardtitle {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f97316;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c2410c;
}
.pendantimg {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    border-radius: 4px;
}
.pendantgrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.pendantgriditem {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}
.pendantgriditem:hover {
    transform: translateY(-2px);
    border-color: #f97316;
    box-shadow: 0 4px 12px rgba(249,115,22,0.1);
}
.pendantgriditemtitle {
    font-size: 12px;
    font-weight: bold;
    margin: 6px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pendantprice { color: #ef4444; font-weight: bold; }
.pendantbtn {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.pendantbtn:hover { background: #ea580c; }
.pendantpill {
    display: inline-block;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #ffedd5;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin: 2px;
}
.pendantcircleicon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff7ed;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
}
.pendantfooter {
    background: #0f172a;
    color: #ffffff;
    padding: 25px 0;
    text-align: center;
    margin-top: 30px;
}
.pendantfooternav a {
    margin: 0 10px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: bold;
}
.pendantcopyright {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 10px;
}
@media (max-width: 992px) {
    .pendantgrid3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pendantgrid3 { grid-template-columns: repeat(1, 1fr); }
    .pendantheaderinner { flex-direction: column; gap: 10px; }
}
