.csh-site-header,
.csh-site-footer {
    position: relative;
    z-index: 2;
}

.csh-item-card__media-link,
.csh-item-card__title-link {
    color: inherit;
    text-decoration: none;
}

.csh-item-card__media-link {
    display: block;
}

.csh-item-card__title-link:hover,
.csh-item-card__title-link:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.16em;
}

.csh-site-header {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 40;
}

.csh-site-header__inner,
.csh-site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.csh-site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(260px, 340px) minmax(0, 1fr);
    min-height: 88px;
    gap: 18px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.csh-site-branding {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.csh-site-branding .custom-logo-link {
    display: inline-flex;
    flex-shrink: 0;
    width: 34px;
    overflow: hidden;
}

.csh-site-branding .custom-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: none;
    max-height: none;
}

.csh-site-branding__copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.csh-site-title {
    display: inline-block;
    color: var(--csh-color-ink);
    text-decoration: none;
    font-size: clamp(1.1rem, 1.5vw, 1.36rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.csh-site-tagline {
    margin: 0;
    color: var(--csh-color-ink-soft);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-site-nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.csh-site-nav a {
    text-decoration: none;
    font-weight: 600;
}

.csh-site-header__tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 18px;
}

.csh-site-search {
    width: 100%;
    max-width: 340px;
    justify-self: center;
}

.csh-search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.csh-search-form__label {
    display: block;
    width: 100%;
}

.csh-search-form__field {
    min-width: 0;
    width: 100%;
    height: 52px;
    padding: 0 56px 0 20px;
    border: 1px solid var(--csh-input-border);
    border-radius: 999px;
    background: var(--csh-input-bg);
    color: var(--csh-color-ink);
    font: inherit;
}

.csh-search-form__button {
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--csh-color-accent);
    cursor: pointer;
    transform: translateY(-50%);
}

.csh-site-header__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.csh-site-header__contacts,
.csh-site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.csh-site-contact,
.csh-site-action,
.csh-site-menu > summary,
.csh-site-theme-toggle,
.csh-site-nav--panel a {
    text-decoration: none;
}

.csh-site-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.csh-site-contact__icon,
.csh-site-action,
.csh-site-menu > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.csh-site-contact__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.csh-site-contact__value {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.csh-site-action,
.csh-site-menu > summary {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
}

.csh-site-header__actions {
    flex-shrink: 0;
}

.csh-site-action svg,
.csh-site-contact__icon svg,
.csh-search-form__button svg,
.csh-site-theme-toggle__icon svg {
    width: 20px;
    height: 20px;
}

.csh-site-menu {
    position: relative;
}

.csh-site-menu > summary::-webkit-details-marker {
    display: none;
}

.csh-site-menu__panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(360px, calc(100vw - 28px));
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    z-index: 30;
}

.csh-site-menu__header {
    display: grid;
    gap: 4px;
}

.csh-site-menu__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.csh-site-menu__title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
}

.csh-site-nav--panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
}

.csh-site-nav--panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
}

.csh-site-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.csh-site-action--theme {
    padding: 0;
}

.csh-site-action--theme .csh-site-theme-toggle__content {
    justify-content: center;
    gap: 0;
    pointer-events: none;
}

.csh-site-action--theme .csh-site-theme-toggle__state,
.csh-site-action--theme .csh-site-theme-toggle__label {
    display: none;
}

.csh-site-theme-toggle__content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.csh-site-theme-toggle__icons {
    position: relative;
    width: 20px;
    height: 20px;
}

.csh-site-theme-toggle__icon {
    position: absolute;
    inset: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.csh-site-theme-toggle__icon--sun {
    opacity: 0;
    transform: scale(0.72) rotate(-18deg);
}

html[data-csh-theme="dark"] .csh-site-theme-toggle__icon--sun {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

html[data-csh-theme="dark"] .csh-site-theme-toggle__icon--moon {
    opacity: 0;
    transform: scale(0.72) rotate(18deg);
}

.csh-site-theme-toggle__state {
    position: relative;
    width: 46px;
    height: 26px;
    border-radius: 999px;
    flex-shrink: 0;
}

.csh-site-theme-toggle__state::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

html[data-csh-theme="dark"] .csh-site-theme-toggle__state::after {
    transform: translateX(20px);
}

.csh-site-menu__contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.csh-site-contact--compact {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 18px;
}

.csh-home-page {
    display: grid;
    gap: 40px;
    padding: 28px 0 72px;
}

.csh-home-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    color: #ffffff;
}

.csh-home-hero__backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(3, 35, 49, 0.8), rgba(22, 163, 74, 0.6)),
        url('https://www.srilanka.travel/image/travel-new-images/Cover-banner.jpg');
    background-position: center;
    background-size: cover;
    mix-blend-mode: multiply;
}

.csh-home-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 720px;
    padding: 78px 40px 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 56px;
}

.csh-home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    font-size: 0.8rem;
    font-weight: 700;
}

.csh-home-hero__dot,
.csh-home-hero__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.9);
}

.csh-home-hero__badge-pill {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
}

