html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
}

.section-wrap {
    width: min(1500px, calc(100% - 32px));
    margin-inline: auto;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-chip {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 999px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.82);
    transition: color 160ms ease, background 160ms ease;
}

.nav-chip:hover,
.nav-chip-active {
    background: rgba(247, 181, 0, 0.14);
    color: #f7b500;
}

.store-dot {
    display: inline-grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    border-width: 1px;
    padding-inline: 5px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.offer-card {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 181, 0, 0.55);
    box-shadow: 0 22px 38px rgba(15, 23, 42, 0.14);
}

.home-hero {
    min-height: 390px;
    background-color: #050505;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(247, 181, 0, 0.16);
    pointer-events: none;
}

.hero-product {
    position: absolute;
    overflow: hidden;
    border: 3px solid rgba(247, 181, 0, 0.42);
    background: #fff;
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.34);
}

.hero-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.category-tile {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    padding: 14px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.benefit-strip {
    box-shadow: inset 0 0 0 1px rgba(247, 181, 0, 0.06);
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid #f7b500;
    border-radius: 999px;
    color: #f7b500;
    font-size: 22px;
    line-height: 1;
}

.admin-nav-link {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.78);
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(2px);
}

.admin-nav-link i {
    width: 18px;
    color: #f7b500;
    text-align: center;
}

@media (max-width: 768px) {
    .section-wrap {
        width: min(100% - 24px, 1500px);
    }

    .home-hero {
        min-height: auto;
        background-position: 58% center;
    }

    .benefit-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }
}
