.site-shell,
.user-shell {
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.user-shell {
    background:
        radial-gradient(circle at top center, rgba(34, 199, 169, 0.08), transparent 18%),
        linear-gradient(180deg, #040a11 0%, #08111b 42%, #09131d 100%);
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.home-header,
.user-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    backdrop-filter: blur(16px);
    background: rgba(5, 11, 18, 0.82);
    border-bottom: 1px solid var(--border-dark);
}

.logo,
.logo-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-box div,
.logo div {
    display: grid;
    gap: 2px;
}

.logo strong,
.logo-box strong {
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
}

.logo small,
.logo-box small,
.account-pill small {
    color: var(--text-muted);
    font-size: 12px;
}

.account-role-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(34, 199, 169, 0.14);
    color: var(--cyan-400);
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.brand-avatar {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 24px rgba(0,0,0,0.24);
    transform: scale(1.55);
    transform-origin: center;
}

.user-topbar-global .brand-avatar {
    object-fit: contain;
    background: transparent;
    padding: 0;
}

.header-chip,
.account-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(34, 199, 169, 0.16);
    color: var(--text-main);
}

.header-chip i {
    color: var(--cyan-400);
}

.account-pill {
    justify-content: space-between;
    min-width: 148px;
    max-width: 188px;
}

.account-pill span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--cyan-500);
    color: #06251f;
    font-weight: 700;
}

.account-pill > div {
    min-width: 0;
    flex: 1 1 auto;
    display: grid;
    gap: 2px;
}

.account-pill small,
.account-pill strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-top-nav,
.topbar-actions,
.topbar-icon-link {
    display: none;
}

.topbar-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.mobile-only-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    color: #fff;
}

.mobile-account-toggle {
    border: 1px solid rgba(255,255,255,0.14);
    cursor: pointer;
}

.mobile-account-toggle > i,
.topbar-profile > i {
    color: var(--text-muted);
    font-size: 12px;
}

.topbar-profile-shell {
    position: relative;
}

.desktop-account-toggle {
    cursor: pointer;
}

.desktop-user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 70;
    width: min(280px, calc(100vw - 24px));
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    background: #111a31;
    box-shadow: 0 22px 44px rgba(0,0,0,0.3);
}

.desktop-user-menu[hidden] {
    display: none;
}

.mobile-user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    z-index: 60;
    width: min(274px, calc(100vw - 16px));
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    background: #111a31;
    box-shadow: 0 22px 44px rgba(0,0,0,0.3);
}

.mobile-user-menu[hidden] {
    display: none;
}

.mobile-user-link,
.mobile-user-expand {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 4px;
    color: rgba(248, 251, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
}

.mobile-user-link i,
.mobile-user-expand > i {
    width: 18px;
    color: rgba(248, 251, 255, 0.86);
    text-align: center;
}

.mobile-user-link-copy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.mobile-user-expand {
    justify-content: space-between;
    border: 0;
    background: transparent;
}

.mobile-user-group {
    display: grid;
}

.mobile-user-submenu {
    display: grid;
    gap: 2px;
    margin: 2px 0 8px 9px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.16);
}

.mobile-user-submenu[hidden] {
    display: none;
}

.mobile-user-submenu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: rgba(248, 251, 255, 0.74);
    font-size: 14px;
    font-weight: 600;
}

.mobile-user-divider {
    height: 1px;
    margin: 10px 0 4px;
    background: rgba(255,255,255,0.14);
}

.mobile-user-link-danger {
    color: rgba(248, 251, 255, 0.92);
}

.page-breadcrumb-head {
    display: grid;
    gap: 8px;
    padding: 4px 2px 0;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b6c5d4;
    font-size: 14px;
    font-weight: 600;
}

.page-breadcrumb a {
    color: #8ea0b3;
}

.page-breadcrumb i {
    color: rgba(255,255,255,0.34);
    font-size: 11px;
}

.page-breadcrumb span {
    color: #f3f8fc;
}

.page-breadcrumb-note {
    margin: 0;
    color: #7f93a6;
    font-size: 12px;
}