.csh-home-hero__title {
    margin: 0;
    font-size: clamp(3.6rem, 7vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.csh-home-hero__title span {
    display: block;
    background: linear-gradient(120deg, #ffffff, #a7f3d0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.csh-home-hero__body {
    max-width: 34rem;
    margin: 26px 0 0;
    color: #f3f4f6;
    font-size: 1.16rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.csh-home-hero__chips,
.csh-home-hero__actions,
.csh-home-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.csh-home-hero__chips {
    margin-top: 28px;
}

.csh-home-hero__actions {
    margin-top: 32px;
}

.csh-home-hero__trust {
    margin-top: 28px;
    gap: 18px;
    color: #e5e7eb;
    font-size: 0.92rem;
}

.csh-home-hero__chip,
.csh-home-hero__button,
.csh-home-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.csh-home-hero__chip {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-size: 0.92rem;
}

.csh-home-hero__button {
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.csh-home-hero__button:hover {
    transform: translateY(-2px);
}

.csh-home-hero__button--primary {
    background: #ffffff;
    color: #0e7490;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.csh-home-hero__button--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.csh-home-hero__button--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

.csh-home-hero__trust-item {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.csh-home-hero__aside {
    position: relative;
}

.csh-home-hero__panel,
.csh-home-hero__float {
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.csh-home-hero__panel {
    padding: 28px;
}

.csh-home-hero__panel-top,
.csh-home-hero__float-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.csh-home-hero__panel-kicker {
    margin: 0 0 6px;
    color: #94a3b8;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.csh-home-hero__panel-title,
.csh-home-hero__float-title {
    margin: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.csh-home-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-size: 0.82rem;
    font-weight: 700;
}

.csh-home-hero__spark {
    margin: 22px 0 24px;
    height: 64px;
}

.csh-home-hero__spark svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.csh-home-hero__spark path {
    fill: none;
    stroke: #38bdf8;
    stroke-width: 3;
    stroke-linecap: round;
}

.csh-home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.csh-home-hero__stat {
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.csh-home-hero__stat-label,
.csh-home-hero__stat-hint {
    color: #94a3b8;
    font-size: 0.72rem;
}

.csh-home-hero__stat-value {
    margin-top: 8px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
}

.csh-home-hero__panel-foot {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.csh-home-hero__float {
    position: absolute;
    right: -18px;
    bottom: -26px;
    width: 230px;
    padding: 18px;
    animation: cshFloat 6s ease-in-out infinite;
}

.csh-home-hero__float-title {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.csh-home-hero__float-row {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
    color: #d2dae5;
    font-size: 0.82rem;
}

.csh-home-hero__float-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.csh-home-hero__pill {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: #4ade80;
    font-size: 0.68rem;
    font-weight: 700;
}

.csh-home-about,
.csh-home-services,
.csh-home-benefits,
.csh-home-testimonials {
    padding: 0 0 8px;
}

.csh-home-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 56px;
    align-items: start;
}

.csh-home-about__badge,
.csh-home-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.csh-home-about__title,
.csh-home-section-title {
    margin: 18px 0 0;
    color: #0f172a;
    font-size: clamp(2.2rem, 4.6vw, 3.3rem);
    line-height: 1.05;
}

.csh-home-about__title span {
    background: linear-gradient(120deg, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.csh-home-about__body,
.csh-home-section-body {
    max-width: 42rem;
    margin: 14px 0 0;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

.csh-home-about__features {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.csh-home-about__feature,
.csh-home-benefits__card,
.csh-home-testimonials__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.csh-home-about__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
}

.csh-home-about__feature h3,
.csh-home-benefits__card h3,
.csh-home-services__card h3,
.csh-home-testimonials__card h3 {
    margin: 0 0 6px;
    color: #0f172a;
    font-size: 1.05rem;
}

.csh-home-about__feature p,
.csh-home-benefits__card p,
.csh-home-services__card p,
.csh-home-testimonials__card p,
.csh-home-about__panel-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.csh-home-about__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.csh-home-about__feature-icon.is-blue { background: #eff6ff; color: #3b82f6; }
.csh-home-about__feature-icon.is-green { background: #f0fdf4; color: #22c55e; }
.csh-home-about__feature-icon.is-purple { background: #f3e8ff; color: #a855f7; }

.csh-home-about__panel {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.csh-home-about__panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.csh-home-about__panel-kicker {
    margin: 0 0 6px;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.csh-home-about__panel-top h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.35rem;
}

.csh-home-about__panel-pill {
    padding: 4px 10px;
    border-radius: 999px;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 0.72rem;
    font-weight: 700;
}

.csh-home-about__panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.csh-home-about__panel-card {
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.csh-home-about__panel-card span {
    display: block;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.csh-home-about__panel-card h4 {
    margin: 0 0 6px;
    color: #334155;
    font-size: 0.98rem;
}

.csh-home-about__info-box {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    padding: 16px;
    border-radius: 14px;
    background: #eff6ff;
    border: 1px dashed #bfdbfe;
    color: #1e40af;
}

.csh-home-about__info-box p {
    margin: 0;
}

.csh-home-section-head {
    margin-bottom: 24px;
}

.csh-home-section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: end;
    gap: 22px;
}

.csh-home-section-body--compact {
    margin: 0;
}

.csh-home-services {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 82px 0 92px;
    background:
        radial-gradient(circle at top, rgba(36, 50, 71, 0.16), transparent 52%),
        #101010;
}

.csh-home-services .csh-home-section-head {
    margin-bottom: 34px;
    text-align: center;
}

.csh-home-services .csh-home-section-kicker {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.csh-home-services .csh-home-section-title {
    color: #ffffff;
}

.csh-home-services__grid,
.csh-home-benefits__grid,
.csh-home-testimonials__grid {
    display: grid;
    gap: 22px;
}

.csh-home-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.csh-home-services__card {
    position: relative;
    display: flex;
    min-height: 390px;
    align-items: flex-end;
    padding: 28px;
    border-radius: 24px;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.csh-home-services__card::before,
.csh-home-services__card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
}

.csh-home-services__card::before {
    background-image: var(--csh-service-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.csh-home-services__card::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(3, 7, 18, 0.16) 0%, rgba(3, 7, 18, 0.4) 42%, rgba(3, 7, 18, 0.88) 100%),
        linear-gradient(180deg, transparent 0%, rgba(12, 12, 12, 0.36) 100%);
}

.csh-home-services__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.csh-home-services__card:hover::before {
    transform: scale(1.06);
}

.csh-home-services__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 1.55rem;
}

.csh-home-services__content {
    display: grid;
    gap: 8px;
    width: 100%;
}

.csh-home-services__card h3 {
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.csh-home-services__card p {
    max-width: 21rem;
    color: rgba(255, 255, 255, 0.82);
}

.csh-home-services__link {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.csh-home-services__link::after {
    content: '→';
    margin-left: 8px;
}

.csh-home-benefits__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.csh-home-benefits {
    position: relative;
    overflow: hidden;
}

.csh-home-benefits::before {
    content: '';
    position: absolute;
    inset: 10% 0 auto;
    height: 300px;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.12), transparent 62%);
    pointer-events: none;
}

.csh-home-benefits__card,
.csh-home-testimonials__card {
    padding: 24px;
}

.csh-home-benefits__card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.csh-home-benefits__card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.85), rgba(14, 165, 233, 0));
}

.csh-home-benefits__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.csh-home-benefits__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.06);
    font-size: 1.5rem;
}

.csh-home-benefits__step {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.csh-home-benefits__eyebrow {
    margin: 0 0 8px;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.csh-home-benefits__card h3 {
    font-size: 1.18rem;
}

.csh-home-benefits__card p {
    color: #475569;
}

.csh-home-benefits__card--emerald::before {
    background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, 0));
}

.csh-home-benefits__card--blue::before {
    background: linear-gradient(90deg, #3b82f6, rgba(59, 130, 246, 0));
}

.csh-home-benefits__card--violet::before {
    background: linear-gradient(90deg, #8b5cf6, rgba(139, 92, 246, 0));
}

.csh-home-benefits__card--amber::before {
    background: linear-gradient(90deg, #f59e0b, rgba(245, 158, 11, 0));
}

.csh-home-benefits__card--emerald .csh-home-benefits__icon {
    background: rgba(16, 185, 129, 0.12);
}

.csh-home-benefits__card--blue .csh-home-benefits__icon {
    background: rgba(59, 130, 246, 0.12);
}

.csh-home-benefits__card--violet .csh-home-benefits__icon {
    background: rgba(168, 85, 247, 0.12);
}

.csh-home-benefits__card--amber .csh-home-benefits__icon {
    background: rgba(245, 158, 11, 0.12);
}

.csh-home-testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.csh-home-testimonials {
    position: relative;
    padding: 20px 0 8px;
}

.csh-home-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 34%),
        linear-gradient(180deg, #f8fbff, #ffffff 68%);
    z-index: -1;
}

.csh-home-testimonials .csh-home-section-head {
    margin-bottom: 30px;
}

.csh-home-testimonials__card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.94));
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.07);
}

.csh-home-testimonials__card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #cbd5e1, rgba(203, 213, 225, 0));
}

.csh-home-testimonials__card::after {
    content: '"';
    position: absolute;
    right: 22px;
    bottom: -18px;
    color: rgba(148, 163, 184, 0.14);
    font-size: 7rem;
    line-height: 1;
    font-weight: 800;
}

.csh-home-testimonials__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 1rem;
}

.csh-home-testimonials__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(59, 130, 246, 0.1);
    font-size: 1.4rem;
}

.csh-home-testimonials__rating {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
}

.csh-home-testimonials__quote {
    position: relative;
    z-index: 1;
    color: #475569;
    line-height: 1.72;
}

.csh-home-testimonials__author {
    display: grid;
    gap: 2px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.csh-home-testimonials__author span {
    color: #64748b;
    font-size: 0.92rem;
}

.csh-home-testimonials__card--travel::before {
    background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, 0));
}

.csh-home-testimonials__card--travel .csh-home-testimonials__badge {
    background: rgba(16, 185, 129, 0.12);
}

.csh-home-testimonials__card--tech::before {
    background: linear-gradient(90deg, #3b82f6, rgba(59, 130, 246, 0));
}

.csh-home-testimonials__card--tech .csh-home-testimonials__badge {
    background: rgba(59, 130, 246, 0.12);
}

.csh-home-testimonials__card--art::before {
    background: linear-gradient(90deg, #f59e0b, rgba(245, 158, 11, 0));
}

.csh-home-testimonials__card--art .csh-home-testimonials__badge {
    background: rgba(245, 158, 11, 0.12);
}

.csh-home-dynamic {
    display: grid;
    gap: 32px;
}

.csh-page-wrap {
    padding: 32px 0 72px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.csh-dynamic-sections {
    margin-top: 32px;
    display: grid;
    gap: 32px;
}

.csh-catalog-page {
    padding: 32px 0 72px;
    display: grid;
    gap: 36px;
}

.csh-wild-art-page-host {
    background: var(--csh-art-page-bg);
}

.csh-art-categories,
.csh-art-browser-wrap {
    display: grid;
    gap: 22px;
}

.csh-art-showcase {
    position: relative;
}

.csh-art-showcase__frame {
    position: relative;
    display: grid;
    gap: 24px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid var(--csh-art-frame-border);
    background: var(--csh-art-frame-bg);
    box-shadow: var(--csh-art-frame-shadow);
    overflow: hidden;
}

.csh-art-showcase__frame::before,
.csh-art-showcase__frame::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.csh-art-showcase__frame::before {
    top: -96px;
    right: -48px;
    width: 240px;
    height: 240px;
    background: var(--csh-art-float-one);
}

.csh-art-showcase__frame::after {
    left: -56px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    background: var(--csh-art-float-two);
}

.csh-art-showcase--offers .csh-art-showcase__frame {
    background: var(--csh-art-frame-bg);
}

.csh-art-showcase--arrivals .csh-art-showcase__frame {
    background: var(--csh-art-frame-bg-alt);
}

.csh-art-showcase--featured-offer .csh-art-showcase__frame {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    align-items: start;
}

.csh-art-showcase--featured-offer .csh-art-section-head {
    grid-column: 1 / -1;
}

.csh-art-showcase--featured-offer .csh-art-showcase__body {
    max-width: 380px;
}

.csh-art-showcase--featured-offer .csh-art-showcase__body .csh-items-grid {
    display: block;
}

.csh-art-showcase--featured-offer .csh-art-showcase__body .csh-item-card {
    width: 100%;
}

.csh-art-showcase__summary {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin: 0;
    color: var(--csh-art-summary-text);
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: right;
}

.csh-arrival-slider-controls {
    display: flex;
    gap: 10px;
}

.csh-arrival-slider-controls--tech {
    justify-content: center;
    margin: -4px 0 22px;
}

.csh-arrival-slider-controls--art {
    justify-content: flex-end;
    margin-top: -8px;
}

.csh-arrival-slider__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--csh-art-category-border);
    background: var(--csh-surface-glass-strong);
    color: var(--csh-art-section-title);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.csh-arrival-slider__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--csh-elevation-medium);
}

.csh-arrival-slider__button:focus-visible {
    outline: 2px solid var(--csh-border-contrast);
    outline-offset: 2px;
}

.csh-tech-products--arrivals .csh-arrival-slider__button {
    border-color: var(--csh-tech-chip-border);
    background: var(--csh-tech-chip-bg);
    color: var(--csh-tech-chip-text);
}

.csh-art-showcase__body {
    position: relative;
    z-index: 1;
}

.csh-art-offer-spotlight {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 16px;
    min-height: 100%;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid var(--csh-art-frame-border);
    background: var(--csh-art-offer-bg);
    box-shadow: var(--csh-inset-highlight), var(--csh-elevation-medium);
    color: var(--csh-art-offer-text);
}

.csh-art-offer-spotlight__kicker {
    margin: 0;
    color: var(--csh-art-offer-kicker);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-art-offer-spotlight__title {
    margin: 0;
    color: var(--csh-art-offer-text);
    font-size: clamp(1.6rem, 2.2vw, 2.25rem);
    line-height: 1.16;
}

.csh-art-offer-spotlight__body {
    margin: 0;
    color: var(--csh-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.csh-art-offer-spotlight__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.csh-art-offer-spotlight__chips span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--csh-art-offer-chip-bg);
    border: 1px solid var(--csh-art-offer-chip-border);
    color: var(--csh-art-offer-text);
    font-size: 0.84rem;
    font-weight: 600;
}

.csh-art-offer-spotlight__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 200px;
    padding: 14px 22px;
    border-radius: 14px;
    background: var(--csh-art-offer-button-bg);
    color: var(--csh-art-offer-button-text);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--csh-art-offer-button-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.csh-art-offer-spotlight__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--csh-elevation-hover);
}

.csh-art-showcase__body .csh-items-section {
    gap: 0;
}

.csh-art-showcase__body .csh-items-browser,
.csh-art-showcase__body .csh-items-browser__results {
    gap: 0;
}

.csh-art-showcase__body .csh-items-browser__results {
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.csh-art-showcase__body .csh-items-browser__results::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.csh-art-showcase__body .csh-items-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(244px, calc((100% - 48px) / 3));
    grid-template-columns: none;
    gap: 24px;
}

.csh-art-showcase__body .csh-item-card {
    scroll-snap-align: start;
    min-height: 100%;
}

.csh-art-showcase__body .csh-item-card__media {
    min-height: 280px;
}

.csh-art-showcase__body .csh-item-card__body {
    gap: 10px;
    padding: 18px 18px 16px;
}

.csh-art-showcase__body .csh-item-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.csh-art-showcase__body .csh-item-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.csh-art-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.csh-art-section-head--centered {
    display: grid;
    justify-items: center;
    text-align: center;
}

.csh-art-section-head__kicker {
    margin: 0 0 10px;
    color: var(--csh-art-section-kicker);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.csh-art-section-head__title {
    margin: 0;
    color: var(--csh-art-section-title);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.06;
}

.csh-art-section-head--centered .csh-art-section-head__title::after {
    content: '';
    display: block;
    width: 86px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: var(--csh-art-section-rule);
}

.csh-art-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.csh-art-category-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid var(--csh-art-category-border);
    background: var(--csh-art-category-bg);
    box-shadow: var(--csh-elevation-soft);
    color: var(--csh-art-category-text);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.csh-art-category-card:hover {
    transform: translateY(-2px);
    border-color: var(--csh-art-section-kicker);
    box-shadow: var(--csh-elevation-medium);
}

.csh-art-category-card.is-active,
.csh-art-category-card:focus-visible {
    outline: none;
    border-color: var(--csh-art-section-kicker);
    background: var(--csh-art-category-active-bg);
    box-shadow: 0 0 0 3px var(--csh-focus-ring-color);
}

.csh-art-category-card__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 0 10px;
    border-radius: 16px;
    background: var(--csh-art-category-code-bg);
    color: var(--csh-art-category-code-text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.csh-art-category-card__content {
    display: grid;
    gap: 4px;
}

.csh-art-category-card__label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.csh-art-category-card__count {
    color: var(--csh-art-summary-text);
    font-size: 0.9rem;
}

.csh-art-browser-wrap .csh-art-section-head {
    align-items: start;
}

@media (max-width: 1024px) {
    .csh-art-showcase__frame {
        padding: 28px;
    }

    .csh-art-showcase--featured-offer .csh-art-showcase__frame {
        grid-template-columns: 1fr;
    }

    .csh-art-showcase--featured-offer .csh-art-showcase__body {
        max-width: none;
    }

    .csh-art-showcase__body .csh-items-grid {
        grid-auto-columns: minmax(236px, calc((100% - 24px) / 2));
    }
}

@media (max-width: 767px) {
    .csh-art-showcase__frame {
        padding: 24px 20px;
    }

    .csh-art-section-head {
        gap: 12px;
    }

    .csh-art-showcase__summary {
        max-width: none;
        text-align: left;
    }

    .csh-arrival-slider-controls--art {
        justify-content: flex-start;
        margin-top: -2px;
    }

    .csh-art-offer-spotlight {
        padding: 24px 20px;
    }

    .csh-art-showcase__body .csh-items-grid {
        grid-auto-columns: minmax(248px, 86vw);
        gap: 18px;
    }

    .csh-art-showcase__body .csh-item-card__media {
        min-height: 240px;
    }
}

.csh-catalog-hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    border-radius: 40px;
    isolation: isolate;
    box-shadow: 0 30px 70px rgba(11, 20, 27, 0.18);
}

.csh-catalog-hero__backdrop,
.csh-catalog-hero__overlay,
.csh-catalog-hero__particles,
.csh-catalog-hero__bg {
    position: absolute;
    inset: 0;
}

.csh-catalog-hero__bg {
    background-position: center;
    background-size: cover;
}

.csh-catalog-hero--art .csh-catalog-hero__bg {
    opacity: 0;
    animation: cshArtHeroFade 18s infinite;
}

.csh-catalog-hero--art .csh-catalog-hero__bg--1 {
    animation-delay: 0s;
}

.csh-catalog-hero--art .csh-catalog-hero__bg--2 {
    animation-delay: 6s;
}

.csh-catalog-hero--art .csh-catalog-hero__bg--3 {
    animation-delay: 12s;
}

.csh-catalog-hero--tech .csh-catalog-hero__bg {
    transform: scale(1.04);
}

.csh-catalog-hero__overlay {
    background: linear-gradient(90deg, rgba(6, 16, 27, 0.88), rgba(9, 23, 38, 0.38));
    z-index: 1;
}

.csh-catalog-hero--travel .csh-catalog-hero__bg {
    opacity: 0;
    transform: scale(1.05);
    animation: cshArtHeroFade 18s infinite;
}

.csh-catalog-hero--travel .csh-catalog-hero__bg--1 {
    animation-delay: 0s;
}

.csh-catalog-hero--travel .csh-catalog-hero__bg--2 {
    animation-delay: 6s;
}

.csh-catalog-hero--travel .csh-catalog-hero__bg--3 {
    animation-delay: 12s;
}

.csh-catalog-hero--travel .csh-catalog-hero__overlay {
    background: linear-gradient(90deg, rgba(2, 38, 64, 0.62), rgba(45, 212, 191, 0.15));
    mix-blend-mode: multiply;
}

.csh-catalog-hero--art .csh-catalog-hero__overlay {
    background: linear-gradient(90deg, rgba(26, 18, 11, 0.9), rgba(62, 39, 35, 0.45));
}

.csh-catalog-hero__particles {
    z-index: 1;
    background-image:
        radial-gradient(circle at 20% 18%, rgba(45, 212, 191, 0.18) 0 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, rgba(45, 212, 191, 0.22) 0 2px, transparent 2px),
        radial-gradient(circle at 70% 75%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px),
        radial-gradient(circle at 35% 70%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
    background-size: 180px 180px, 240px 240px, 140px 140px, 120px 120px;
    opacity: 0.8;
}

.csh-catalog-hero--art .csh-catalog-hero__particles {
    display: none;
}

.csh-catalog-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 640px;
    padding: 88px 72px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 60px;
    align-items: center;
}

.csh-catalog-hero__content {
    color: #f4f7fb;
}

.csh-catalog-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-catalog-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2dd4bf;
    box-shadow: 0 0 14px rgba(45, 212, 191, 0.9);
}

.csh-catalog-hero--art .csh-catalog-hero__dot {
    background: #d4af37;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.85);
}

.csh-catalog-hero__eyebrow-pill {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.68rem;
}

.csh-catalog-hero--art .csh-catalog-hero__eyebrow-pill {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.18);
}

.csh-catalog-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.7rem, 7vw, 5.6rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.csh-catalog-hero__title span {
    display: inline-block;
    width: fit-content;
    background: linear-gradient(120deg, #2dd4bf, #ffffff);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background-repeat: no-repeat;
}

.csh-catalog-hero--art .csh-catalog-hero__title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.csh-catalog-hero--art .csh-catalog-hero__title span {
    background: linear-gradient(120deg, #f3ead5, #d4af37);
    font-style: italic;
}

.csh-catalog-hero__body {
    max-width: 34rem;
    margin: 26px 0 0;
    color: #d6e0ea;
    font-size: 1.12rem;
    line-height: 1.75;
}

.csh-catalog-hero--travel .csh-catalog-hero__body {
    color: #f1f5f9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

.csh-catalog-hero--art .csh-catalog-hero__body {
    color: #ece3d8;
    font-weight: 300;
}

.csh-catalog-hero__chips,
.csh-catalog-hero__actions,
.csh-catalog-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.csh-catalog-hero__chips {
    margin-top: 28px;
}

.csh-catalog-hero__actions {
    margin-top: 32px;
}

.csh-catalog-hero__trust {
    margin-top: 32px;
    gap: 18px;
    color: #d6e0ea;
    font-size: 0.92rem;
}

.csh-catalog-hero__chip,
.csh-catalog-hero__button,
.csh-catalog-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.csh-catalog-hero__chip {
    padding: 9px 15px;
    border-radius: 999px;
    border: 1px solid rgba(45, 212, 191, 0.28);
    background: rgba(12, 23, 38, 0.52);
    color: #f8fcff;
    font-size: 0.92rem;
}

.csh-catalog-hero--travel .csh-catalog-hero__chip {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.28);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.44);
}

.csh-catalog-hero--art .csh-catalog-hero__chip {
    border-radius: 4px;
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.csh-catalog-hero__button {
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.csh-catalog-hero__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.csh-catalog-hero__button:hover {
    transform: translateY(-2px);
}

.csh-catalog-hero__button--primary {
    background: #2dd4bf;
    color: #0f172a;
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.34);
}

.csh-catalog-hero__button--ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
}

.csh-catalog-hero--travel .csh-catalog-hero__button--primary:hover {
    background: #ffffff;
}

.csh-catalog-hero--travel .csh-catalog-hero__button--ghost {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.32);
}

.csh-catalog-hero--art .csh-catalog-hero__button {
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.csh-catalog-hero--art .csh-catalog-hero__button--primary {
    background: #d4af37;
    color: #16100a;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.24);
}

.csh-catalog-hero--art .csh-catalog-hero__button--ghost {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
    background: transparent;
}

.csh-catalog-hero__aside {
    position: relative;
}

.csh-catalog-hero__panel {
    padding: 28px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.csh-catalog-hero--travel .csh-catalog-hero__panel {
    background: rgba(15, 23, 42, 0.68);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(24px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.csh-catalog-hero--art .csh-catalog-hero__panel {
    border-radius: 6px;
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(20, 15, 10, 0.86);
}

.csh-catalog-hero__panel-top,
.csh-catalog-hero__float-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.csh-catalog-hero__panel-kicker {
    margin: 0 0 6px;
    color: #94a3b8;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.csh-catalog-hero--art .csh-catalog-hero__panel-kicker,
.csh-catalog-hero--art .csh-catalog-hero__float-title {
    color: #d4af37;
}

.csh-catalog-hero__panel-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.45rem;
}

.csh-catalog-hero--art .csh-catalog-hero__panel-title {
    font-family: "Playfair Display", Georgia, serif;
}

.csh-catalog-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2dd4bf;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.csh-catalog-hero--art .csh-catalog-hero__status {
    color: #d4af37;
}

.csh-catalog-hero__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.45);
    animation: cshPulse 1.6s infinite;
}

.csh-catalog-hero__spark {
    margin: 22px 0 24px;
    height: 66px;
}

.csh-catalog-hero__spark svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.csh-catalog-hero__spark path {
    fill: none;
    stroke: #2dd4bf;
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(45, 212, 191, 0.66));
}

.csh-catalog-hero--art .csh-catalog-hero__spark path {
    stroke: #d4af37;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.7));
}

.csh-catalog-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.csh-catalog-hero__stat {
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.csh-catalog-hero--travel .csh-catalog-hero__stat {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.csh-catalog-hero--art .csh-catalog-hero__stat {
    border-radius: 0;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.csh-catalog-hero--art .csh-catalog-hero__stat:last-child {
    border-right: 0;
}

.csh-catalog-hero__stat-label,
.csh-catalog-hero__stat-hint {
    color: #95a3b7;
    font-size: 0.72rem;
}

.csh-catalog-hero__stat-value {
    margin-top: 8px;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
}

.csh-catalog-hero--art .csh-catalog-hero__stat-value {
    font-family: "Playfair Display", Georgia, serif;
}

.csh-catalog-hero__panel-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c4d2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.csh-catalog-hero--art .csh-catalog-hero__panel-foot {
    color: #d5cabd;
    font-style: italic;
}

.csh-catalog-hero__float {
    position: absolute;
    right: -18px;
    bottom: -24px;
    width: 220px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    animation: cshFloat 6s ease-in-out infinite;
}

.csh-catalog-hero--travel .csh-catalog-hero__float {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
}

.csh-catalog-hero--art .csh-catalog-hero__float {
    border-radius: 4px;
    border-color: rgba(212, 175, 55, 0.34);
    background: rgba(26, 18, 11, 0.96);
}

.csh-catalog-hero__float-title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 0.95rem;
}

.csh-catalog-hero__float-row {
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #d5dde8;
    font-size: 0.78rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
}

.csh-catalog-hero__float-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.csh-catalog-hero__float-pill {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.16);
    color: #2dd4bf;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.csh-catalog-hero--art .csh-catalog-hero__float-pill {
    border-radius: 2px;
    background: rgba(212, 175, 55, 0.18);
    color: #d4af37;
}

.csh-catalog-browser-shell {
    padding: 0;
}

.csh-catalog-browser-shell .csh-items-section {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.csh-catalog-browser-shell .csh-items-browser {
    gap: 28px;
}

.csh-catalog-browser-shell .csh-items-browser.has-filters {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    align-items: start;
}

.csh-catalog-browser-shell .csh-items-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.csh-catalog-browser-shell .csh-items-sidebar {
    top: 112px;
    padding: 24px;
    border-radius: 22px;
}

.csh-catalog-browser-shell--tech .csh-items-sidebar {
    background: var(--csh-tech-sidebar-bg);
    border: 1px solid var(--csh-tech-sidebar-border);
}

.csh-catalog-browser-shell--art .csh-items-sidebar {
    background: var(--csh-art-frame-bg);
    border: 1px solid var(--csh-art-category-border);
}

.csh-catalog-browser-shell--travel .csh-items-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.csh-catalog-browser-shell .csh-filter-group__title {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
}

.csh-catalog-browser-shell--tech .csh-filter-group__title,
.csh-catalog-browser-shell--tech .csh-filter-option,
.csh-catalog-browser-shell--tech .csh-filter-option small {
    color: var(--csh-tech-card-muted);
}

.csh-catalog-browser-shell--art .csh-filter-group__title,
.csh-catalog-browser-shell--art .csh-filter-option,
.csh-catalog-browser-shell--art .csh-filter-option small {
    color: var(--csh-art-category-text);
}

.csh-catalog-browser-shell--tech .csh-filter-group__title {
    color: var(--csh-tech-section-kicker);
}

.csh-catalog-browser-shell--art .csh-filter-group__title {
    color: var(--csh-art-section-kicker);
}

.csh-catalog-browser-shell--tech .csh-filter-option {
    background: var(--csh-tech-filter-bg);
    border-color: var(--csh-tech-card-border);
}

.csh-catalog-browser-shell--art .csh-filter-option {
    background: var(--csh-surface-glass);
    border-color: var(--csh-art-category-border);
}

.csh-catalog-browser-shell--tech .csh-item-card {
    border-radius: 28px;
}

.csh-tech-page {
    position: relative;
    display: grid;
    gap: 34px;
    padding: 26px 0 80px;
    overflow: hidden;
    background: var(--csh-tech-page-bg);
}

body.csh-tech-page-host {
    overflow-x: hidden;
}

.csh-tech-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--csh-overlay-soft), transparent 18%),
        radial-gradient(circle at 50% 20%, var(--csh-tech-page-orb), transparent 30%);
    pointer-events: none;
}

.csh-tech-hero,
.csh-tech-categories,
.csh-tech-brands,
.csh-tech-products,
.csh-tech-banners,
.csh-tech-browse-wrap {
    position: relative;
    z-index: 1;
}

.csh-tech-hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 560px;
    overflow: hidden;
    background: var(--csh-tech-hero-bg);
    border-top: 1px solid var(--csh-tech-hero-border);
    border-bottom: 1px solid var(--csh-tech-hero-border);
}

.csh-tech-hero__slides,
.csh-tech-hero__slide {
    position: absolute;
    inset: 0;
}

.csh-tech-hero__slides {
    overflow: hidden;
}

.csh-tech-hero__slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
    animation: cshTechHeroFade 18s infinite;
}

.csh-tech-hero__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--csh-tech-hero-overlay);
}

.csh-tech-hero__slide--1 {
    animation-delay: 0s;
}

.csh-tech-hero__slide--2 {
    animation-delay: 6s;
}

.csh-tech-hero__slide--3 {
    animation-delay: 12s;
}

.csh-tech-hero__slide--cyan::after,
.csh-tech-hero__slide--violet::after,
.csh-tech-hero__slide--amber::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    opacity: 0.4;
}

.csh-tech-hero__slide--cyan::after {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.28), transparent 48%);
}

