html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #fffcf5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #4a2c11;
    font-size: 13px;
}

* {
    box-sizing: border-box;
}

a {
    color: #4a2c11;
    text-decoration: none;
}

.lettuceheader {
    background: #8b1515;
    border-bottom: 3px solid #630c0c;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lettuceheaderinner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lettucelogo img {
    max-height: 40px;
    vertical-align: middle;
}

.lettucenav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.lettucenav a {
    font-weight: bold;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.lettucenav a:hover, .lettucenav .active {
    background: #630c0c;
}

.lettucewrap {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 10px;
}

.lettucecard {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e2d2b5;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.lettucecardtitle {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #8b1515;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #630c0c;
}

.lettuceimg {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    border-radius: 4px;
}

.lettucegrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.lettucegriditem {
    background: #ffffff;
    border: 1px solid #e2d2b5;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}

.lettucegriditem:hover {
    transform: translateY(-2px);
    border-color: #8b1515;
    box-shadow: 0 4px 12px rgba(139,21,21,0.1);
}

.lettucegriditemtitle {
    font-size: 12px;
    font-weight: bold;
    margin: 6px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lettuceprice {
    color: #e53e3e;
    font-weight: bold;
}

.lettucebtn {
    display: inline-block;
    background: #8b1515;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.lettucebtn:hover {
    background: #630c0c;
}

.lettucepill {
    display: inline-block;
    background: #fffcf5;
    color: #4a2c11;
    border: 1px solid #e2d2b5;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin: 2px;
}

.lettucecircleicon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fffcf5;
    color: #8b1515;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    border: 1px solid #e2d2b5;
}

.lettucefooter {
    background: #3e1b10;
    color: #e2d2b5;
    padding: 25px 0;
    text-align: center;
    margin-top: 30px;
    border-top: 3px solid #8b1515;
}

.lettucefooternav a {
    margin: 0 10px;
    color: #e2d2b5;
    font-size: 12px;
    font-weight: bold;
}

.lettucecopyright {
    color: #e2d2b5;
    font-size: 12px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .lettucegrid3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lettucegrid3 { grid-template-columns: repeat(1, 1fr); }
    .lettuceheaderinner { flex-direction: column; gap: 10px; }
}\n