.page-breadcrumb-head-boxed {
    margin-top: 12px;
    margin-bottom: 14px;
}

.home-main {
    padding: 16px 14px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 18px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    background:
        linear-gradient(135deg, rgba(6, 19, 31, 0.82), rgba(15, 37, 55, 0.74)),
        url("../images/hero.jpg") center/cover no-repeat;
    box-shadow: var(--shadow-soft);
}

.home-cover-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 22px;
    line-height: 0;
}

.home-cover-banner img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter .45s ease, transform .45s ease;
    filter: saturate(0.92);
}

.home-cover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(14px, 2vw, 24px);
    background:
        linear-gradient(180deg, rgba(3, 11, 20, 0.18) 0%, rgba(3, 11, 20, 0.34) 55%, rgba(3, 11, 20, 0.62) 100%),
        linear-gradient(90deg, rgba(3, 11, 20, 0.42) 0%, rgba(3, 11, 20, 0.08) 42%, rgba(3, 11, 20, 0.42) 100%);
    backdrop-filter: blur(4px);
}

.home-cover-overlay-bottom {
    max-width: min(560px, 52vw);
    display: grid;
    gap: 20px;
}

.banner-rotator {
    display: grid;
    gap: 14px;
}

.banner-rotator-kicker,
.banner-rotator-category,
.banner-rotator-name,
.banner-rotator-price {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .72s cubic-bezier(0.22, 1, 0.36, 1), transform .72s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner-rotator.is-switching .banner-rotator-kicker,
.banner-rotator.is-switching .banner-rotator-category,
.banner-rotator.is-switching .banner-rotator-name,
.banner-rotator.is-switching .banner-rotator-price {
    opacity: 1;
    transform: translateY(0);
}

.banner-rotator-kicker {
    display: grid;
    gap: 20px;
    justify-items: start;
}

.banner-rotator-line {
    display: block;
    width: 56px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.banner-rotator-category {
    color: rgba(245, 249, 255, 0.92);
    font-size: clamp(15px, 1.3vw, 22px);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.banner-rotator-name {
    color: #ffffff;
    font-size: clamp(24px, 3vw, 46px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    max-width: 12ch;
    margin-top: 2px;
}

.banner-rotator-price {
    color: #ffbb35;
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 800;
    letter-spacing: 0;
}

.home-cover-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-cover-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid rgba(58, 212, 198, 0.24);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #effbff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.home-cover-cta i {
    font-size: 15px;
}

.home-cover-cta-primary {
    background: linear-gradient(180deg, #35e2cf, #24c8bb);
    color: #042622;
    box-shadow: 0 10px 28px rgba(36, 200, 187, 0.28);
}

.home-cover-cta-secondary {
    background: rgba(6, 18, 31, 0.66);
    backdrop-filter: blur(10px);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin: 2px 0 30px;
}

.trust-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 114px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(126, 143, 174, 0.14);
    background: linear-gradient(180deg, rgba(25, 32, 47, 0.98), rgba(19, 25, 38, 0.98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    overflow: hidden;
}

.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 36%);
    pointer-events: none;
}

.trust-card-icon,
.trust-card-copy {
    position: relative;
    z-index: 1;
}

.trust-card-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.035);
}

.trust-card-icon i {
    font-size: 24px;
}

.trust-card-copy {
    display: grid;
    gap: 8px;
}

.trust-card-copy h3 {
    margin: 0;
    color: #f7fbff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
}

.trust-card-copy p {
    margin: 0;
    color: rgba(221, 229, 240, 0.72);
    font-size: 13px;
    line-height: 1.45;
}

.trust-card-violet .trust-card-icon {
    background: rgba(115, 103, 226, 0.14);
}

.trust-card-violet .trust-card-icon i {
    color: #d7d2ff;
}

.trust-card-cyan .trust-card-icon {
    background: rgba(78, 176, 232, 0.14);
}

.trust-card-cyan .trust-card-icon i {
    color: #8fdcff;
}

.trust-card-green .trust-card-icon {
    background: rgba(79, 205, 158, 0.14);
}

.trust-card-green .trust-card-icon i {
    color: #8fe7c0;
}

.trust-card-gold .trust-card-icon {
    background: rgba(225, 176, 71, 0.14);
}

.trust-card-gold .trust-card-icon i {
    color: #f3cf7d;
}

.home-cover-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.home-cover-feature-card {
    position: relative;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(72, 132, 180, 0.16);
    background: linear-gradient(180deg, rgba(7, 16, 28, 0.82), rgba(5, 12, 22, 0.78));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.home-cover-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 38%);
    pointer-events: none;
}