.csh-tech-hero__slide--violet::after {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.24), transparent 52%);
}

.csh-tech-hero__slide--amber::after {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.22), transparent 52%);
}

.csh-tech-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 38px;
}

.csh-tech-hero__content {
    position: relative;
    min-height: 390px;
}

.csh-tech-hero__copy {
    position: absolute;
    inset: 0 auto 0 0;
    display: grid;
    align-content: center;
    max-width: 40rem;
    opacity: 0;
    transform: translateY(12px);
    animation: cshTechHeroCopyFade 18s infinite;
}

.csh-tech-hero__copy--1 {
    animation-delay: 0s;
}

.csh-tech-hero__copy--2 {
    animation-delay: 6s;
}

.csh-tech-hero__copy--3 {
    animation-delay: 12s;
}

.csh-tech-hero__kicker {
    margin: 0 0 16px;
    color: var(--csh-tech-section-kicker);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.csh-tech-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.csh-tech-hero__body {
    max-width: 34rem;
    margin: 20px 0 0;
    color: rgba(226, 232, 240, 0.86);
    font-size: 1.02rem;
    line-height: 1.75;
}

.csh-tech-hero__chips,
.csh-tech-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.csh-tech-hero__chips {
    margin-top: 24px;
}

.csh-tech-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--csh-tech-chip-border);
    background: var(--csh-tech-chip-bg);
    color: var(--csh-tech-chip-text);
    font-size: 0.84rem;
    font-weight: 700;
}

