body.public-body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #f5f5f5;
    color: #222;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.announcement-strip {
    background: #ee4d2d;
    color: #fff;
}

.shopee-header {
    background: linear-gradient(180deg, #ee4d2d 0%, #ff7337 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.brand-wrap {
    min-width: 150px;
}

.site-logo {
    object-fit: cover;
}

.search-wrap .form-control,
.search-wrap .btn {
    height: 38px;
}

.search-wrap .form-control:focus {
    box-shadow: none;
}

.public-main .container {
    max-width: 1220px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.home-block {
    background: #fff;
    border-radius: 0.35rem;
    border: 1px solid #f0f0f0;
    padding: 1rem;
}

.banner-img {
    max-height: 320px;
    object-fit: cover;
}

.cat-chip {
    display: block;
    border: 1px solid #f0f0f0;
    border-radius: 0.35rem;
    background: #fff;
    text-decoration: none;
    color: #333;
    padding: 0.8rem;
}

.cat-chip:hover {
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.product-card {
    border: 1px solid #f0f0f0;
    border-radius: 0.2rem;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.product-card .card-title {
    font-size: 0.9rem;
    line-height: 1.35;
    height: 2.45rem;
    overflow: hidden;
}

.product-price {
    color: #ee4d2d;
    font-weight: 700;
}

.object-fit-cover {
    object-fit: cover;
}

.sticky-cta {
    position: sticky;
    bottom: calc(4.3rem + env(safe-area-inset-bottom));
}

.shopee-product-main h1 {
    font-size: 1.4rem;
    line-height: 1.4;
}

.shopee-price-box {
    background: #fff6f5;
    border: 1px solid #ffd8d1;
    border-radius: 0.35rem;
    padding: 0.9rem 1rem;
}

.shopee-price-text {
    color: #ee4d2d;
}

.product-desc {
    line-height: 1.65;
    white-space: normal;
}

.mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #ececec;
}

.mobile-tabbar .tabbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem;
    font-size: 0.65rem;
    color: #777;
    text-decoration: none;
    border-radius: 0.75rem;
    max-width: 140px;
}

.mobile-tabbar .tabbar-item i {
    font-size: 1.2rem;
}

.mobile-tabbar .tabbar-item.active {
    color: #ee4d2d;
}

.public-footer {
    background: #fff;
}

@media (min-width: 768px) {
    .sticky-cta {
        bottom: auto;
    }
}