.home-cover-feature-card:hover {
    transform: translateY(-1px);
    border-color: rgba(86, 184, 224, 0.24);
}

.home-cover-feature-card i {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    color: #4be6d9;
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.home-cover-feature-card span {
    position: relative;
    z-index: 1;
    color: rgba(248, 251, 255, 0.96);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-cover-feature-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(12, 26, 39, 0.88), rgba(6, 17, 29, 0.84));
    border-color: rgba(54, 198, 192, 0.18);
}

.home-cover-feature-card:nth-child(1) i {
    color: #45ddd2;
    background: rgba(52, 217, 203, 0.1);
}

.home-cover-feature-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(19, 24, 43, 0.88), rgba(8, 13, 28, 0.84));
    border-color: rgba(88, 146, 255, 0.18);
}

.home-cover-feature-card:nth-child(2) i {
    color: #66b4ff;
    background: rgba(71, 127, 255, 0.1);
}

.home-cover-feature-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(13, 34, 38, 0.88), rgba(6, 18, 24, 0.84));
    border-color: rgba(56, 209, 182, 0.18);
}

.home-cover-feature-card:nth-child(3) i {
    color: #4de2d0;
    background: rgba(47, 208, 193, 0.1);
}

.home-cover-feature-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(34, 27, 18, 0.88), rgba(18, 14, 9, 0.84));
    border-color: rgba(240, 190, 100, 0.18);
}

.home-cover-feature-card:nth-child(4) i {
    color: #f2c36f;
    background: rgba(242, 195, 111, 0.1);
}

.home-cover-copy,
.home-cover-visual {
    align-self: stretch;
}