.csh-tech-hero__actions {
    margin-top: 30px;
}

.csh-tech-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.csh-tech-hero__button:hover {
    transform: translateY(-2px);
}

.csh-tech-hero__button--primary {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #f8fafc;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.csh-tech-hero__button--ghost {
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.csh-tech-hero__nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.csh-tech-hero__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

.csh-tech-categories {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0 2px;
}

.csh-tech-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.csh-tech-section-head--centered {
    display: grid;
    justify-items: center;
    text-align: center;
}

.csh-tech-section-head__kicker {
    margin: 0 0 10px;
    color: var(--csh-tech-section-kicker);
    font-size: 0.92rem;
    font-weight: 700;
}

.csh-tech-section-head__title {
    margin: 0;
    color: var(--csh-tech-section-title);
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.csh-tech-section-head--centered .csh-tech-section-head__title::after {
    content: '';
    display: block;
    width: 86px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: var(--csh-tech-section-rule);
}

.csh-tech-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--csh-tech-grid-border);
    border-left: 1px solid var(--csh-tech-grid-border);
    background: var(--csh-tech-grid-bg);
}

.csh-tech-category-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 16px 18px;
    border-right: 1px solid var(--csh-tech-grid-border);
    border-bottom: 1px solid var(--csh-tech-grid-border);
    color: var(--csh-tech-card-muted);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.csh-tech-category-card:hover {
    background: var(--csh-tech-category-hover);
}

.csh-tech-category-card.is-active,
.csh-tech-category-card:focus-visible {
    background: var(--csh-tech-category-active);
    box-shadow: inset 0 0 0 1px var(--csh-tech-section-kicker);
    outline: none;
}

.csh-tech-category-card__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 8px;
    border-radius: 12px;
    border: 1px solid var(--csh-tech-chip-border);
    background: var(--csh-tech-chip-bg);
    color: var(--csh-tech-chip-text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.csh-tech-category-card__label {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
}

.csh-tech-brands {
    padding: 12px 0 8px;
}

.csh-tech-brands__frame {
    position: relative;
    overflow: hidden;
    padding: 54px 88px 48px;
    border-radius: 30px;
    border: 1px solid var(--csh-tech-grid-border);
    background:
        var(--csh-tech-brand-frame-bg),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    box-shadow: var(--csh-elevation-strong);
}

.csh-tech-brands__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, var(--csh-tech-page-orb), transparent 28%),
        linear-gradient(180deg, var(--csh-overlay-soft), transparent 22%);
    pointer-events: none;
}

.csh-tech-section-head--brands .csh-tech-section-head__kicker {
    color: var(--csh-tech-section-kicker);
}

.csh-tech-section-head--brands .csh-tech-section-head__title {
    color: var(--csh-tech-section-title);
}

.csh-tech-brands__controls {
    position: absolute;
    inset: 50% 26px auto;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    transform: translateY(-6px);
}

.csh-tech-brands__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--csh-tech-brand-arrow-bg);
    border: 1px solid var(--csh-tech-brand-arrow-border);
    color: var(--csh-text-inverse);
    font-size: 2rem;
}

.csh-tech-brands__viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0 52px;
}

.csh-tech-brands__track {
    align-items: center;
    display: flex;
    gap: 64px;
    width: max-content;
    animation: cshTechBrandLoop 24s linear infinite;
}

.csh-tech-brands__viewport:hover .csh-tech-brands__track {
    animation-play-state: paused;
}

.csh-tech-brand-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 10px 0;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.csh-tech-brand-card:hover,
.csh-tech-brand-card.is-active,
.csh-tech-brand-card:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.csh-tech-brand-card.is-active .csh-tech-brand-card__logo,
.csh-tech-brand-card:focus-visible .csh-tech-brand-card__logo {
    filter: saturate(1.2) brightness(1.05);
    text-shadow: 0 8px 28px rgba(14, 165, 233, 0.28);
}

.csh-tech-brand-card__logo {
    display: inline-block;
    color: #ffffff;
    font-size: clamp(2rem, 3.7vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.csh-tech-brand-card--red .csh-tech-brand-card__logo {
    color: #ff3b30;
}

.csh-tech-brand-card--cyan .csh-tech-brand-card__logo {
    color: #19c8ff;
    text-transform: none;
}

.csh-tech-brand-card--orange .csh-tech-brand-card__logo {
    color: #ff8b2a;
    font-size: clamp(1.7rem, 3.1vw, 3.2rem);
    letter-spacing: -0.03em;
}

.csh-tech-brand-card--crimson .csh-tech-brand-card__logo {
    color: #ff2a3f;
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 4.2vw, 4.8rem);
}

.csh-tech-brand-card--gold .csh-tech-brand-card__logo {
    color: #f7efb6;
    letter-spacing: 0.08em;
}

.csh-tech-products {
    padding: 18px 0 8px;
}

.csh-tech-products__body .csh-items-section,
.csh-tech-products--browse .csh-items-section {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.csh-tech-products__body .csh-items-browser,
.csh-tech-products--browse .csh-items-browser {
    gap: 0;
}

.csh-tech-products--offers .csh-items-browser__results,
.csh-tech-products--arrivals .csh-items-browser__results {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.csh-tech-products--offers .csh-items-browser__results::-webkit-scrollbar,
.csh-tech-products--arrivals .csh-items-browser__results::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.csh-tech-products--offers .csh-items-grid,
.csh-tech-products--arrivals .csh-items-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, calc((100% - 66px) / 4));
    grid-template-columns: none;
    gap: 22px;
}

.csh-tech-products--offers .csh-item-card,
.csh-tech-products--arrivals .csh-item-card {
    scroll-snap-align: start;
}

.csh-tech-products--browse .csh-items-browser.has-filters {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
}

.csh-tech-products--browse .csh-items-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.csh-tech-products--browse .csh-items-browser__results {
    display: grid;
    gap: 18px;
}

.csh-tech-page .csh-items-sidebar {
    top: 96px;
    padding: 22px;
    border-radius: 22px;
    background: var(--csh-tech-sidebar-bg);
    border: 1px solid var(--csh-tech-sidebar-border);
}

.csh-tech-page .csh-filter-group__title,
.csh-tech-page .csh-filter-option,
.csh-tech-page .csh-filter-option small {
    color: var(--csh-tech-card-muted);
}

.csh-tech-page .csh-filter-option {
    background: var(--csh-tech-filter-bg);
    border-color: var(--csh-tech-card-border);
}

.csh-tech-page .csh-filter-option:has(input:checked) {
    border-color: var(--csh-tech-section-kicker);
    background: var(--csh-tech-filter-active-bg);
}

.csh-tech-page .csh-filter-option input {
    accent-color: var(--csh-tech-section-kicker);
}

.csh-items-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.csh-items-toolbar__summary {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.csh-items-toolbar__summary strong {
    font-size: 1rem;
}

.csh-items-toolbar__summary span {
    color: var(--csh-text-soft);
}

.csh-items-toolbar__reset {
    min-height: 40px;
    padding: 10px 16px;
    border: 1px solid var(--csh-tech-sidebar-border);
    border-radius: 999px;
    background: var(--csh-surface-glass);
    color: var(--csh-tech-toolbar-text);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.csh-items-toolbar__reset:hover,
.csh-items-toolbar__reset:focus-visible {
    border-color: var(--csh-tech-section-kicker);
    background: var(--csh-surface-glass-strong);
    transform: translateY(-1px);
    outline: none;
}

.csh-tech-products--browse .csh-items-toolbar {
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid var(--csh-tech-card-border);
    background: var(--csh-tech-toolbar-bg);
    color: var(--csh-tech-toolbar-text);
}

.csh-tech-products--browse .csh-items-toolbar__summary strong {
    color: var(--csh-tech-toolbar-text);
}

.csh-tech-products--browse .csh-items-toolbar__summary span {
    color: var(--csh-tech-card-muted);
}

.csh-tech-banners__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.csh-tech-banner {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: 22px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--csh-tech-banner-shadow);
}

.csh-tech-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.88));
}

.csh-tech-banner--blue .csh-tech-banner__overlay {
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.12), rgba(2, 6, 23, 0.88));
}

.csh-tech-banner--violet .csh-tech-banner__overlay {
    background: linear-gradient(180deg, rgba(109, 40, 217, 0.16), rgba(2, 6, 23, 0.88));
}

.csh-tech-banner--cyan .csh-tech-banner__overlay {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.14), rgba(2, 6, 23, 0.88));
}

.csh-tech-banner__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 20px;
}

.csh-tech-banner__eyebrow {
    margin: 0 0 8px;
    color: var(--csh-tech-section-kicker);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.csh-tech-banner__title {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.2;
}

.csh-tech-banner__body {
    margin: 10px 0 0;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.55;
}

.csh-tech-browse-wrap {
    padding-top: 20px;
}

.csh-item-card--tech,
.csh-tech-page .csh-item-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--csh-tech-card-border);
    background: var(--csh-tech-card-bg);
    box-shadow: var(--csh-elevation-soft);
}

.csh-item-card--tech:hover,
.csh-tech-page .csh-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--csh-elevation-hover);
}

.csh-item-card--tech .csh-item-card__media,
.csh-tech-page .csh-item-card__media {
    min-height: 228px;
    background: var(--csh-tech-card-media-bg);
}

.csh-item-card--tech .csh-item-card__media img,
.csh-tech-page .csh-item-card__media img {
    width: 100%;
    height: 228px;
    object-fit: contain;
    background: var(--csh-tech-card-media-bg);
    padding: 18px 16px 20px;
}

