2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-header {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
background: rgba(117, 121, 124, 0.1);
|
2026-02-14 01:28:08 +04:00
|
|
|
|
padding: 8px 0;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
position: sticky;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
backdrop-filter: blur(10px);
|
2026-02-14 02:34:11 +04:00
|
|
|
|
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
2026-07-17 15:29:55 +04:00
|
|
|
|
|
|
|
|
|
|
&--static {
|
|
|
|
|
|
position: static;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.platform-header--centered .platform-header-container {
|
|
|
|
|
|
justify-content: center;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-header-container {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
max-width: 1440px;
|
|
|
|
|
|
margin: 0 auto;
|
2026-02-14 01:28:08 +04:00
|
|
|
|
padding: 0 40px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-02-14 01:28:08 +04:00
|
|
|
|
gap: 32px;
|
2026-06-20 14:00:28 +04:00
|
|
|
|
min-height: 48px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-logo {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
flex-shrink: 0;
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 00:45:17 +04:00
|
|
|
|
::ng-deep .logo-img {
|
2026-02-14 01:28:08 +04:00
|
|
|
|
width: 120px;
|
|
|
|
|
|
height: 38px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
object-fit: contain;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Navigation Buttons Group
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-group {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2026-02-14 01:28:08 +04:00
|
|
|
|
padding: 6px 32px;
|
|
|
|
|
|
height: 38px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
border: 1px solid #d3dad9;
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.74);
|
|
|
|
|
|
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
|
|
|
|
font-weight: 600;
|
2026-07-20 03:26:17 +04:00
|
|
|
|
font-size: var(--font-size-md, 0.9375rem);
|
2026-02-14 00:45:17 +04:00
|
|
|
|
color: #1e3c38;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background 0.3s ease;
|
|
|
|
|
|
white-space: nowrap;
|
2026-07-16 23:32:31 +04:00
|
|
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
|
|
border-left: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
|
border-radius: 10px 0 0 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
|
border-radius: 0 10px 10px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 00:45:17 +04:00
|
|
|
|
&:hover {
|
|
|
|
|
|
background: #a1b4b5;
|
|
|
|
|
|
color: #1e3c38;
|
|
|
|
|
|
}
|
2026-07-16 23:32:31 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
&.platform-active {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
background: #497671;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Search Box
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-wrapper {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
flex: 1;
|
2026-02-14 01:28:08 +04:00
|
|
|
|
max-width: 200px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-box {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 100%;
|
2026-02-14 01:28:08 +04:00
|
|
|
|
height: 38px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
background: rgba(255, 255, 255, 0.74);
|
|
|
|
|
|
border: 1px solid #d2dad9;
|
2026-02-14 01:28:08 +04:00
|
|
|
|
border-radius: 19px;
|
|
|
|
|
|
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-02-14 01:28:08 +04:00
|
|
|
|
padding: 0 14px;
|
|
|
|
|
|
gap: 8px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-icon {
|
2026-02-14 01:28:08 +04:00
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 20px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-input {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
|
|
|
|
font-weight: 600;
|
2026-07-20 03:26:17 +04:00
|
|
|
|
font-size: var(--font-size-md, 0.9375rem);
|
2026-02-14 00:45:17 +04:00
|
|
|
|
color: #828e8d;
|
|
|
|
|
|
cursor: pointer;
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 00:45:17 +04:00
|
|
|
|
&::placeholder {
|
|
|
|
|
|
color: #828e8d;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Actions
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-actions {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-02-14 02:34:11 +04:00
|
|
|
|
gap: 8px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-ux-btn {
|
2026-07-09 01:13:54 +04:00
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 34px;
|
|
|
|
|
|
height: 34px;
|
|
|
|
|
|
border: 1px solid #d3dad9;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.84);
|
|
|
|
|
|
color: #1e3c38;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-ux-btn:hover {
|
2026-07-09 01:13:54 +04:00
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
|
border-color: #497671;
|
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-ux-icon {
|
2026-07-20 03:26:17 +04:00
|
|
|
|
font-size: var(--font-size-md, 0.9375rem);
|
2026-07-09 01:13:54 +04:00
|
|
|
|
line-height: 1;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-ux-badge {
|
2026-07-09 01:13:54 +04:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: -6px;
|
|
|
|
|
|
top: -6px;
|
|
|
|
|
|
min-width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
background: #497671;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-cart-btn {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
2026-06-20 14:00:28 +04:00
|
|
|
|
flex-direction: column;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2026-06-20 14:00:28 +04:00
|
|
|
|
min-width: 36px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: opacity 0.3s ease;
|
2026-06-20 14:00:28 +04:00
|
|
|
|
gap: 2px;
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 00:45:17 +04:00
|
|
|
|
svg {
|
2026-02-14 02:34:11 +04:00
|
|
|
|
width: 36px;
|
|
|
|
|
|
height: 28px;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 00:45:17 +04:00
|
|
|
|
&:hover {
|
|
|
|
|
|
opacity: 0.85;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
&.platform-cart-active {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-cart-icon {
|
2026-06-20 14:00:28 +04:00
|
|
|
|
position: relative;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 36px;
|
|
|
|
|
|
height: 28px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-cart-badge {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
position: absolute;
|
2026-02-14 02:34:11 +04:00
|
|
|
|
top: -8px;
|
|
|
|
|
|
right: -10px;
|
|
|
|
|
|
background: #497671;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
font-weight: 700;
|
2026-02-14 02:34:11 +04:00
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-cart-total {
|
2026-06-20 14:00:28 +04:00
|
|
|
|
font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
color: #1e3c38;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-lang-selector {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 02:59:26 +04:00
|
|
|
|
// Mobile Menu Backdrop
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-menu-backdrop {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Mobile Menu Panel
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-menu {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Mobile Menu Items
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-item {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 14px;
|
|
|
|
|
|
width: 395px;
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
height: 42px;
|
|
|
|
|
|
padding: 15px 26px;
|
|
|
|
|
|
background: #e9edf1;
|
|
|
|
|
|
border: 1px solid #d3dad9;
|
|
|
|
|
|
border-radius: 13px;
|
|
|
|
|
|
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
font-family: 'DM Sans', sans-serif;
|
2026-07-20 03:26:17 +04:00
|
|
|
|
font-size: var(--font-size-lg, 1rem);
|
2026-02-14 02:59:26 +04:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: #1e3c38;
|
|
|
|
|
|
text-decoration: none;
|
2026-07-19 23:22:40 +04:00
|
|
|
|
text-align: left;
|
|
|
|
|
|
appearance: none;
|
2026-02-14 02:59:26 +04:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background 0.2s ease, transform 0.15s ease;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
background: #dce2e7;
|
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
&.platform-mobile-active {
|
2026-02-26 22:00:12 +04:00
|
|
|
|
background: #497671;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
border-color: #497671;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
fix(icons): replace hand-rolled inline SVGs with Lucide (header, search)
Header: same magnifying-glass path was hand-duplicated twice with two
different hex fills (#576463 desktop, #1e3c38 mobile) - now one
app-icon name="search", color inherited via currentColor. Wishlist/
compare buttons used bare '♥'/'⇄' text glyphs, entirely outside any
icon system - replaced with heart/scale icons. Cart icon, mobile-menu
home/catalog icons, and three duplicated inline chevron SVGs replaced
with app-icon equivalents. Cleaned up now-dead CSS that targeted the
old raw svg/path selectors.
Search: the same magnifying-glass path was hand-duplicated 4 times
(input icon, empty-query state, no-results state, no-query state) at
three sizes and three colors. Replaced all four with app-icon,
preserving each state's intended color via a color property on the
wrapper (icons default to currentColor).
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-20 02:37:23 +04:00
|
|
|
|
app-icon:first-child {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-chevron {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-lang {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2026-06-10 17:49:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-controls {
|
2026-06-10 17:49:22 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin-top: 4px;
|
2026-02-14 02:59:26 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-menu-toggle {
|
2026-06-10 17:49:22 +04:00
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1001;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: none;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 5px;
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
width: 25px;
|
|
|
|
|
|
height: 3px;
|
|
|
|
|
|
background: #1e3c38;
|
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
|
span:nth-child(1) {
|
|
|
|
|
|
transform: rotate(45deg) translate(7px, 4.5px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
span:nth-child(2) {
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
span:nth-child(3) {
|
|
|
|
|
|
transform: rotate(-45deg) translate(7px, -4.5px);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 02:34:11 +04:00
|
|
|
|
// Mobile Search Icon
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-mobile {
|
2026-02-14 02:34:11 +04:00
|
|
|
|
display: none;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
padding: 6px;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
transition: opacity 0.2s ease;
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 02:34:11 +04:00
|
|
|
|
&:hover {
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 00:45:17 +04:00
|
|
|
|
// Responsive Design
|
|
|
|
|
|
@media (max-width: 1200px) {
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-header-container {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 0 32px;
|
|
|
|
|
|
gap: 32px;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn {
|
2026-07-20 03:26:17 +04:00
|
|
|
|
font-size: var(--font-size-xl, 1.125rem);
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 32px !important;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn-left {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 32px !important;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn-middle {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 40px !important;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn-right {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 28px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 992px) {
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-header-container {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
gap: 20px;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-logo ::ng-deep .logo-img {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
width: 120px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn {
|
2026-07-20 03:26:17 +04:00
|
|
|
|
font-size: var(--font-size-lg, 1rem);
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 24px !important;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn-left {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 24px !important;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn-middle {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 28px !important;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav-btn-right {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
padding: 8px 20px !important;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-box {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
height: 42px;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-input {
|
2026-07-20 03:26:17 +04:00
|
|
|
|
font-size: var(--font-size-xl, 1.125rem);
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-header-container {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
gap: 12px;
|
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 02:59:26 +04:00
|
|
|
|
// Hide desktop nav
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-nav {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
display: none;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 02:59:26 +04:00
|
|
|
|
// Hide desktop language selector
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-lang-desktop {
|
2026-06-10 17:49:22 +04:00
|
|
|
|
display: none !important;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-wrapper {
|
2026-02-14 02:34:11 +04:00
|
|
|
|
display: none;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-search-mobile {
|
2026-02-14 02:34:11 +04:00
|
|
|
|
display: flex;
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-menu-toggle {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-logo ::ng-deep .logo-img {
|
2026-02-14 00:45:17 +04:00
|
|
|
|
width: 100px;
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
}
|
2026-02-14 02:59:26 +04:00
|
|
|
|
|
2026-07-19 23:22:40 +04:00
|
|
|
|
// Mobile Menu Backdrop – full-screen, blurred, blocks interaction
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-menu-backdrop {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
display: block;
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.35);
|
|
|
|
|
|
backdrop-filter: blur(6px);
|
|
|
|
|
|
-webkit-backdrop-filter: blur(6px);
|
|
|
|
|
|
z-index: 998;
|
2026-07-09 02:29:12 +04:00
|
|
|
|
animation: platform-fade-in 0.25s ease;
|
2026-02-14 02:59:26 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Mobile Menu Panel
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-menu {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 84px;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
width: 485px;
|
|
|
|
|
|
max-width: 100vw;
|
|
|
|
|
|
padding: 28px 20px 32px;
|
|
|
|
|
|
background: rgba(245, 242, 249, 0.93);
|
|
|
|
|
|
border-radius: 0 0 13px 13px;
|
|
|
|
|
|
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
|
|
|
|
|
|
z-index: 999;
|
|
|
|
|
|
box-sizing: border-box;
|
2026-07-19 23:22:40 +04:00
|
|
|
|
|
2026-02-14 02:59:26 +04:00
|
|
|
|
// Hide by default, animate in
|
|
|
|
|
|
max-height: 0;
|
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
&.platform-mobile-menu-open {
|
2026-06-10 17:49:22 +04:00
|
|
|
|
max-height: calc(100dvh - 84px);
|
2026-02-14 02:59:26 +04:00
|
|
|
|
padding: 28px 20px 32px;
|
|
|
|
|
|
opacity: 1;
|
2026-06-10 17:49:22 +04:00
|
|
|
|
overflow-y: auto;
|
2026-02-14 02:59:26 +04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-item {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
width: 395px;
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-controls {
|
2026-06-10 17:49:22 +04:00
|
|
|
|
margin-top: 4px;
|
2026-02-14 02:59:26 +04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-menu {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
width: 100vw;
|
|
|
|
|
|
border-radius: 0 0 13px 13px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
.platform-mobile-item {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-09 02:29:12 +04:00
|
|
|
|
@keyframes platform-fade-in {
|
2026-02-14 02:59:26 +04:00
|
|
|
|
from { opacity: 0; }
|
|
|
|
|
|
to { opacity: 1; }
|
2026-02-14 00:45:17 +04:00
|
|
|
|
}
|