.home-cover-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 620px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7, 16, 28, 0.46), rgba(7, 16, 28, 0.68));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.home-cover-copy h1 {
    margin: 14px 0 10px;
    max-width: 9ch;
    font-size: clamp(30px, 5.6vw, 54px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.home-cover-copy p {
    max-width: 52ch;
    font-size: 15px;
    line-height: 1.7;
}

.home-cover-tags {
    margin-top: 20px;
}

.home-cover-tags span {
    background: rgba(7, 16, 28, 0.52);
    border-color: rgba(255,255,255,0.1);
}

.home-cover-actions {
    margin-top: 22px;
}

.home-cover-actions .btn-primary {
    min-width: 170px;
}

.home-cover-actions .btn-secondary {
    border-color: rgba(255,255,255,0.1);
    background: rgba(9, 19, 31, 0.5);
}

.home-cover-visual {
    align-items: end;
}

.home-cover-grid {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
}

.home-cover-panel {
    background: linear-gradient(180deg, rgba(7, 16, 28, 0.7), rgba(7, 16, 28, 0.54));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.home-cover-panel span {
    color: rgba(220, 231, 245, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-cover-panel strong {
    line-height: 1.35;
}

.home-cover-panel-feature {
    background:
        linear-gradient(180deg, rgba(27, 91, 171, 0.24), rgba(7, 16, 28, 0.76)),
        linear-gradient(180deg, rgba(7, 16, 28, 0.74), rgba(7, 16, 28, 0.58));
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 19, 31, 0.1), rgba(6, 19, 31, 0.6)),
        radial-gradient(circle at top right, rgba(57, 225, 194, 0.18), transparent 26%);
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(34, 199, 169, 0.16);
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.hero-copy h1 {
    margin: 12px 0 8px;
    color: #fff;
    font-size: clamp(30px, 7vw, 44px);
    line-height: 1;
    text-shadow: 0 0 18px rgba(57, 225, 194, 0.08);
}

.hero-copy p {
    margin: 0;
    color: rgba(248, 251, 255, 0.84);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    color: rgba(248, 251, 255, 0.92);
    font-size: 13px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.hero-stats div {
    padding: 16px 14px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.hero-stats strong {
    display: block;
    font-size: 18px;
    color: #fff;
}

.hero-stats span {
    color: var(--text-muted);
    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-visual {
    display: grid;
}

.visual-grid {
    display: grid;
    gap: 12px;
}

.glow-card {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.glow-card span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

.glow-card strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 20px;
}

.product-grid {
    display: grid;
    gap: 16px;
}

.product-card {
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(11, 27, 41, 0.92);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, border-color .18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 199, 169, 0.2);
}

.product-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #10273a, #17374d);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.thumb-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(6, 19, 31, 0.82);
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.08);
}

.product-body {
    display: grid;
    gap: 10px;
}

.product-body span {
    color: var(--text-muted);
    font-size: 13px;
}

.product-body h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-row strong {
    color: #fff;
    font-size: 18px;
}

.price-row small {
    color: var(--text-muted);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-meta mark {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--cyan-soft);
    color: var(--cyan-400);
    font-size: 12px;
    font-weight: 700;
}

.content-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    background: rgba(11, 27, 41, 0.92);
    box-shadow: var(--shadow-soft);
}

.content-card-center {
    justify-items: center;
    text-align: center;
}

.content-card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
}

.content-card p {
    margin: 0;
    color: rgba(248, 251, 255, 0.78);
    line-height: 1.7;
    max-width: 760px;
}

.content-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-head {
    display: flex;
    justify-content: center;
    margin: 24px 0 18px;
    text-align: center;
}

.section-head > div {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.section-head-featured {
    margin: 26px 0 20px;
    justify-content: flex-start;
    text-align: left;
    overflow: visible;
}

.section-head-featured-shell {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.section-head-featured-copy {
    display: grid;
    gap: 0;
    justify-items: start;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
    overflow: visible;
    padding: 4px 0 6px;
}

.section-head-featured h2 {
    margin: 0;
    display: block;
    overflow: visible;
}

.section-head-featured-title {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    font-size: clamp(14px, 1.55vw, 24px);
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.24;
    text-transform: uppercase;
    text-shadow: none;
    overflow: visible;
    padding: 7px 0 3px;
    min-height: 46px;
    white-space: nowrap;
}

.section-head-featured-title-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:
        radial-gradient(circle at top, rgba(82, 243, 227, 0.22), transparent 68%),
        linear-gradient(180deg, rgba(15, 34, 44, 0.98) 0%, rgba(8, 18, 28, 0.94) 100%);
    border: 1px solid rgba(73, 234, 216, 0.3);
    box-shadow: 0 10px 20px rgba(5, 14, 22, 0.24);
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

.section-head-featured-title-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(73, 234, 216, 0.18), transparent 58%);
    pointer-events: none;
}

.section-head-featured-title-icon i {
    font-size: 15px;
    color: #49ead8;
    filter: drop-shadow(0 0 12px rgba(73, 234, 216, 0.2));
}

.section-head-featured-title-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-width: 0;
    line-height: 1.24;
    overflow: visible;
    padding-top: 0;
    position: relative;
    top: 2px;
}

.section-head-featured-title-main {
    display: inline-block;
    color: #f9fbff;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.24);
    line-height: 1.24;
    padding-top: 0;
}

.section-head-featured-title-accent {
    display: inline-block;
    background: linear-gradient(90deg, #56f0dc 0%, #2fd4f2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    line-height: 1.24;
    padding-top: 0;
    padding-bottom: 1px;
    transform: none;
    -webkit-text-fill-color: transparent;
}

.section-head-featured-link {
    flex: 0 0 auto;
}

@media (max-width: 719px) {
    .section-head-featured-shell {
        gap: 12px;
        padding: 0;
    }

    .section-head-featured-copy,
    .section-head-featured h2 {
        justify-items: start;
        text-align: left;
    }

    .product-thumb {
        padding: 0;
        background:
            radial-gradient(circle at top, rgba(72, 132, 255, 0.14), transparent 52%),
            linear-gradient(145deg, #101d2d, #182b3e);
    }

    .product-thumb img {
        object-fit: cover;
        object-position: center center;
        border-radius: 0;
        background: transparent;
    }

    .home-header,
    .user-topbar {
        gap: 10px;
        padding: 10px 12px;
    }

    .brand-avatar {
        width: 40px;
        height: 40px;
        transform: scale(1.16);
    }

    .logo strong,
    .logo-box strong {
        font-size: 14px;
    }

    .account-pill {
        min-width: 0;
        width: min(232px, calc(100vw - 78px));
        max-width: min(232px, calc(100vw - 78px));
        gap: 8px;
        padding: 0 10px 0 8px;
        flex: 0 0 auto;
    }

    .account-pill span {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .account-pill small,
    .account-pill strong {
        max-width: none;
    }

    .mobile-account-toggle {
        min-height: 42px;
    }

    .mobile-account-toggle > div {
        min-width: 0;
    }

    .mobile-account-toggle > i {
        flex: 0 0 10px;
    }

    .mobile-only-icon {
        width: 42px;
        height: 42px;
    }

    .mobile-user-menu {
        right: 12px;
        width: min(300px, calc(100vw - 24px));
        padding: 12px;
    }

    .page-breadcrumb-head,
    .page-breadcrumb-head-boxed {
        padding: 0;
    }

    .page-breadcrumb {
        flex-wrap: wrap;
        gap: 8px 10px;
        font-size: 13px;
    }

    .page-breadcrumb-note {
        font-size: 11px;
        line-height: 1.5;
    }

    .trust-strip {
        display: none;
    }

    .trust-card {
        min-height: 88px;
        gap: 14px;
        padding: 16px;
        border-radius: 18px;
    }

    .trust-card-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .trust-card-icon i {
        font-size: 20px;
    }

    .trust-card-copy h3 {
        font-size: 14px;
    }

    .trust-card-copy p {
        font-size: 11px;
    }

    .home-cover-banner {
        margin-bottom: 20px;
    }

    .home-cover-banner img {
        min-height: 340px;
        object-fit: cover;
        object-position: 38% 22%;
    }

    .home-cover-overlay-bottom {
        max-width: 88%;
        gap: 22px;
    }

    .banner-rotator {
        gap: 18px;
    }

    .banner-rotator-kicker {
        gap: 20px;
    }

    .banner-rotator-line {
        width: 42px;
        height: 4px;
    }

    .banner-rotator-category {
        font-size: 12px;
        letter-spacing: 0;
    }

    .banner-rotator-name {
        font-size: clamp(22px, 8.2vw, 40px);
        line-height: 1;
        max-width: 11ch;
    }

    .banner-rotator-price {
        font-size: 15px;
    }

    .home-cover-overlay {
        justify-content: flex-end;
        padding: 10px 10px 12px;
        background:
            linear-gradient(180deg, rgba(3, 11, 20, 0.08) 0%, rgba(3, 11, 20, 0.16) 48%, rgba(3, 11, 20, 0.42) 100%),
            linear-gradient(90deg, rgba(3, 11, 20, 0.2) 0%, rgba(3, 11, 20, 0.04) 42%, rgba(3, 11, 20, 0.2) 100%);
        backdrop-filter: blur(2px);
    }

    .home-cover-cta-row {
        gap: 10px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-cover-cta {
        min-height: 40px;
        width: 100%;
        padding: 0 12px;
        font-size: 11px;
        letter-spacing: 0.03em;
    }

    .home-cover-feature-row {
        display: none;
    }

    .home-cover-feature-card {
        min-height: 50px;
        padding: 0 10px;
        gap: 8px;
    }

    .home-cover-feature-card i {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .home-cover-feature-card span {
        font-size: 9px;
        letter-spacing: 0.03em;
    }

    .section-head-featured-shell {
        gap: 12px;
    }

    .section-head-featured-title {
        font-size: 15px;
        gap: 7px;
    }

    .section-head-featured-title-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .section-head-featured-title-icon i {
        font-size: 15px;
    }

    .section-head-featured-title-text {
        gap: 4px;
    }

    .bottom-nav {
        width: calc(100% - 16px);
        bottom: calc(8px + env(safe-area-inset-bottom));
        padding: 6px;
        gap: 3px;
    }

    .bottom-nav a {
        min-height: 50px;
        font-size: 10px;
    }
}

@media (min-width: 720px) and (max-width: 1120px) {
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .home-cover-feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.content-list {
    display: grid;
    gap: 14px;
}

.content-list-item {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.content-list-item strong {
    color: #fff;
}

.content-list-item span {
    color: var(--text-muted);
    line-height: 1.6;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 50;
    width: calc(100% - 24px);
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 7px;
    border-radius: var(--radius-lg);
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(6, 19, 31, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

.bottom-nav a {
    min-height: 50px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 4px 0;
    border-radius: 10px;
    color: rgba(248, 251, 255, 0.68);
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.bottom-nav a i {
    font-size: 16px;
}

.bottom-nav a.active {
    background: var(--cyan-soft);
    color: var(--cyan-400);
}

@media (min-width: 720px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .home-header,
    .user-topbar,
    .home-main {
        padding-left: 22px;
        padding-right: 22px;
    }

    .section-head h2 {
        font-size: 40px;
    }

    .user-topbar-global {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 14px;
    }

    .desktop-top-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
        min-width: 0;
    }

    .desktop-top-link {
        position: relative;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0 11px;
        border-radius: 11px;
        border: 1.5px solid rgba(255,255,255,0.1);
        background:
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
            linear-gradient(180deg, rgba(7, 15, 24, 0.94), rgba(10, 19, 29, 0.94));
        color: rgba(248, 251, 255, 0.82);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .03em;
        white-space: nowrap;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.04),
            0 10px 24px rgba(0,0,0,0.18);
        transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    }

    .desktop-top-link::after {
        content: "";
        position: absolute;
        inset: -1.5px;
        border-radius: inherit;
        padding: 1.5px;
        background:
            linear-gradient(180deg,
                rgba(255,255,255,0.08) 0%,
                rgba(255,255,255,0.04) 68%,
                rgba(57, 225, 194, 0.98) 84%,
                rgba(34, 199, 169, 1) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity .18s ease;
        pointer-events: none;
    }

    .desktop-top-link:hover {
        transform: translateY(-1px);
        border-color: rgba(57, 225, 194, 0.18);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.05),
            0 14px 28px rgba(0,0,0,0.22);
    }

    .desktop-top-link i {
        color: var(--text-muted);
        font-size: 14px;
    }

    .desktop-top-link.active {
        border-color: transparent;
        background:
            linear-gradient(180deg, rgba(7, 15, 24, 0.94), rgba(10, 19, 29, 0.94));
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.08),
            0 14px 30px rgba(0,0,0,0.24);
        color: #fff;
    }

    .desktop-top-link.active::after {
        opacity: 1;
    }

    .desktop-top-link.active i {
        color: var(--cyan-400);
    }

    .topbar-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: end;
    }

    .topbar-icon-link {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.02);
        color: #fff;
    }

    .topbar-profile {
        min-width: 168px;
        max-width: 196px;
        padding: 6px 12px;
        gap: 10px;
    }

    .topbar-profile > i {
        color: var(--text-muted);
        font-size: 12px;
    }

    .topbar-profile > div {
        text-align: left;
    }

    .topbar-mobile-actions,
    .mobile-user-menu {
        display: none;
    }

    .desktop-user-menu {
        display: grid;
    }

    .desktop-user-menu[hidden] {
        display: none;
    }

    .bottom-nav {
        display: none;
    }

    .user-shell {
        padding-bottom: 0;
    }

    .hero-card {
        grid-template-columns: 1.25fr .75fr;
        align-items: end;
    }

    .home-cover-banner {
        padding: 18px;
    }

    .home-cover-copy {
        padding: 18px;
    }
}