.csh-item-card--tech .csh-item-card__badge,
.csh-tech-page .csh-item-card__badge {
    top: 0;
    left: 12px;
    width: 54px;
    max-width: 54px;
    min-height: 60px;
    padding: 12px 6px 14px;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
    background: var(--csh-tech-badge-bg);
    color: var(--csh-tech-badge-text);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 12px 20px rgba(22, 163, 74, 0.28);
}

.csh-item-card--tech .csh-item-card__gift,
.csh-tech-page .csh-item-card__gift {
    top: 12px;
    right: 12px;
    bottom: auto;
    border-radius: 999px;
    background: var(--csh-tech-gift-bg);
    color: var(--csh-tech-gift-text);
    border: 1px solid var(--csh-tech-chip-border);
}

.csh-item-card--tech .csh-item-card__body,
.csh-tech-page .csh-item-card__body {
    gap: 10px;
    padding: 18px 16px 16px;
    background: var(--csh-tech-card-body-bg);
    color: var(--csh-tech-card-text);
}

.csh-item-card--tech .csh-item-card__title,
.csh-tech-page .csh-item-card__title {
    color: var(--csh-tech-card-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.42;
    min-height: 4.2em;
    text-align: center;
}

.csh-item-card--tech .csh-item-card__excerpt,
.csh-tech-page .csh-item-card__excerpt {
    display: none;
}

.csh-item-card--tech .csh-item-card__footer,
.csh-tech-page .csh-item-card__footer {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-right: 42px;
    min-height: 76px;
}

.csh-item-card--tech .csh-item-card__category,
.csh-tech-page .csh-item-card__category {
    order: -1;
    padding: 0;
    background: transparent;
    color: var(--csh-tech-card-muted);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.csh-item-card--tech .csh-item-card__prices,
.csh-tech-page .csh-item-card__prices {
    align-items: center;
    text-align: center;
}

.csh-item-card--tech .csh-item-card__price,
.csh-item-card--tech .csh-item-card__price--discount,
.csh-tech-page .csh-item-card__price,
.csh-tech-page .csh-item-card__price--discount {
    color: var(--csh-tech-card-text);
    font-size: 1.38rem;
    font-weight: 800;
}

.csh-item-card--tech .csh-item-card__price--original,
.csh-tech-page .csh-item-card__price--original {
    color: var(--csh-tech-card-muted);
    font-size: 0.94rem;
}

.csh-item-card--tech .csh-item-card__price--contact,
.csh-tech-page .csh-item-card__price--contact {
    color: var(--csh-tech-card-muted);
}

.csh-item-card--tech .csh-item-card__footer::after,
.csh-tech-page .csh-item-card__footer::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background-color: var(--csh-tech-footer-icon-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.35'/%3E%3Ccircle cx='17' cy='20' r='1.35'/%3E%3Cpath d='M3 4h2l2.1 10.1a1 1 0 0 0 .98.79h8.96a1 1 0 0 0 .97-.73L20 7H6.15'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.csh-catalog-browser-shell--travel .csh-item-card {
    border-radius: 28px;
    background: var(--csh-card-bg);
    box-shadow: var(--csh-elevation-soft);
}

.csh-catalog-browser-shell--travel .csh-item-card__media,
.csh-catalog-browser-shell--travel .csh-item-card__media img {
    min-height: 240px;
}

.csh-catalog-browser-shell--travel .csh-item-card__media {
    background: linear-gradient(135deg, #2dd4bf, #0f766e);
}

.csh-catalog-browser-shell--travel .csh-item-card__badge {
    background: rgba(7, 89, 133, 0.88);
}

.csh-catalog-browser-shell--travel .csh-item-card__title {
    font-size: 1.25rem;
}

.csh-catalog-browser-shell--travel .csh-item-card__price,
.csh-catalog-browser-shell--travel .csh-item-card__price--discount {
    color: #0f766e;
}

.csh-catalog-browser-shell--travel .csh-item-card__action--travel {
    width: 100%;
    margin-top: 16px;
    padding: 13px 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #0f766e);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 16px 28px rgba(15, 118, 110, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.csh-catalog-browser-shell--travel .csh-item-card__action--travel:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(15, 118, 110, 0.26);
}

.csh-catalog-browser-shell--travel .csh-item-card__action--travel:focus-visible {
    outline: 2px solid rgba(45, 212, 191, 0.38);
    outline-offset: 2px;
}

.csh-travel-booking-modal[hidden] {
    display: none;
}

.csh-modal-open {
    overflow: hidden;
}

.csh-travel-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    background: var(--csh-modal-backdrop);
    backdrop-filter: blur(8px);
}

.csh-travel-booking-modal__dialog {
    width: min(100%, 420px);
    padding: 30px;
    border-radius: 24px;
    background: var(--csh-panel-bg);
    box-shadow: var(--csh-elevation-strong);
    position: relative;
}

.csh-travel-booking-modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: 0;
    background: transparent;
    color: var(--csh-text-faint);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.csh-travel-booking-modal__title {
    margin: 0;
    color: var(--csh-text-main);
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    line-height: 1.08;
}

.csh-travel-booking-modal__trip {
    margin: 14px 0 0;
    color: var(--csh-text-accent);
    font-size: 1.04rem;
    font-weight: 700;
}

.csh-travel-booking-modal__trip span {
    color: var(--csh-text-soft);
    font-weight: 600;
}

.csh-travel-booking-modal__field {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.csh-travel-booking-modal__field label {
    color: var(--csh-text-main);
    font-size: 0.96rem;
    font-weight: 700;
}

.csh-travel-booking-modal__field input,
.csh-travel-booking-modal__field select,
.csh-travel-booking-modal__field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--csh-input-border);
    border-radius: 12px;
    background: var(--csh-input-bg);
    color: var(--csh-text-main);
    font-size: 1rem;
}

.csh-travel-booking-modal__field input:focus,
.csh-travel-booking-modal__field select:focus,
.csh-travel-booking-modal__field textarea:focus {
    border-color: var(--csh-color-brand);
    outline: 0;
    box-shadow: 0 0 0 4px var(--csh-focus-ring-color);
}

.csh-travel-booking-modal__field textarea {
    min-height: 112px;
    resize: vertical;
}

.csh-travel-booking-modal__feedback {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.csh-travel-booking-modal__feedback.is-success {
    background: var(--csh-success-bg);
    color: var(--csh-success-text);
}

.csh-travel-booking-modal__feedback.is-warning {
    background: var(--csh-warning-bg);
    color: var(--csh-warning-text);
}

.csh-travel-booking-modal__feedback.is-error {
    background: var(--csh-error-bg);
    color: var(--csh-error-text);
}

.csh-travel-booking-modal__submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 32px rgba(34, 197, 94, 0.24);
}

.csh-travel-booking-modal__submit:hover {
    transform: translateY(-1px);
}

.csh-travel-booking-modal__submit:disabled {
    opacity: 0.78;
    cursor: wait;
    transform: none;
}

@media (max-width: 767px) {
    .csh-travel-booking-modal__dialog {
        padding: 26px 20px 22px;
    }
}

.csh-catalog-browser-shell--art .csh-item-card,
.csh-art-showcase__body .csh-item-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    border-color: var(--csh-art-card-border);
    background: var(--csh-art-card-bg);
    box-shadow: var(--csh-elevation-soft);
}

.csh-catalog-browser-shell--art .csh-item-card:hover,
.csh-art-showcase__body .csh-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--csh-elevation-hover);
}

.csh-catalog-browser-shell--art .csh-item-card__media,
.csh-art-showcase__body .csh-item-card__media {
    min-height: 252px;
    background: var(--csh-art-card-media-bg);
}

.csh-catalog-browser-shell--art .csh-item-card__media img,
.csh-art-showcase__body .csh-item-card__media img {
    width: 100%;
    height: 252px;
    min-height: 252px;
    object-fit: contain;
    background: var(--csh-art-card-media-bg);
    padding: 16px 16px 18px;
}

.csh-catalog-browser-shell--art .csh-item-card__body,
.csh-art-showcase__body .csh-item-card__body {
    gap: 10px;
    padding: 18px 18px 16px;
    background: var(--csh-art-card-body-bg);
}

.csh-catalog-browser-shell--art .csh-item-card__title,
.csh-art-showcase__body .csh-item-card__title {
    min-height: 3em;
    overflow: hidden;
    color: var(--csh-art-card-title);
    display: -webkit-box;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.csh-catalog-browser-shell--art .csh-item-card__excerpt,
.csh-art-showcase__body .csh-item-card__excerpt {
    min-height: 4.85em;
    overflow: hidden;
    color: var(--csh-art-card-text);
    display: -webkit-box;
    font-size: 0.94rem;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.csh-catalog-browser-shell--art .csh-item-card__footer,
.csh-art-showcase__body .csh-item-card__footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--csh-art-card-border);
}

.csh-catalog-browser-shell--art .csh-item-card__prices,
.csh-art-showcase__body .csh-item-card__prices {
    align-items: flex-start;
    text-align: left;
}

.csh-catalog-browser-shell--art .csh-item-card__badge,
.csh-catalog-browser-shell--art .csh-item-card__category,
.csh-art-showcase__body .csh-item-card__badge,
.csh-art-showcase__body .csh-item-card__category {
    background: var(--csh-art-pill-bg);
    color: var(--csh-art-pill-text);
}

.csh-catalog-browser-shell--art .csh-item-card__category,
.csh-art-showcase__body .csh-item-card__category {
    order: -1;
    padding: 7px 12px;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
}

.csh-catalog-browser-shell--art .csh-item-card__gift,
.csh-art-showcase__body .csh-item-card__gift {
    top: 14px;
    right: 14px;
    bottom: auto;
    background: var(--csh-art-gift-bg);
    color: var(--csh-art-gift-text);
}

.csh-catalog-browser-shell--art .csh-item-card__price,
.csh-art-showcase__body .csh-item-card__price {
    color: var(--csh-art-price);
    font-size: 1.34rem;
    font-weight: 800;
}

.csh-catalog-browser-shell--art .csh-item-card__price--discount,
.csh-art-showcase__body .csh-item-card__price--discount {
    color: var(--csh-art-price-accent);
}

.csh-catalog-browser-shell--art .csh-item-card__price--original,
.csh-art-showcase__body .csh-item-card__price--original {
    color: var(--csh-art-card-muted);
    font-size: 0.88rem;
}

.csh-search-page {
    padding: 36px 0 72px;
    display: grid;
    gap: 28px;
}

.csh-search-page__hero {
    padding: 32px;
    border: 1px solid var(--csh-color-border);
    border-radius: 28px;
    background: var(--csh-panel-bg);
    box-shadow: var(--csh-shadow);
}

.csh-search-page__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
}

.csh-search-page__body {
    max-width: 44rem;
    margin: 12px 0 0;
    color: rgba(29, 38, 48, 0.72);
}

.csh-search-page__form {
    margin-top: 22px;
}

.csh-search-page__results .csh-items-section {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.csh-search-page__results .csh-items-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@keyframes cshPulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }

    100% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

@keyframes cshFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes cshArtHeroFade {
    0%,
    28% {
        opacity: 1;
    }

    33%,
    100% {
        opacity: 0;
    }
}

@keyframes cshTechHeroFade {
    0%,
    28% {
        opacity: 1;
    }

    33%,
    100% {
        opacity: 0;
    }
}

@keyframes cshTechBrandLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 37px));
    }
}

@keyframes cshTechHeroCopyFade {
    0%,
    28% {
        opacity: 1;
        transform: translateY(0);
    }

    33%,
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.csh-entry-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--csh-color-border);
    border-radius: 28px;
    box-shadow: var(--csh-shadow);
}

