@font-face {
    font-family: 'RAYDIS';
    src: url('/local/fonts/raydis/Raydis-Bold.woff2') format('woff2'),
         url('/local/fonts/raydis/Raydis-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: #111111;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    padding: 12px 32px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-logo img {
    display: block;
    max-height: 56px;
}

.site-nav {
    font-size: 14px;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
}

.site-nav__link:hover {
    text-decoration: underline;
}

.site-nav__link--active {
    color: #7b3cff;
    font-weight: 700;
    font-family: 'RAYDIS', 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-nav__star {
    margin: 0 2px;
}

.site-nav__icon-link {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__icon-btn {
    border: none;
    background: transparent;
    border-radius: 999px;
    padding: 0;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-header__icon-img {
    width: 54px;
    height: 54px;
    display: block;
}

.site-header__cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 54px;
    padding: 20px 12px;
    border-radius: 16px;
    border: 1px solid var(--Basic-Orange, #F48812);
    background: #fff7e8;
    text-decoration: none;
    color: #111111;
    font-size: 13px;
}

.site-header__cart-icon-img {
    width: 24px;
    height: 24px;
    display: block;
}

.site-header__avatar {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
}

.site-header__avatar-image {
    position: absolute;
    inset: 0;
    background: #ddd;
}

.site-header__avatar-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7a00;
    border: 2px solid #ffffff;
}

.site-main {
    flex: 1 0 auto;
    padding: 24px 32px;
}