.csh-entry-card__title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.csh-items-section {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 232, 0.96));
    border: 1px solid var(--csh-color-border);
    border-radius: 28px;
    box-shadow: var(--csh-shadow);
}

.csh-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.csh-section-kicker {
    margin: 0 0 8px;
    color: var(--csh-color-brand);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.csh-section-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
}

.csh-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.csh-items-browser {
    display: grid;
    gap: 24px;
}

.csh-items-browser.has-filters {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: start;
}

.csh-items-section.is-loading {
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

.csh-items-sidebar {
    position: sticky;
    top: 24px;
    padding: 18px;
    background: rgba(249, 247, 241, 0.92);
    border: 1px solid rgba(29, 38, 48, 0.08);
    border-radius: 20px;
}

.csh-filter-form {
    display: grid;
    gap: 20px;
}

.csh-filter-group {
    display: grid;
    gap: 12px;
}

.csh-filter-group__title {
    margin: 0;
    font-size: 0.9rem;
    color: var(--csh-color-brand-strong);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.csh-filter-options {
    display: grid;
    gap: 10px;
}

.csh-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(29, 38, 48, 0.06);
    cursor: pointer;
}

.csh-filter-option input {
    margin: 0;
}

.csh-filter-option span {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    font-size: 0.95rem;
}

.csh-filter-option small {
    color: rgba(29, 38, 48, 0.55);
}

.csh-items-browser__results {
    min-width: 0;
}

.csh-item-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid rgba(29, 38, 48, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(14, 25, 32, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.csh-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(14, 25, 32, 0.14);
}

.csh-item-card__media {
    position: relative;
    min-height: 220px;
    background: linear-gradient(135deg, #0a7f78, #d7a84b);
}

.csh-item-card__media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.csh-item-card__media.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.csh-item-card__placeholder {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.88);
}

.csh-item-card__badge,
.csh-item-card__gift {
    position: absolute;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 24px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
}

.csh-item-card__badge {
    top: 14px;
    left: 14px;
    color: #ffffff;
    background: rgba(10, 127, 120, 0.9);
}

.csh-item-card__gift {
    right: 14px;
    bottom: 14px;
    color: #5b2f0f;
    background: rgba(255, 233, 184, 0.95);
}

.csh-item-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.csh-item-card__title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
}

.csh-item-card__excerpt {
    margin: 0;
    color: rgba(29, 38, 48, 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
}

.csh-item-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.csh-item-card__prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.csh-item-card__price {
    color: var(--csh-color-brand-strong);
    font-size: 1.05rem;
    font-weight: 800;
}

.csh-item-card__price--discount {
    color: #0f7d3d;
}

.csh-item-card__price--original {
    color: rgba(29, 38, 48, 0.5);
    font-size: 0.82rem;
    text-decoration: line-through;
}

.csh-item-card__price--contact {
    color: rgba(29, 38, 48, 0.7);
}

.csh-item-card__category {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10, 127, 120, 0.08);
    color: var(--csh-color-brand-strong);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: right;
}

.csh-site-footer {
    padding: 48px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(232, 237, 243, 0.78);
    background:
        radial-gradient(circle at top left, rgba(29, 78, 216, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(190, 24, 93, 0.12), transparent 24%),
        linear-gradient(180deg, #07101a, #04070e 70%);
}

.csh-site-footer a {
    color: rgba(245, 247, 250, 0.88);
    text-decoration: none;
}

.csh-site-footer a:hover {
    color: #ffffff;
}

.csh-site-footer__panel {
    padding: 42px 38px 24px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(7, 13, 24, 0.82), rgba(3, 7, 14, 0.96));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.csh-site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(170px, 1fr));
    align-items: start;
    gap: 36px;
}

.csh-site-footer__brand {
    max-width: 34rem;
}

.csh-site-footer__eyebrow {
    margin: 0 0 8px;
    color: rgba(148, 163, 184, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.csh-site-footer__title {
    display: inline-block;
    color: #ffffff;
    font-size: clamp(2.2rem, 3.2vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    line-height: 0.95;
}

.csh-site-footer__accent {
    width: min(100%, 245px);
    height: 3px;
    margin: 22px 0 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ef4444, rgba(239, 68, 68, 0.1));
}

.csh-site-footer__summary {
    margin: 0;
    max-width: 34rem;
    color: rgba(226, 232, 240, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

.csh-site-footer__contact-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.csh-site-footer__contact-item {
    display: grid;
    gap: 6px;
}

.csh-site-footer__contact-label,
.csh-site-footer__heading {
    margin: 0;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.csh-site-footer__contact-item span,
.csh-site-footer__contact-item a {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.98rem;
}

.csh-site-footer__column {
    min-width: 0;
}

.csh-site-footer__links {
    display: grid;
    gap: 16px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.csh-site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.98rem;
    font-weight: 700;
}

.csh-site-footer__links a::after {
    content: '›';
    color: rgba(255, 255, 255, 0.32);
    transition: transform 0.2s ease, color 0.2s ease;
}

.csh-site-footer__links a:hover::after {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 0.88);
}

.csh-site-footer__links--support a {
    font-weight: 600;
}

.csh-site-footer__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.csh-site-footer__copyright {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.98rem;
}

.csh-site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.csh-site-footer__payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 14px;
    background: #f8fafc;
    color: #1e3a5f;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
}

.csh-site-footer__top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    background: rgba(15, 23, 42, 0.45);
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
}

.csh-site-footer__top:hover {
    background: rgba(30, 41, 59, 0.85);
}

@media (max-width: 768px) {
    .csh-site-header__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .csh-site-branding {
        gap: 10px;
    }

    .csh-site-branding .custom-logo-link {
        width: 30px;
    }

    .csh-site-branding .custom-logo {
        height: 36px;
    }

    .csh-site-title {
        font-size: 1.02rem;
    }

    .csh-site-header__meta {
        width: 100%;
        justify-content: flex-end;
    }

    .csh-site-search {
        order: 3;
        width: 100%;
        max-width: none;
    }

    .csh-site-header__contacts {
        display: none;
    }

    .csh-site-header__actions {
        gap: 6px;
    }

    .csh-site-action,
    .csh-site-menu > summary,
    .csh-site-action--theme {
        width: 38px;
        height: 38px;
    }

    .csh-site-action svg,
    .csh-site-contact__icon svg,
    .csh-search-form__button svg,
    .csh-site-theme-toggle__icon svg {
        width: 18px;
        height: 18px;
    }

    .csh-site-menu__panel {
        position: fixed;
        top: 74px;
        left: 16px;
        right: 16px;
        width: auto;
        max-height: calc(100vh - 108px);
        overflow: auto;
    }

    .csh-site-menu__contact-grid {
        grid-template-columns: 1fr;
    }

    .csh-site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .csh-site-header__tools,
    .csh-search-form {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }

    .csh-search-form__field {
        width: 100%;
        height: 48px;
        padding: 0 52px 0 16px;
        font-size: 0.98rem;
    }

    .csh-search-form__button {
        right: 7px;
        width: 34px;
        height: 34px;
    }

    .csh-items-section,
    .csh-entry-card {
        padding: 24px;
    }

    .csh-item-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .csh-items-browser.has-filters {
        grid-template-columns: 1fr;
    }

    .csh-items-sidebar {
        position: static;
    }

    .csh-catalog-page {
        gap: 24px;
    }

    .csh-catalog-hero {
        min-height: auto;
        border-radius: 28px;
    }

    .csh-catalog-hero__inner {
        min-height: auto;
        padding: 64px 22px 30px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .csh-catalog-hero__title {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .csh-catalog-hero__body {
        font-size: 1rem;
    }

    .csh-catalog-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .csh-catalog-hero__button {
        justify-content: center;
    }

    .csh-catalog-hero__stats {
        grid-template-columns: 1fr;
    }

    .csh-catalog-hero__float {
        position: static;
        width: 100%;
        margin-top: 18px;
        animation: none;
    }

    .csh-catalog-browser-shell .csh-items-browser.has-filters {
        grid-template-columns: 1fr;
    }

    .csh-catalog-browser-shell .csh-items-grid {
        grid-template-columns: 1fr;
    }

    .csh-search-page__results .csh-items-grid {
        grid-template-columns: 1fr;
    }

    .csh-home-page {
        gap: 22px;
        padding-top: 12px;
    }

    .csh-home-services {
        padding: 56px 0 62px;
    }

    .csh-home-hero {
        min-height: auto;
        border-radius: 24px;
    }

    .csh-home-hero__inner {
        min-height: auto;
        padding: 36px 18px 24px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .csh-home-hero__title {
        font-size: clamp(2.5rem, 13vw, 3.8rem);
    }

    .csh-home-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .csh-home-hero__button {
        justify-content: center;
    }

    .csh-home-hero__stats,
    .csh-home-services__grid,
    .csh-home-benefits__grid,
    .csh-home-testimonials__grid,
    .csh-home-about__panel-grid {
        grid-template-columns: 1fr;
    }

    .csh-home-section-head--split {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .csh-home-services__card {
        min-height: 320px;
        padding: 24px;
    }

    .csh-home-services__card h3 {
        font-size: 1.9rem;
    }

    .csh-home-hero__float {
        position: static;
        width: 100%;
        margin-top: 16px;
        animation: none;
    }

    .csh-home-about__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .csh-tech-page {
        gap: 24px;
        padding-top: 18px;
    }

    .csh-tech-hero {
        min-height: 520px;
    }

    .csh-tech-hero__inner {
        min-height: 520px;
        grid-template-columns: 1fr;
        align-items: end;
        padding-top: 34px;
        padding-bottom: 24px;
    }

    .csh-tech-hero__content {
        min-height: 420px;
    }

    .csh-tech-hero__copy {
        max-width: 100%;
    }

    .csh-tech-hero__nav {
        justify-content: flex-start;
    }

    .csh-tech-hero__arrow {
        width: 48px;
        height: 48px;
    }

    .csh-tech-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .csh-tech-brands__frame {
        padding: 32px 54px;
        border-radius: 24px;
    }

    .csh-tech-brand-card {
        min-height: 88px;
    }

    .csh-tech-brand-card__logo {
        font-size: clamp(1.7rem, 8vw, 2.8rem);
    }

    .csh-tech-brands__controls {
        inset: 50% 14px auto;
    }

    .csh-tech-products--browse .csh-items-grid,
    .csh-tech-banners__grid {
        grid-template-columns: 1fr;
    }

    .csh-items-toolbar {
        align-items: flex-start;
    }

    .csh-tech-products--offers .csh-items-grid,
    .csh-tech-products--arrivals .csh-items-grid {
        grid-auto-columns: minmax(78vw, 1fr);
    }

    .csh-tech-products--browse .csh-items-browser.has-filters {
        grid-template-columns: 1fr;
    }

    .csh-item-card--tech .csh-item-card__title,
    .csh-tech-page .csh-item-card__title {
        min-height: 0;
        font-size: 0.96rem;
    }

    .csh-item-card--tech .csh-item-card__price,
    .csh-item-card--tech .csh-item-card__price--discount,
    .csh-tech-page .csh-item-card__price,
    .csh-tech-page .csh-item-card__price--discount {
        font-size: 1.15rem;
    }

    .csh-site-footer {
        padding: 34px 0 28px;
    }

    .csh-site-footer__panel {
        padding: 30px 22px 22px;
        border-radius: 24px;
    }

    .csh-site-footer__inner,
    .csh-site-footer__bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .csh-site-footer__title {
        font-size: clamp(2rem, 12vw, 2.8rem);
    }

    .csh-site-footer__payments {
        justify-content: flex-start;
    }

    .csh-site-footer__top {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .csh-site-branding {
        gap: 8px;
    }

    .csh-site-branding .custom-logo-link {
        width: 28px;
    }

    .csh-site-branding .custom-logo {
        height: 32px;
    }

    .csh-site-title {
        font-size: 0.95rem;
    }

    .csh-site-header__actions {
        gap: 5px;
    }

    .csh-site-action--wishlist,
    .csh-site-action--account {
        display: none;
    }

    .csh-site-action,
    .csh-site-menu > summary,
    .csh-site-action--theme {
        width: 36px;
        height: 36px;
    }

    .csh-search-form__field {
        height: 46px;
        padding-left: 14px;
        padding-right: 48px;
    }

    .csh-search-form__button {
        width: 32px;
        height: 32px;
        right: 6px;
    }

    .csh-home-hero__title {
        font-size: clamp(2.2rem, 13vw, 3.2rem);
    }

    .csh-home-hero__inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 1120px) {
    .csh-site-header__inner {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .csh-site-search {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        order: 3;
    }

    .csh-tech-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .csh-tech-brand-card {
        min-height: 100px;
    }

    .csh-tech-brands__frame {
        padding-left: 66px;
        padding-right: 66px;
    }

    .csh-tech-products--offers .csh-items-grid,
    .csh-tech-products--arrivals .csh-items-grid {
        grid-auto-columns: minmax(240px, calc((100% - 22px) / 2));
    }

    .csh-tech-products--browse .csh-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .csh-site-header__contacts {
        display: none;
    }

    .csh-site-search {
        min-width: 0;
    }
}

@media (max-width: 1060px) {
    .csh-site-header__inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .csh-site-search {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        order: 3;
    }
}

@media (max-width: 768px) {
    .csh-tech-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .csh-tech-brands__track {
        gap: 48px;
    }

    .csh-tech-brands__viewport {
        padding: 0 34px;
    }

    .csh-tech-brands__arrow {
        width: 34px;
        height: 34px;
        font-size: 1.45rem;
    }

    .csh-tech-products--browse .csh-items-grid,
    .csh-tech-banners__grid {
        grid-template-columns: 1fr;
    }

    .csh-tech-products--offers .csh-items-grid,
    .csh-tech-products--arrivals .csh-items-grid {
        grid-auto-columns: minmax(78vw, 1fr);
    }

    .csh-item-card--tech .csh-item-card__footer,
    .csh-tech-page .csh-item-card__footer {
        padding-right: 40px;
        min-height: 72px;
    }
}

.csh-item-single {
    padding: 32px 0 88px;
}

.csh-item-single--tech {
    --csh-item-accent: var(--csh-color-brand);
    --csh-item-accent-soft: var(--csh-focus-ring-color);
    --csh-item-surface: var(--csh-tech-card-media-bg);
    --csh-item-button-bg: linear-gradient(135deg, #0f172a, var(--csh-color-brand));
    --csh-item-button-shadow: var(--csh-checkout-button-shadow);
}

.csh-item-single--art {
    --csh-item-accent: var(--csh-art-price);
    --csh-item-accent-soft: var(--csh-art-pill-bg);
    --csh-item-surface: var(--csh-art-card-media-bg);
    --csh-item-button-bg: linear-gradient(135deg, #3b281b, var(--csh-art-price));
    --csh-item-button-shadow: var(--csh-art-offer-button-shadow);
}

.csh-item-single__shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.csh-item-single__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--csh-text-soft);
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
}

.csh-item-single__notice {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 22px;
    line-height: 1.65;
}

.csh-item-single__notice strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.csh-item-single__notice p {
    margin: 6px 0 0;
}

.csh-item-single__notice--success {
    background: var(--csh-success-bg);
    color: var(--csh-success-text);
}

.csh-item-single__notice--warning {
    background: var(--csh-warning-bg);
    color: var(--csh-warning-text);
}

.csh-item-single__notice--error {
    background: var(--csh-error-bg);
    color: var(--csh-error-text);
}

.csh-item-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: 38px;
    margin-top: 18px;
    align-items: start;
}

.csh-item-single__gallery {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 116px;
}

.csh-item-single__gallery-frame {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 30px);
    border-radius: 34px;
    background: var(--csh-item-surface);
    box-shadow: var(--csh-elevation-strong);
    overflow: hidden;
}

.csh-item-single__gallery-frame.is-placeholder {
    background: var(--csh-card-bg-muted);
}

.csh-item-single__gallery-frame img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
}

.csh-item-single__placeholder {
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: var(--csh-surface-glass-strong);
    color: var(--csh-item-accent);
    font-size: 3.6rem;
    font-weight: 800;
}

.csh-item-single__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.csh-item-single__highlights span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--csh-surface-glass-strong);
    box-shadow: var(--csh-elevation-soft);
    color: var(--csh-text-soft);
    font-size: 0.85rem;
    font-weight: 700;
}

.csh-item-single__summary {
    padding: clamp(24px, 3vw, 34px);
    border-radius: 34px;
    background: var(--csh-panel-bg);
    box-shadow: var(--csh-elevation-strong);
}

.csh-item-single__eyebrow {
    margin: 0;
    color: var(--csh-item-accent);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-item-single__title {
    margin: 10px 0 0;
    color: var(--csh-text-main);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.csh-item-single__subtitle {
    margin: 10px 0 0;
    color: var(--csh-text-soft);
    font-size: 1.02rem;
    font-weight: 600;
}

.csh-item-single__gift {
    display: inline-flex;
    margin: 18px 0 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--csh-item-accent-soft);
    color: var(--csh-item-accent);
    font-weight: 700;
}

.csh-item-single__availability {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.csh-item-single__availability-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-item-single__availability-badge--success {
    background: var(--csh-success-bg);
    color: var(--csh-success-text);
}

.csh-item-single__availability-badge--warning {
    background: var(--csh-warning-bg);
    color: var(--csh-warning-text);
}

.csh-item-single__availability-badge--error {
    background: var(--csh-error-bg);
    color: var(--csh-error-text);
}

.csh-item-single__availability-note {
    margin: 0;
    color: var(--csh-text-soft);
    font-size: 0.98rem;
    line-height: 1.7;
}

.csh-item-single__price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px 16px;
    margin-top: 24px;
}

.csh-item-single__price {
    color: var(--csh-text-main);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.csh-item-single__price--discount {
    color: var(--csh-item-accent);
}

.csh-item-single__price-original {
    color: var(--csh-text-faint);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: line-through;
}

.csh-item-single__intro {
    margin: 20px 0 0;
    color: var(--csh-text-soft);
    font-size: 1.04rem;
    line-height: 1.72;
}

.csh-item-single__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.csh-item-single__meta-card {
    padding: 16px 18px;
    border: 1px solid var(--csh-border-color);
    border-radius: 20px;
    background: var(--csh-panel-strong-bg);
}

.csh-item-single__meta-label {
    display: block;
    color: var(--csh-text-faint);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.csh-item-single__meta-value {
    display: block;
    margin-top: 8px;
    color: var(--csh-text-main);
    font-size: 1rem;
    line-height: 1.5;
}

.csh-item-single__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.csh-item-single__buy-button {
    min-width: 220px;
    padding: 16px 24px;
    border: 0;
    border-radius: 18px;
    background: var(--csh-item-button-bg);
    color: var(--csh-text-inverse);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: var(--csh-item-button-shadow);
}

.csh-item-single__buy-button.is-disabled,
.csh-item-single__buy-button:disabled {
    background: var(--csh-surface-glass-strong);
    color: var(--csh-text-faint);
    cursor: not-allowed;
    box-shadow: none;
}

.csh-item-single__buy-note {
    margin: 0;
    color: var(--csh-text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.csh-item-single__content {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--csh-border-color);
    color: var(--csh-text-soft);
    line-height: 1.8;
}

.csh-item-single__section-title {
    margin: 0 0 16px;
    color: var(--csh-text-main);
    font-size: 1.16rem;
    font-weight: 800;
}

.csh-account {
    display: grid;
    gap: 28px;
}

.csh-account__hero,
.csh-account__panel,
.csh-account__order-card,
.csh-account__notice {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--csh-color-border);
    border-radius: 30px;
    box-shadow: var(--csh-elevation-strong);
}

.csh-account__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 24px;
    padding: clamp(24px, 4vw, 36px);
    background:
        radial-gradient(circle at top right, rgba(10, 127, 120, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(215, 168, 75, 0.18), transparent 32%),
        var(--csh-panel-bg);
}

.csh-account__hero::after,
.csh-account__panel::after,
.csh-account__order-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
}

.csh-account__hero-copy,
.csh-account__hero-panel,
.csh-account__section,
.csh-account__panel,
.csh-account__order-card,
.csh-account__notice {
    position: relative;
    z-index: 1;
}

.csh-account__hero-copy {
    display: grid;
    gap: 14px;
    align-content: start;
}

.csh-account__kicker,
.csh-account__section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(10, 127, 120, 0.1);
    color: var(--csh-color-brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.csh-account__title {
    margin: 0;
    color: var(--csh-text-main);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.csh-account__body,
.csh-account__section-body,
.csh-account__section-note,
.csh-account__support-note {
    margin: 0;
    color: var(--csh-text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.csh-account__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.csh-account__button,
.csh-account__inline-link,
.csh-account__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.csh-account__button:hover,
.csh-account__button:focus-visible,
.csh-account__inline-link:hover,
.csh-account__inline-link:focus-visible,
.csh-account__back:hover,
.csh-account__back:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.csh-account__button--primary {
    background: linear-gradient(135deg, var(--csh-color-brand-strong), var(--csh-color-brand));
    color: var(--csh-text-inverse);
    box-shadow: 0 18px 32px rgba(6, 75, 82, 0.22);
}

.csh-account__button--ghost,
.csh-account__inline-link,
.csh-account__back {
    border: 1px solid var(--csh-border-color);
    background: var(--csh-surface-glass-strong);
    color: var(--csh-text-main);
    box-shadow: var(--csh-elevation-soft);
}

.csh-account__hero-panel,
.csh-account__stats {
    display: grid;
    gap: 14px;
    align-content: start;
}

.csh-account__hero-panel {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(23, 36, 54, 0.08);
    backdrop-filter: blur(12px);
}

.csh-account__hero-panel strong {
    color: var(--csh-text-main);
    font-size: 1.16rem;
    line-height: 1.35;
}

.csh-account__hero-panel p {
    margin: 0;
    color: var(--csh-text-soft);
    line-height: 1.7;
}

.csh-account__pill {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-account__pill--accent {
    background: rgba(215, 168, 75, 0.18);
    color: #8c6216;
}

.csh-account__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1 / -1;
}

.csh-account__stat {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(23, 36, 54, 0.08);
    backdrop-filter: blur(12px);
}

.csh-account__stat-label {
    display: block;
    color: var(--csh-text-faint);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.csh-account__stat-value {
    display: block;
    margin-top: 10px;
    color: var(--csh-text-main);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.csh-account__panel {
    padding: 26px;
    background: var(--csh-panel-bg);
}

.csh-account__panel--empty {
    display: grid;
    gap: 16px;
}

.csh-account__section {
    display: grid;
    gap: 20px;
}

.csh-account__section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.csh-account__section-title {
    margin: 10px 0 0;
    color: var(--csh-text-main);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.06;
}

.csh-account__orders {
    display: grid;
    gap: 20px;
}

.csh-account__order-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    background: var(--csh-card-bg);
}

.csh-account__order-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.csh-account__order-id {
    margin: 0;
    color: var(--csh-text-faint);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.csh-account__order-title {
    margin: 8px 0 0;
    font-size: 1.28rem;
    line-height: 1.3;
}

.csh-account__order-title,
.csh-account__order-title a {
    color: var(--csh-text-main);
    text-decoration: none;
}

.csh-account__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.csh-account__badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
}

.csh-account__badge--success {
    background: var(--csh-success-bg);
    color: var(--csh-success-text);
}

.csh-account__badge--warning {
    background: var(--csh-warning-bg);
    color: var(--csh-warning-text);
}

.csh-account__badge--danger {
    background: var(--csh-error-bg);
    color: var(--csh-error-text);
}

.csh-account__badge--info {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.csh-account__order-meta,
.csh-account__data-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    margin: 0;
}

.csh-account__order-meta div,
.csh-account__data-list div {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(23, 36, 54, 0.06);
}

.csh-account__order-meta dt,
.csh-account__data-list dt {
    color: var(--csh-text-faint);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-account__order-meta dd,
.csh-account__data-list dd {
    margin: 0;
    color: var(--csh-text-main);
    font-size: 0.98rem;
    line-height: 1.6;
    word-break: break-word;
}

.csh-account__detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.csh-account__notice {
    padding: 18px 20px;
    line-height: 1.7;
}

.csh-account__notice strong {
    display: block;
    color: var(--csh-text-main);
    font-size: 1rem;
}

.csh-account__notice p {
    margin: 6px 0 0;
    color: var(--csh-text-soft);
}

.csh-account__notice--warning {
    background: var(--csh-warning-bg);
}

.csh-account__badges--hero {
    align-self: start;
    justify-content: flex-end;
}

.csh-account__support-note {
    margin-top: 18px;
}

@media (max-width: 960px) {
    .csh-account__hero,
    .csh-account__detail-grid {
        grid-template-columns: 1fr;
    }

    .csh-account__stats {
        grid-template-columns: 1fr;
    }

    .csh-account__section-head,
    .csh-account__order-head {
        flex-direction: column;
        align-items: start;
    }

    .csh-account__badges--hero {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .csh-account__order-meta,
    .csh-account__data-list {
        grid-template-columns: 1fr;
    }

    .csh-account__hero,
    .csh-account__panel,
    .csh-account__order-card,
    .csh-account__notice {
        border-radius: 24px;
    }
}

.csh-order-checkout[hidden] {
    display: none;
}

.csh-order-checkout {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--csh-modal-backdrop);
    backdrop-filter: blur(10px);
}

.csh-order-checkout__dialog {
    position: relative;
    width: min(100%, 960px);
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: 0;
    border-radius: 32px;
    overflow: hidden;
    background: var(--csh-checkout-dialog-bg);
    box-shadow: var(--csh-elevation-strong);
}

.csh-order-checkout__close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    border: 0;
    background: transparent;
    color: var(--csh-checkout-field-label);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.csh-order-checkout__aside {
    padding: 34px 30px 32px;
    background: var(--csh-checkout-aside-bg);
    color: var(--csh-checkout-aside-text);
}

.csh-order-checkout__eyebrow {
    margin: 0;
    color: rgba(229, 231, 235, 0.82);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csh-order-checkout__title {
    margin: 14px 0 0;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.05;
}

.csh-order-checkout__body {
    margin: 16px 0 0;
    color: rgba(226, 232, 240, 0.86);
    line-height: 1.72;
}

.csh-order-checkout__summary-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    margin-top: 26px;
    padding: 16px;
    border: 1px solid var(--csh-tech-chip-border);
    border-radius: 24px;
    background: var(--csh-checkout-summary-bg);
}

.csh-order-checkout__summary-media {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    overflow: hidden;
    background: var(--csh-checkout-summary-media-bg);
}

.csh-order-checkout__summary-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csh-order-checkout__summary-media.is-placeholder span {
    color: #0f766e;
    font-size: 2rem;
    font-weight: 800;
}

.csh-order-checkout__summary-copy strong {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.csh-order-checkout__summary-copy p {
    margin: 8px 0 0;
    color: var(--csh-text-soft);
    font-size: 0.9rem;
}

.csh-order-checkout__summary-price {
    margin-top: 14px;
    font-size: 1.18rem;
    font-weight: 800;
}

.csh-order-checkout__payment-note {
    min-height: 72px;
    margin: 24px 0 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--csh-checkout-summary-bg);
    color: var(--csh-text-soft);
    line-height: 1.62;
    white-space: pre-line;
}

.csh-order-checkout__form {
    display: grid;
    gap: 18px;
    padding: 34px 30px 30px;
    background: var(--csh-checkout-form-bg);
}

.csh-order-checkout__field {
    display: grid;
    gap: 8px;
}

.csh-order-checkout__field label,
.csh-order-checkout__payments legend {
    color: var(--csh-checkout-field-label);
    font-weight: 800;
}

.csh-order-checkout__field input,
.csh-order-checkout__field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid var(--csh-input-border);
    border-radius: 16px;
    background: var(--csh-checkout-field-bg);
    color: var(--csh-checkout-field-text);
    font: inherit;
}

.csh-order-checkout__field textarea {
    min-height: 128px;
    resize: vertical;
}

.csh-order-checkout__field input:focus,
.csh-order-checkout__field textarea:focus {
    outline: 0;
    border-color: var(--csh-checkout-payment-selected);
    box-shadow: 0 0 0 4px var(--csh-focus-ring-color);
}

.csh-order-checkout__payments {
    margin: 0;
    padding: 0;
    border: 0;
}

.csh-order-checkout__payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.csh-order-checkout__payment-option {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--csh-checkout-payment-border);
    border-radius: 20px;
    background: var(--csh-checkout-payment-bg);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.csh-order-checkout__payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.csh-order-checkout__payment-option.is-selected {
    border-color: var(--csh-checkout-payment-selected);
    box-shadow: var(--csh-elevation-soft);
    transform: translateY(-1px);
}

.csh-order-checkout__payment-label {
    color: var(--csh-checkout-field-label);
    font-weight: 800;
}

.csh-order-checkout__payment-description {
    color: var(--csh-text-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.csh-order-checkout__error,
.csh-order-checkout__success {
    margin: 0;
    padding: 13px 14px;
    border-radius: 16px;
    line-height: 1.65;
    white-space: pre-line;
}

.csh-order-checkout__error {
    background: var(--csh-error-bg);
    color: var(--csh-error-text);
}

.csh-order-checkout__success {
    background: var(--csh-success-bg);
    color: var(--csh-success-text);
}

.csh-order-checkout__submit {
    min-height: 56px;
    border: 0;
    border-radius: 18px;
    background: var(--csh-checkout-button-bg);
    color: var(--csh-checkout-button-text);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--csh-checkout-button-shadow);
}

.csh-order-checkout__submit:disabled {
    cursor: progress;
    opacity: 0.78;
}

@media (max-width: 1023px) {
    .csh-item-single__layout {
        grid-template-columns: 1fr;
    }

    .csh-item-single__gallery {
        position: static;
    }

    .csh-order-checkout__dialog {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .csh-item-single__shell {
        width: min(100%, calc(100% - 20px));
    }

    .csh-item-single__gallery-frame {
        min-height: 360px;
    }

    .csh-item-single__summary {
        padding: 22px 18px;
    }

    .csh-item-single__meta-grid,
    .csh-order-checkout__payment-grid {
        grid-template-columns: 1fr;
    }

    .csh-order-checkout {
        padding: 10px;
    }

    .csh-order-checkout__aside,
    .csh-order-checkout__form {
        padding: 26px 18px 20px;
    }
}

.csh-simple-home {
    display: grid;
    gap: 34px;
    padding: 58px 0 74px;
    color: var(--csh-text-main);
}

.csh-simple-home__intro {
    display: grid;
    gap: 10px;
    text-align: center;
}

.csh-simple-home__title {
    margin: 0;
    color: var(--csh-text-main);
    font-size: 3rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.csh-simple-home__subtitle {
    margin: 0;
    color: var(--csh-text-soft);
    font-size: 1.12rem;
    line-height: 1.7;
}

.csh-simple-home__cards {
    width: min(1280px, calc(100vw - 32px));
}

.csh-simple-home__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.csh-simple-card {
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: var(--csh-card-media-bg);
    color: #ffffff;
    text-decoration: none;
    box-shadow: var(--csh-elevation-medium);
    isolation: isolate;
    transform: translateY(0);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.csh-simple-card:hover,
.csh-simple-card:focus-visible {
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: var(--csh-elevation-hover);
    outline: none;
    transform: translateY(-4px);
}

.csh-simple-card__fallback,
.csh-simple-card__media,
.csh-simple-card__shade {
    position: absolute;
    inset: 0;
}

.csh-simple-card__fallback {
    z-index: -4;
    background: linear-gradient(180deg, #172436, #0d1725);
}

.csh-simple-card__fallback img,
.csh-simple-card__media-item {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.csh-simple-card__media {
    z-index: -3;
}

.csh-simple-card__media-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04) translateX(10px);
    transition: opacity 0.58s ease, transform 0.72s ease;
}

.csh-simple-card__media-item.is-active {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.csh-simple-card__shade {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(3, 7, 18, 0.08) 0%, rgba(3, 7, 18, 0.34) 42%, rgba(3, 7, 18, 0.88) 100%),
        linear-gradient(90deg, rgba(3, 7, 18, 0.62), rgba(3, 7, 18, 0.1));
}

.csh-simple-card__content {
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 30px;
}

.csh-simple-card__title {
    color: #ffffff;
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.csh-simple-card__description {
    max-width: 25rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.65;
}

.csh-simple-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    margin-top: 6px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    font-size: 0.94rem;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.csh-simple-card--travel .csh-simple-card__cta {
    color: #064e3b;
}

.csh-simple-card--tech .csh-simple-card__cta {
    color: #075985;
}

.csh-simple-card--art .csh-simple-card__cta {
    color: #5f3214;
}

.csh-simple-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
    gap: 28px;
    align-items: start;
    padding-top: 28px;
    border-top: 1px solid var(--csh-border-color);
}

.csh-simple-contact__copy {
    display: grid;
    gap: 10px;
}

.csh-simple-contact__title {
    margin: 0;
    color: var(--csh-text-main);
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.csh-simple-contact__text {
    max-width: 42rem;
    margin: 0;
    color: var(--csh-text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.csh-simple-contact__rows {
    display: grid;
    gap: 12px;
}

.csh-simple-contact__row {
    display: grid;
    gap: 5px;
    padding: 16px 18px;
    border: 1px solid var(--csh-border-color);
    border-radius: 18px;
    background: var(--csh-surface-glass-strong);
    box-shadow: var(--csh-inset-highlight);
}

.csh-simple-contact__label {
    color: var(--csh-text-faint);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.csh-simple-contact__value {
    color: var(--csh-text-main);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
}

.csh-simple-contact a.csh-simple-contact__value:hover,
.csh-simple-contact a.csh-simple-contact__value:focus-visible {
    color: var(--csh-color-brand-strong);
    outline: none;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

@media (max-width: 1024px) {
    .csh-simple-home__grid {
        grid-template-columns: 1fr;
    }

    .csh-simple-card {
        min-height: 420px;
    }
}

@media (max-width: 720px) {
    .csh-simple-home {
        gap: 26px;
        padding: 42px 0 56px;
    }

    .csh-simple-home__title {
        font-size: 2.2rem;
    }

    .csh-simple-home__subtitle {
        font-size: 1rem;
    }

    .csh-simple-card {
        min-height: 360px;
        border-radius: 22px;
    }

    .csh-simple-card__content {
        padding: 24px 22px;
    }

    .csh-simple-card__title {
        font-size: 1.72rem;
    }

    .csh-simple-card__description {
        font-size: 0.96rem;
    }

    .csh-simple-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 420px) {
    .csh-simple-home__cards,
    .csh-simple-contact,
    .csh-simple-home__intro {
        width: min(100%, calc(100vw - 20px));
    }

    .csh-simple-card {
        min-height: 330px;
    }

    .csh-simple-card__content {
        padding: 22px 18px;
    }

    .csh-simple-card__cta {
        min-height: 42px;
        padding: 0 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .csh-simple-card,
    .csh-simple-card__media-item {
        transition: none;
    }

    .csh-simple-card:hover,
    .csh-simple-card:focus-visible,
    .csh-simple-card__media-item {
        transform: none;
    }
}
