:root {
    --tz-orange: #f36a10;
    --tz-orange-dark: #d94f00;
    --tz-orange-soft: #fff2e7;
    --tz-green: #65b600;
    --tz-blue: #1684c7;
    --tz-yellow: #efb500;
    --tz-coral: #e94820;
    --tz-ink: #242321;
    --tz-muted: #6f6b65;
    --tz-line: #e8e3dc;
    --tz-surface: #ffffff;
    --tz-surface-soft: #fffaf4;
    --tz-page: #f7f5f1;
    --tz-radius-sm: 8px;
    --tz-radius: 14px;
    --tz-radius-lg: 24px;
    --tz-shadow: 0 12px 32px rgba(45, 36, 24, 0.08);
    --tz-container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body,
body div,
body td,
body p,
body form,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body button,
body input,
body select,
body textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
    min-width: 0;
    margin: 0;
    color: var(--tz-ink);
    background: var(--tz-page);
    font-size: 15px;
    line-height: 1.5;
}

body div,
body td,
body p,
body form {
    font-size: inherit;
}

body img {
    max-width: 100%;
}

a {
    color: var(--tz-orange-dark);
    text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(22, 132, 199, 0.32);
    outline-offset: 2px;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
input[type="submit"],
input[type="button"] {
    cursor: pointer;
}

.site-container {
    width: min(calc(100% - 48px), var(--tz-container));
    margin-inline: auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.button,
.bouton,
.submit,
.button_lightbrown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: var(--tz-radius-sm);
    font-weight: 750;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.bouton:hover,
.submit:hover,
.button_lightbrown:hover {
    transform: translateY(-1px);
}

.button--primary,
.bouton,
.submit,
.button_lightbrown {
    color: #fff !important;
    background: var(--tz-orange);
    border-color: var(--tz-orange);
}

.button--primary:hover,
.bouton:hover,
.submit:hover,
.button_lightbrown:hover {
    background: var(--tz-orange-dark);
    border-color: var(--tz-orange-dark);
}

.button--secondary {
    color: var(--tz-orange-dark) !important;
    background: #fff;
    border-color: var(--tz-orange);
}

.button--danger {
    color: #fff !important;
    background: #b23b25;
    border-color: #b23b25;
}

.button--danger:hover,
.button--danger:focus-visible {
    color: #fff !important;
    background: #942f1f;
    border-color: #942f1f;
}

/* Shared header */
.site-header {
    position: relative;
    z-index: 20;
    color: var(--tz-ink);
    background: rgba(255, 255, 255, 0.98);
    border-top: 5px solid #ffc127;
    box-shadow: 0 1px 0 var(--tz-line);
}

.utility-bar {
    min-height: 24px;
    border-bottom: 1px solid #f0ece7;
}

.utility-bar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 24px;
}

.utility-bar nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px 18px;
}

.utility-bar a {
    color: #4d4944;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.utility-bar a:hover {
    color: var(--tz-orange-dark);
}

.header-main {
    display: grid;
    grid-template-columns: 72px minmax(340px, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    padding-block: 3px;
}

.brand {
    display: block;
    width: 68px;
    line-height: 0;
}

.brand img {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.site-search {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 158px auto;
    min-height: 42px;
    border: 1px solid #d9d3cc;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(36, 35, 33, 0.04);
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-search:focus-within {
    border-color: #aaa39b;
    box-shadow: 0 4px 14px rgba(36, 35, 33, 0.08);
}

.site-search input,
.site-search select,
.site-search button {
    min-width: 0;
    min-height: 42px;
    margin: 0;
    border: 0;
    border-radius: 0;
}

.site-search input {
    width: 100%;
    padding: 0 18px;
    color: var(--tz-ink);
    background: transparent;
}

.site-search select {
    width: 158px;
    padding: 0 12px;
    color: #4f4b46;
    background-color: #faf8f5;
    border-left: 1px solid var(--tz-line);
}

.site-search button {
    padding: 0 20px;
    color: #fff;
    background: #625e59;
    font-weight: 750;
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-search button:hover,
.site-search button:focus-visible {
    background: var(--tz-orange);
    box-shadow: inset 0 -3px 0 rgba(140, 51, 0, 0.22);
}

.site-search button:disabled {
    cursor: wait;
    opacity: 0.82;
}

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

.account-actions--guest .button {
    min-height: 42px;
    padding: 10px 16px;
    color: #4d4944 !important;
    background: #f0eeeb;
    border-color: #ddd7cf;
    box-shadow: none;
}

.account-actions--guest .button:hover,
.account-actions--guest .button:focus-visible {
    color: #fff !important;
    background: var(--tz-orange);
    border-color: var(--tz-orange);
    box-shadow: 0 6px 14px rgba(214, 78, 0, 0.18);
}

.account-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tz-ink);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.account-summary img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tz-orange-soft);
}

.mobile-nav-toggle {
    display: none;
    min-height: 42px;
    padding: 8px 14px;
    color: var(--tz-ink);
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius-sm);
    font-weight: 750;
}

.navigation-row {
    border-top: 1px solid var(--tz-line);
}

.navigation-row__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
}

.category-navigation,
.list-navigation {
    display: flex;
    align-items: stretch;
}

.category-navigation {
    gap: 4px;
}

.category-link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    color: var(--tz-ink) !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.category-link::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 7px;
    left: 18px;
    height: 3px;
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.category-link:hover::after {
    transform: scaleX(1);
}

.category-link--dvd::after { background: var(--tz-green); }
.category-link--games::after { background: var(--tz-blue); }
.category-link--books::after { background: var(--tz-yellow); }
.category-link--cd::after { background: var(--tz-coral); }

.list-navigation {
    align-items: center;
    gap: 8px;
}

.list-navigation--inline {
    flex: 0 0 auto;
    margin-left: 2px;
}

.list-link {
    --list-accent: var(--tz-muted);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 108px;
    min-height: 34px;
    padding: 7px 16px;
    color: #4d4944 !important;
    background: #f0eeeb;
    border: 1px solid #ddd7cf;
    border-radius: var(--tz-radius-sm);
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.list-link:hover,
.list-link:focus-visible {
    color: #fff !important;
    background: var(--list-accent);
    border-color: var(--list-accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(45, 36, 24, 0.14);
}

.list-link strong {
    font-size: 15px;
    line-height: 1;
}

.list-link span {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1;
}

.list-link--have { --list-accent: var(--tz-green); }
.list-link--want { --list-accent: var(--tz-orange); }

.has-sidebar .category-navigation {
    display: none;
}

.has-sidebar .navigation-row {
    display: none;
}

/* Page shell */
#all2,
#all2.not_home {
    width: min(calc(100% - 48px), var(--tz-container));
    margin: 14px auto 0;
    background: var(--tz-surface);
    border: 1px solid rgba(223, 216, 207, 0.8);
    border-radius: var(--tz-radius-lg);
    box-shadow: var(--tz-shadow);
    overflow: hidden;
}

#content {
    min-width: 0;
    padding: 0;
    text-align: left;
}

.page-layout {
    display: grid;
    grid-template-columns: 225px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
}

.page-sidebar {
    min-width: 0;
    align-self: start;
}

.page-main {
    min-width: 0;
}

.page-main > :first-child {
    margin-top: 0;
}

.page-main h1,
.page-main h2,
.page-main h3,
.page-main h4 {
    color: var(--tz-ink);
}

.page-main h1 {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
}

.page-main h3 {
    min-height: 0;
    margin: 18px 0 10px;
    padding: 0;
    background: none;
    border: 0;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

#resume,
.avis {
    color: var(--tz-ink);
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
}

.page-main .fil {
    margin-bottom: 10px;
    padding-bottom: 0;
    color: var(--tz-ink);
    font-size: 17px;
    border-bottom: 0;
}

.page-main .fil a {
    margin: 0;
    padding: 0;
    color: inherit;
    font-size: inherit;
    border: 0;
}

.page-main .nb_pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0 0 22px;
    padding: 12px 16px;
    color: var(--tz-muted);
    background: #faf8f5;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius-sm);
}

.page-main .nb_pages a {
    color: var(--tz-orange-dark) !important;
    font-weight: 700;
}

.pagination__label {
    margin-right: 3px;
    font-size: 12px;
}

.page-main .pagination__page,
.page-main .pagination__current,
.page-main .pagination__arrow {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
    border-radius: 7px;
    line-height: 1;
    text-decoration: none;
}

.page-main .pagination__current {
    color: #fff;
    background: var(--tz-orange);
}

.page-main .pagination__arrow {
    padding: 0;
    color: var(--tz-orange-dark) !important;
    background: #fff;
    border: 1px solid #ddd4ca;
    font-size: 16px;
}

.page-main .pagination__page:hover,
.page-main .pagination__arrow:hover {
    color: #fff !important;
    background: var(--tz-orange);
}

.pagination__ellipsis {
    padding: 0 2px;
}

/* Home */
.is-home #all2 {
    margin-top: 14px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(370px, 0.9fr) minmax(580px, 1.55fr);
    align-items: stretch;
    min-height: 270px;
    color: var(--tz-ink);
    background: var(--tz-surface-soft);
    border-bottom: 1px solid var(--tz-line);
}

.home-hero__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px 22px 40px;
    border-right: 1px solid var(--tz-line);
}

.home-hero__eyebrow {
    display: none;
    margin: 0 0 10px;
    color: var(--tz-orange-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero h1 {
    margin: 0;
    color: var(--tz-ink);
    font-size: clamp(38px, 3.35vw, 48px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.home-hero h1 span {
    display: block;
    margin-top: 8px;
    color: var(--tz-orange);
}

.home-hero__lead {
    max-width: 34ch;
    margin: 11px 0 15px;
    color: #5f5a54;
    font-size: 15px;
    line-height: 1.42;
}

.home-hero__intro .button {
    align-self: flex-start;
    min-height: 40px;
}

.home-hero__hint {
    margin: 8px 0 0;
    color: var(--tz-muted);
    font-size: 12px;
}

.home-process {
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: center;
    padding: 18px 28px 12px;
    overflow: hidden;
}

.home-process h2 {
    margin: 0 0 11px;
    color: var(--tz-ink);
    font-size: 19px;
    text-align: center;
}

.home-process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-process__steps li {
    position: relative;
    min-width: 0;
    padding-left: 38px;
}

.home-process__number {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #fff;
    background: var(--tz-green);
    border-radius: 50%;
    font-weight: 850;
}

.home-process__steps li:nth-child(2) .home-process__number { background: var(--tz-blue); }
.home-process__steps li:nth-child(3) .home-process__number { background: var(--tz-orange); }

.home-process__steps strong {
    display: block;
    color: var(--tz-ink);
    font-size: 15px;
}

.home-process__steps p {
    margin: 3px 0 0;
    color: var(--tz-muted);
    font-size: 12px;
    line-height: 1.35;
}

.home-process picture {
    position: relative;
    align-self: start;
    display: block;
    aspect-ratio: 5.15 / 1;
    margin: 8px -8px -6px;
    overflow: hidden;
}

.home-process picture img {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--tz-line);
    background: #fff;
}

.trust-item {
    padding: 15px 30px;
    text-align: center;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--tz-line);
}

.trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--tz-ink);
    font-size: 15px;
}

.trust-item span {
    color: var(--tz-muted);
    font-size: 12px;
}

.home-section {
    padding: 28px 40px 32px;
}

.home-section + .home-section {
    border-top: 1px solid var(--tz-line);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 0;
    color: var(--tz-ink);
    font-size: 24px;
}

.section-heading a {
    color: var(--tz-orange-dark);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.category-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.category-shortcut {
    position: relative;
    display: block;
    min-height: 108px;
    padding: 20px 20px 18px 25px;
    color: var(--tz-ink) !important;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    text-decoration: none;
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease;
}

.category-shortcut::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: var(--shortcut-color);
}

.category-shortcut:hover {
    transform: translateY(-2px);
    border-color: var(--shortcut-color);
}

.category-shortcut strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
}

.category-shortcut span {
    color: var(--tz-muted);
    font-size: 12px;
}

.category-shortcut--dvd { --shortcut-color: var(--tz-green); }
.category-shortcut--games { --shortcut-color: var(--tz-blue); }
.category-shortcut--books { --shortcut-color: var(--tz-yellow); }
.category-shortcut--cd { --shortcut-color: var(--tz-coral); }

/* Product cards and lists */
.product-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px;
}

.product-card,
.product {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: var(--tz-ink) !important;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-card {
    --product-accent: var(--tz-muted);
    border-bottom: 3px solid var(--product-accent);
}

.product-card--dvd { --product-accent: var(--tz-green); }
.product-card--games { --product-accent: var(--tz-blue); }
.product-card--books { --product-accent: var(--tz-yellow); }
.product-card--cd { --product-accent: var(--tz-coral); }

.product-card:hover,
.product:hover {
    transform: translateY(-3px);
    border-color: #d8cec3;
    box-shadow: 0 9px 20px rgba(45, 36, 24, 0.09);
    text-decoration: none;
}

.product-card__media {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 0.78;
    padding: 10px;
    background: #f7f4ef;
    overflow: hidden;
}

.product-card__media img.product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__availability {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    color: #fff;
    background: var(--tz-green);
    border-radius: 5px;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-card__title {
    display: -webkit-box;
    min-height: 46px;
    padding: 10px;
    color: var(--tz-ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.is-home .product-card__media {
    aspect-ratio: 0.93;
    padding: 8px;
}

.is-home .product-card__title {
    min-height: 42px;
    padding: 9px;
}

.product-similar-section .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.product-similar-section .product-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 116px;
}

.product-similar-section .product-card__media {
    width: 82px;
    min-height: 113px;
    aspect-ratio: auto;
    padding: 7px;
}

.product-similar-section .product-card__title {
    align-self: center;
    min-height: 0;
    padding: 12px;
    font-size: 12px;
    line-height: 1.35;
    -webkit-line-clamp: 4;
}

.product-similar-section .product-card__availability {
    top: 6px;
    left: 6px;
    padding: 3px 5px;
    font-size: 8px;
}

.product-list {
    display: grid;
    gap: 0;
}

.search-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: 18px 0 28px;
    padding: 48px 24px;
    color: var(--tz-muted);
    text-align: center;
    background: var(--tz-surface-soft);
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
}

.search-empty > i {
    color: var(--tz-orange);
    font-size: 38px;
}

.search-empty h2,
.search-empty p {
    margin: 0;
}

.search-empty h2 {
    color: var(--tz-ink);
    font-size: 20px;
}

.catalog-item {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid var(--tz-line);
}

.catalog-item__cover .product-card {
    width: 118px;
}

.catalog-item__body {
    min-width: 0;
}

.catalog-item__body .title {
    color: var(--tz-ink);
    font-size: 19px;
    line-height: 1.25;
}

.catalog-item__meta {
    margin-top: 8px;
    color: var(--tz-muted);
    font-size: 13px;
}

.catalog-item__points {
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 9px;
    color: #4b6814;
    background: #f0f8df;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.catalog-item__summary {
    margin-top: 14px;
    color: #5a5651;
    line-height: 1.55;
}

.catalog-item__actions {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 8px;
    min-width: 180px;
    text-align: right;
}

.catalog-item__actions img {
    max-width: 42px;
    height: auto;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
    color: var(--tz-muted);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.product-rating__label {
    font-weight: 650;
}

.product-rating__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.product-rating__stars i {
    font-size: 18px;
    line-height: 1;
}

.product-rating__stars .is-filled {
    color: var(--tz-orange);
}

.product-rating__stars .is-empty {
    color: #cfc8bf;
}

.catalog-item__actions .product-rating {
    flex: 0 0 100%;
    justify-content: inherit;
    margin: 1px 0 3px;
}

.review-card {
    padding: 18px 0;
    border-top: 1px solid var(--tz-line);
}

.review-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.review-card__header p {
    margin: 0;
    color: var(--tz-muted);
    font-size: 13px;
}

.review-card__header a {
    color: var(--tz-ink);
    font-weight: 750;
}

.review-card__content {
    margin-top: 10px;
    color: #4f4b46;
    font-size: 14px;
    line-height: 1.6;
}

.catalog-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    min-height: 38px;
    padding: 8px 14px;
    color: #fff !important;
    border: 1px solid transparent;
    border-radius: var(--tz-radius-sm);
    font-size: 14px;
    font-family: inherit;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.catalog-action:hover {
    transform: translateY(-1px);
    filter: saturate(1.08);
}

.catalog-action--have {
    background: var(--tz-green);
}

.catalog-action--want {
    background: var(--tz-orange);
}

.catalog-action.is-active {
    filter: brightness(0.88);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.68);
}

/* Sidebar */
.sidebar-navigation {
    display: grid;
    gap: 10px;
}

#total_menu {
    width: 100%;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    background: #fff;
}

#total_menu h2 {
    height: auto;
    min-height: 36px;
    margin: 0;
    padding: 0;
    background-image: none;
    border-bottom: 1px solid var(--tz-line);
    font-size: 13px;
}

#total_menu h2:last-of-type {
    border-bottom: 0;
}

#total_menu h2 a {
    display: block;
    padding: 9px 12px;
    color: var(--tz-ink);
    text-decoration: none;
}

#total_menu h2.menu_dvd { border-left: 5px solid var(--tz-green); }
#total_menu h2.menu_jv { border-left: 5px solid var(--tz-blue); }
#total_menu h2.menu_livres { border-left: 5px solid var(--tz-yellow); }
#total_menu h2.menu_cd { border-left: 5px solid var(--tz-coral); }

#menu_in_dvd,
#menu_in_jv,
#menu_in_livres,
#menu_in_cd {
    padding: 4px 0;
    background: #faf8f5;
    border-bottom: 1px solid var(--tz-line);
}

#menu_in_dvd a,
#menu_in_jv a,
#menu_in_livres a,
#menu_in_cd a {
    min-height: 26px;
    padding: 5px 12px 5px 14px;
    font-size: 13px;
    line-height: 1.25;
}

.left_plus {
    width: 100%;
    margin-top: 10px;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    overflow: hidden;
}

.left_plus > span {
    display: block;
    padding: 10px 12px;
    color: var(--tz-ink);
    background: #fff;
    border-bottom: 1px solid var(--tz-line);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.left_plus b {
    display: none;
}

.left_plus a.feed-item,
.left_plus a.feed-item:hover {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    padding: 6px 10px;
    color: #4c4945;
    background: #fff;
    border-bottom: 1px solid #f0ebe4;
    font-size: 13px;
    text-decoration: none;
}

.left_plus a.feed-item:last-of-type {
    border-bottom: 0;
}

.left_plus a.feed-item:hover {
    background: #faf8f5;
}

.left_plus .feed-item__icon {
    display: inline-flex;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    padding: 0;
    color: #fff;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
}

.feed-item__icon--dvd { background: var(--tz-green); }
.feed-item__icon--games { background: var(--tz-blue); }
.feed-item__icon--books { background: var(--tz-yellow); }
.feed-item__icon--music { background: var(--tz-coral); }
.feed-item__icon--product { background: var(--tz-muted); }

.left_plus .feed-item__title {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    color: #4c4945;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
}

.feed-item:hover .feed-item__icon {
    transform: translateY(-1px);
    filter: saturate(1.08);
}

/* Account */
.account-page {
    display: grid;
    gap: 22px;
}

.account-page__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--tz-surface-soft);
    border: 1px solid #f2e6d8;
    border-radius: var(--tz-radius);
}

.account-page__icon,
.account-card__icon,
.account-highlight__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.account-page__icon {
    width: 54px;
    height: 54px;
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
    font-size: 30px;
}

.account-page__header h1 {
    margin: 1px 0 2px;
    font-size: clamp(28px, 3vw, 38px);
}

.account-page__header p:last-child {
    margin: 0;
    color: var(--tz-muted);
}

.account-eyebrow {
    margin: 0;
    color: var(--tz-orange-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.account-service-status,
.account-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
}

.account-service-status {
    color: #315f00;
    background: #eef9df;
}

.account-service-status i,
.account-notice i {
    font-size: 20px;
}

.account-notice {
    width: 100%;
    color: #315f00;
    background: #eef9df;
    border: 1px solid #d7edbb;
    border-radius: var(--tz-radius-sm);
}

.account-notice p {
    margin: 0;
}

.account-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.account-card {
    display: flex;
    min-width: 0;
    min-height: 250px;
    flex-direction: column;
    padding: 19px;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    box-shadow: 0 8px 24px rgba(45, 36, 24, 0.05);
}

.account-card__heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
}

.account-card__heading h2 {
    margin: 2px 0 0;
    font-size: 18px;
    line-height: 1.2;
}

.account-card__icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
}

.account-card__icon--blue {
    color: #0b6399;
    background: #e4f3fc;
}

.account-card__icon--green {
    color: #417500;
    background: #edf8df;
}

.account-card__icon--orange {
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
}

.account-address {
    display: grid;
    gap: 9px;
    color: #4d4945;
    font-style: normal;
    line-height: 1.4;
}

.account-address > span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.account-address i {
    flex: 0 0 18px;
    margin-top: 2px;
    color: var(--tz-blue);
    font-size: 17px;
}

.account-card__actions {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
}

.account-card__actions a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    max-width: 100%;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.account-card__actions a:hover {
    text-decoration: underline;
}

.account-card__actions .account-card__primary {
    justify-content: space-between;
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    color: #fff;
    background: var(--tz-orange);
    border-radius: var(--tz-radius-sm);
    text-decoration: none;
}

.account-reputation {
    display: grid;
    gap: 12px;
    color: var(--tz-ink);
    text-decoration: none;
}

.account-reputation__score {
    font-size: 26px;
    font-weight: 850;
    line-height: 1;
}

.account-reputation__score small {
    display: block;
    margin-top: 6px;
    color: var(--tz-muted);
    font-size: 12px;
    font-weight: 650;
}

.account-reputation__meter {
    display: flex;
    height: 9px;
    overflow: hidden;
    background: #eeeae4;
    border-radius: 999px;
}

.account-reputation__meter .is-positive { background: var(--tz-green); }
.account-reputation__meter .is-neutral { background: #afa89e; }
.account-reputation__meter .is-negative { background: var(--tz-coral); }

.account-reputation__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    color: var(--tz-muted);
    font-size: 11px;
}

.account-reputation__details span,
.account-reputation__details b {
    display: block;
}

.account-reputation__details b {
    color: var(--tz-ink);
    font-size: 15px;
}

.account-card__empty,
.account-cents {
    color: var(--tz-muted);
}

.account-balance {
    display: grid;
    gap: 6px;
    margin: 2px 0 8px;
}

.account-balance strong {
    color: var(--tz-green);
    font-size: 38px;
    line-height: 1;
}

.account-balance span {
    color: var(--tz-muted);
    font-size: 12px;
    font-weight: 700;
}

.account-cents {
    margin: 0;
    font-size: 12px;
}

.account-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.account-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 17px;
    background: #faf8f5;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius-sm);
}

.account-highlight__icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
}

.account-highlight__icon--blue {
    color: #0b6399;
    background: #e4f3fc;
}

.account-highlight__icon--orange {
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
}

.account-highlight h2 {
    margin: 0 0 3px;
    font-size: 14px;
}

.account-highlight p {
    margin: 0;
    color: var(--tz-muted);
    font-size: 13px;
    line-height: 1.45;
}

.account-inbox {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
}

.account-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 19px;
    border-bottom: 1px solid var(--tz-line);
}

.account-section-heading h2 {
    margin: 3px 0 0;
    font-size: 20px;
}

.account-section-heading h2 a {
    color: var(--tz-ink);
    text-decoration: none;
}

.account-inline-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 12px;
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
    border-radius: var(--tz-radius-sm);
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.messages-table-wrap {
    max-width: 100%;
    overflow-x: auto;
}

.messages-table {
    width: 100%;
    table-layout: fixed;
}

.messages-table th {
    padding: 9px 12px;
    color: var(--tz-muted);
    background: #faf8f5;
    font-size: 11px;
    font-weight: 750;
    text-align: left;
    text-transform: uppercase;
}

.messages-table th:first-child {
    width: 48px;
}

.messages-table th:nth-child(2) {
    width: 18%;
}

.messages-table th:last-child {
    width: 92px;
    text-align: right;
}

.messages-table td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--tz-line);
    vertical-align: middle;
}

.messages-table tbody tr:last-child td {
    border-bottom: 0;
}

.message-row.is-even td {
    background: #fdfbf8;
}

.message-row.is-unread td {
    background: var(--tz-orange-soft);
}

.message-row.is-priority td:first-child {
    box-shadow: inset 3px 0 0 var(--tz-coral);
}

.message-status {
    color: #9b948a;
    font-size: 19px;
    text-align: center;
}

.is-unread .message-status {
    color: var(--tz-orange-dark);
}

.message-sender a,
.message-content a {
    color: var(--tz-ink);
    text-decoration: none;
}

.message-sender a {
    font-weight: 700;
}

.message-content {
    min-width: 0;
}

.message-content a {
    display: grid;
    min-width: 0;
}

.message-content strong,
.message-content span:not(.message-admin) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-content strong {
    font-size: 13px;
}

.message-content span:not(.message-admin) {
    color: var(--tz-muted);
    font-size: 12px;
}

.message-admin {
    display: inline-block;
    width: fit-content;
    margin-bottom: 4px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
}

.message-date {
    color: var(--tz-muted);
    font-size: 11px;
    text-align: right;
    white-space: nowrap;
}

.account-inbox__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 150px;
    padding: 24px;
    color: var(--tz-muted);
    text-align: left;
}

.account-inbox__empty i {
    color: var(--tz-orange);
    font-size: 30px;
}

.account-inbox__empty p {
    margin: 0;
}

/* Registration */
.is-signup {
    background: #fff;
}

.signup-site-header {
    border-top-width: 4px;
}

.signup-headerbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
}

.signup-headerbar p {
    margin: 0;
    color: var(--tz-muted);
    font-size: 14px;
}

.signup-headerbar a:not(.brand) {
    margin-left: 4px;
    font-weight: 700;
}

.is-signup #all2,
.is-signup #all2.not_home {
    width: min(calc(100% - 48px), 1240px);
    margin: 0 auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.signup-layout {
    display: grid;
    grid-template-columns: minmax(280px, 350px) minmax(0, 720px);
    justify-content: center;
    gap: 64px;
    padding: 52px 24px 64px;
}

.signup-intro {
    position: sticky;
    top: 32px;
    padding: 8px 48px 8px 0;
    border-right: 1px solid var(--tz-line);
}

.signup-intro h1 {
    margin: 0;
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.signup-intro__lead {
    margin: 20px 0 0;
    color: var(--tz-muted);
    font-size: 15px;
    line-height: 1.65;
}

.signup-intro__steps {
    display: grid;
    gap: 18px;
    margin: 30px 0 0;
    padding-left: 22px;
}

.signup-intro__steps li {
    padding-left: 8px;
}

.signup-intro__steps li::marker {
    color: var(--tz-orange-dark);
    font-weight: 800;
}

.signup-intro__steps strong,
.signup-intro__steps span {
    display: block;
}

.signup-intro__steps strong {
    font-size: 14px;
}

.signup-intro__steps span {
    margin-top: 3px;
    color: var(--tz-muted);
    font-size: 13px;
    line-height: 1.5;
}

.signup-intro__note {
    margin: 30px 0 0;
    color: var(--tz-orange-dark);
    font-size: 12px;
    font-weight: 700;
}

.signup-page {
    width: 100%;
    min-width: 0;
    padding: 6px 0 18px;
}

.signup-header {
    max-width: 720px;
    margin-bottom: 18px;
}

.signup-eyebrow {
    margin: 0 0 8px;
    color: var(--tz-orange-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.signup-header h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.signup-header p {
    margin: 0;
    color: var(--tz-muted);
    font-size: 16px;
}

.signup-required {
    margin: 0;
    color: var(--tz-muted);
    font-size: 13px;
}

.signup-required span,
.signup-field > span b,
.signup-choice b {
    color: var(--tz-orange-dark);
}

.signup-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    color: #8b2e19;
    background: #fff1eb;
    border-left: 4px solid var(--tz-coral);
    border-radius: 0 var(--tz-radius-sm) var(--tz-radius-sm) 0;
}

.signup-form {
    margin-top: 12px;
}

.signup-section {
    padding: 28px 0;
    border-top: 1px solid var(--tz-line);
}

.signup-section__header {
    margin-bottom: 20px;
}

.signup-section__header h2 {
    margin: 0 0 5px;
    font-size: 21px;
    line-height: 1.2;
}

.signup-section__header p {
    margin: 0;
    color: var(--tz-muted);
    font-size: 14px;
}

.signup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.signup-grid--identity {
    grid-template-columns: minmax(150px, 0.7fr) repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.signup-grid--address {
    margin-top: 18px;
}

.signup-field {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
    color: var(--tz-ink);
}

.signup-field--full {
    grid-column: 1 / -1;
}

.signup-field > span:first-child {
    font-size: 14px;
    font-weight: 650;
}

.signup-field small {
    color: var(--tz-muted);
    font-size: 12px;
    font-weight: 450;
    line-height: 1.35;
}

.signup-field-help {
    margin: -10px 0 0;
    color: var(--tz-muted);
    font-size: 12px;
}

.signup-page .signup-field input:not([type="checkbox"]),
.signup-page .signup-field select {
    width: 100%;
    max-width: none;
    min-height: 44px;
    margin: 0;
    padding: 10px 12px;
    color: var(--tz-ink);
    background: #fff;
    border: 1px solid #cfc7be;
    border-radius: var(--tz-radius-sm);
}

.signup-date {
    display: grid;
    grid-template-columns: minmax(80px, 0.65fr) minmax(150px, 1.35fr) minmax(105px, 0.8fr);
    gap: 10px;
}

.signup-date select {
    min-width: 0;
}

.signup-consents {
    display: grid;
    gap: 14px;
    padding: 24px 0;
    border-top: 1px solid var(--tz-line);
}

.signup-choice {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #4c4945;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.signup-choice input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--tz-orange);
}

.signup-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
}

.signup-submit {
    gap: 8px;
    min-width: 190px;
}

.signup-actions small {
    color: var(--tz-muted);
    font-size: 12px;
}

.signup-footer {
    padding: 22px 0 26px;
    border-top: 1px solid var(--tz-line);
}

.signup-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.signup-footer p {
    margin: 0;
    color: var(--tz-muted);
    font-size: 12px;
}

.signup-footer nav {
    display: flex;
    gap: 18px;
}

.signup-footer a {
    color: var(--tz-muted);
    font-size: 12px;
}

/* Login */
.is-login {
    background: #f3f0eb;
}

.is-login #all2,
.is-login #all2.not_home {
    width: min(calc(100% - 48px), 1320px);
    margin: 24px auto;
    background: #fff;
    border: 1px solid rgba(223, 216, 207, 0.82);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(45, 36, 24, 0.12);
    overflow: hidden;
}

.login-layout {
    display: grid;
    grid-template-columns: minmax(390px, 0.9fr) minmax(500px, 1.1fr);
    min-height: 760px;
}

.login-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 56px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 216, 92, 0.52), transparent 28%),
        radial-gradient(circle at 8% 88%, rgba(131, 53, 8, 0.28), transparent 34%),
        linear-gradient(145deg, #d94f00 0%, #f36a10 54%, #f3a719 100%);
    overflow: hidden;
}

.login-intro::after {
    position: absolute;
    right: -90px;
    bottom: 80px;
    width: 260px;
    height: 260px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.06), 0 0 0 86px rgba(255, 255, 255, 0.04);
}

.login-intro__logo,
.login-intro__content,
.login-intro__note {
    position: relative;
    z-index: 1;
}

.login-intro__logo {
    display: grid;
    place-items: center;
    width: 104px;
    height: 104px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(100, 34, 0, 0.2);
}

.login-intro__logo img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.login-intro__content {
    margin-block: 58px 44px;
}

.login-eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-intro .login-eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.login-intro h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 4.2vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.login-intro__lead {
    max-width: 48ch;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.65;
}

.login-benefits {
    display: grid;
    gap: 16px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.login-benefits li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    line-height: 1.55;
}

.login-benefits li::before {
    position: absolute;
    top: 0.55em;
    left: 2px;
    width: 8px;
    height: 8px;
    content: "";
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.login-intro__note {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
}

.login-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    padding: 42px 64px 54px;
    background: #fff;
}

.login-panel__register {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    color: var(--tz-muted);
    font-size: 15px;
}

.login-panel__register a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 8px 14px;
    color: var(--tz-orange-dark);
    border: 1px solid var(--tz-orange);
    border-radius: var(--tz-radius-sm);
    font-weight: 750;
    text-decoration: none;
}

.login-panel__register a:hover {
    color: #fff;
    background: var(--tz-orange);
}

.login-card {
    align-self: center;
    width: min(100%, 480px);
    margin: 0 auto 54px;
}

.login-card__header {
    margin-bottom: 30px;
}

.login-card__header .login-eyebrow {
    color: var(--tz-orange-dark);
}

.login-card__header h2 {
    margin: 0;
    color: var(--tz-ink);
    font-size: clamp(38px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.login-card__header > p:last-child {
    margin: 14px 0 0;
    color: var(--tz-muted);
    font-size: 16px;
    line-height: 1.55;
}

.login-alert {
    margin: 0 0 22px;
    padding: 14px 16px;
    color: #8b2e19;
    background: #fff1eb;
    border-left: 4px solid var(--tz-coral);
    border-radius: 0 var(--tz-radius-sm) var(--tz-radius-sm) 0;
    font-size: 14px;
    line-height: 1.5;
}

.login-form {
    display: grid;
    gap: 20px;
}

.login-field {
    display: grid;
    gap: 8px;
    color: var(--tz-ink);
    font-size: 15px;
    font-weight: 700;
}

.login-field input {
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 12px 14px;
    color: var(--tz-ink);
    background: #fff;
    border: 1px solid #cfc7be;
    border-radius: 10px;
    font-size: 16px;
}

.login-forgot {
    width: fit-content;
    margin-top: -6px;
    font-size: 14px;
    font-weight: 650;
}

.login-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
    font-size: 16px;
}

.login-card__help {
    margin: 24px 0 0;
    color: var(--tz-muted);
    font-size: 14px;
}

/* Legacy content made responsive */
.page-main input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]),
.page-main select,
.page-main textarea,
#contacteur input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]),
#contacteur textarea {
    width: min(100%, 560px);
    min-height: 44px;
    padding: 10px 12px;
    color: var(--tz-ink);
    background: #fff;
    border: 1px solid #cfc7be;
    border-radius: var(--tz-radius-sm);
}

.page-main textarea,
#contacteur textarea {
    min-height: 130px;
    resize: vertical;
}

.page-main form {
    max-width: 100%;
}

.page-main > table,
.table_liste {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
}

.table_liste {
    display: table;
}

.liste_head {
    color: var(--tz-ink);
    background: #f3efe9;
    background-image: none;
}

.liste_m,
.liste_foot {
    color: var(--tz-ink);
    background-image: none;
    border-bottom: 1px solid var(--tz-line);
}

.p,
.listing_resume,
.lowerright {
    color: #4f4c48;
    background: #faf8f5;
    border-radius: var(--tz-radius-sm);
}

#news {
    margin: 16px 0;
    padding: 13px 18px;
    color: #7d3100;
    background: #fff1e4;
    border: 1px solid #ffd3b1;
    border-radius: var(--tz-radius-sm);
}

#news a {
    color: #7d3100;
    font-weight: 750;
}

#title_product h1 {
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
    border: 0;
}

.product-detail-header {
    --product-detail-accent: var(--tz-muted);
    --product-detail-accent-ink: #fff;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(190px, 224px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 4vw, 54px);
    min-height: 390px;
    margin-bottom: 18px;
    padding: clamp(28px, 4vw, 48px);
    color: #fff;
    background: #26221e;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(40, 31, 22, 0.2);
    overflow: hidden;
}

.product-detail-header--dvd {
    --product-detail-accent: var(--tz-green);
}

.product-detail-header--games {
    --product-detail-accent: var(--tz-blue);
}

.product-detail-header--books {
    --product-detail-accent: var(--tz-yellow);
    --product-detail-accent-ink: #3d2f00;
}

.product-detail-header--cd {
    --product-detail-accent: var(--tz-coral);
}

.product-detail-header::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: rgba(24, 21, 18, 0.7);
}

.product-detail-backdrop {
    position: absolute;
    z-index: -2;
    inset: -42px;
    width: calc(100% + 84px);
    height: calc(100% + 84px);
    object-fit: cover;
    filter: blur(30px) saturate(1.18);
    opacity: 0.75;
    transform: scale(1.06);
}

.product-detail-cover,
.product-detail-title {
    position: relative;
    z-index: 1;
}

.product-detail-cover .product-card {
    width: min(100%, 224px);
    margin: 0 auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.product-detail-cover .product-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.product-detail-cover .product-card__media {
    aspect-ratio: 0.68;
    padding: 0;
    background: #34302c;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
}

.product-detail-header--cd .product-detail-cover .product-card__media {
    aspect-ratio: 1;
}

.product-detail-cover .product-card__media img.product-card__image {
    object-fit: contain;
    border-radius: inherit;
}

.product-detail-cover .product-card__availability {
    display: none;
}

.product-detail-cover .product-card__title {
    min-height: 0;
    margin-top: 14px;
    padding: 12px 14px;
    color: var(--tz-orange-dark);
    background: #fff;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.product-detail-title h1 {
    margin: 12px 0 26px;
}

.product-detail-title {
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
}

.product-detail-kickers {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    min-height: 44px;
    padding: 5px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 13px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

#title_product .product-detail-universe,
#title_product .product-detail-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    color: #3f3b36;
    background: #f3f0ec;
    border: 0;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    margin-top: 0;
    text-align: center;
}

#title_product .product-detail-universe {
    color: var(--product-detail-accent-ink);
    background: var(--product-detail-accent);
}

#title_product .product-detail-status.is-available {
    color: #315800;
    background: #edf8df;
}

#title_product .product-detail-status.is-unavailable {
    color: #55504a;
    background: #efedea;
}

.product-detail-universe i,
.product-detail-status i {
    font-size: 16px;
}

.product-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
    max-width: 720px;
    margin: 0;
}

.product-detail-meta > div {
    min-width: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.product-detail-meta dt {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.product-detail-meta dd {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
}

.product-detail-meta a {
    color: #fff !important;
    text-decoration-color: rgba(255, 255, 255, 0.48);
    text-underline-offset: 3px;
}

.product-detail-meta a:hover {
    color: #fff !important;
    text-decoration-color: #fff;
}

.product-detail-points dd {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #dfffaa;
}

.product-detail-points i {
    font-size: 18px;
}

.product-members,
#big_jai {
    display: grid;
    grid-template-columns: 134px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 0;
    height: auto;
    margin: 10px 0;
    padding: 12px;
    background: #faf8f5;
    background-image: none;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    overflow: hidden;
}

.product-members__action {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    width: 134px;
    min-width: 0;
    padding: 8px 12px;
    color: #fff !important;
    background: var(--tz-green);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(38, 129, 24, 0.16);
}

.product-members__action--want {
    background: var(--tz-blue);
    box-shadow: 0 5px 15px rgba(25, 84, 155, 0.16);
}

.product-members__action:hover {
    filter: saturate(1.08) brightness(1.03);
}

.product-members__action.is-active {
    filter: brightness(0.88);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.68);
}

.catalog-action:focus-visible,
.product-members__action:focus-visible {
    outline: 3px solid rgba(12, 93, 166, 0.3);
    outline-offset: 3px;
}

.product-members__action strong {
    color: inherit;
    font-size: 15px;
}

.product-members__action span {
    font-size: 11px;
    opacity: 0.86;
}

.product-members__users {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-height: 58px;
}

.user {
    float: none;
    width: 58px;
    height: 64px;
    font-size: 11px;
}

.user img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    background: #fff;
}

#info_message {
    position: fixed;
    top: 24px;
    right: 24px;
    left: auto;
    display: none;
    width: min(430px, calc(100% - 48px));
    height: auto;
    min-height: 90px;
    padding: 24px 52px 24px 24px;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    box-shadow: var(--tz-shadow);
}

#info_message[style*="left: 0px"],
#info_message.is-visible {
    display: block;
}

.alert-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    padding: 0;
    color: var(--tz-muted);
    background: transparent;
    border: 0;
    font-size: 25px;
}

#message_content {
    display: block;
    width: auto;
    padding: 0;
    color: var(--tz-ink);
    line-height: 1.5;
}

#small_info {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: calc(100% - 32px);
    min-height: 44px;
    padding: 10px 16px;
    color: #fff;
    background: rgba(39, 34, 29, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(45, 36, 24, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 160ms ease, transform 160ms ease;
    font-size: 14px;
}

#small_info[hidden] {
    display: none !important;
}

#small_info.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.ajax-status__spinner,
.is-ajax-pending::after {
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ajax-status-spin 680ms linear infinite;
}

.ajax-status__spinner {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.ajax-status__label {
    min-width: 0;
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.is-ajax-pending {
    cursor: wait !important;
    opacity: 0.84;
    pointer-events: none;
}

.is-ajax-pending::after {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 14px;
    height: 14px;
    margin-top: -9px;
    content: "";
}

.catalog-action.is-ajax-pending,
.product-members__action.is-ajax-pending {
    padding-left: 38px;
}

@keyframes ajax-status-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    #small_info {
        transition: none;
    }

    .ajax-status__spinner,
    .is-ajax-pending::after {
        animation-duration: 1.4s;
    }
}

.is-searching {
    overflow: hidden;
}

.search-loading {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(247, 245, 241, 0.88);
    backdrop-filter: blur(3px);
}

.search-loading[hidden] {
    display: none !important;
}

.search-loading__panel {
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(100%, 390px);
    padding: 22px 24px;
    color: var(--tz-ink);
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    box-shadow: 0 18px 50px rgba(45, 36, 24, 0.16);
}

.search-loading__spinner {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 3px solid #f3d7c3;
    border-top-color: var(--tz-orange);
    border-radius: 50%;
    animation: search-loading-spin 700ms linear infinite;
}

.search-loading__message {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.search-loading__message strong {
    font-size: 16px;
}

.search-loading__message span {
    color: var(--tz-muted);
    font-size: 12px;
    line-height: 1.45;
}

@keyframes search-loading-spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.site-footer {
    padding: 38px 0 20px;
    color: #ddd8d1;
    background: #2f2d2a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.footer-grid section {
    min-width: 0;
}

.footer-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-title--dvd { color: #a8df40; }
.footer-title--games { color: #4db8f1; }
.footer-title--books { color: #ffd350; }
.footer-title--cd { color: #ff795c; }

.footer-grid a {
    display: block;
    padding: 3px 0;
    color: #ddd8d1;
    font-size: 13px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.13);
}

.footer-bottom p {
    margin: 0;
    color: #aaa49d;
    font-size: 12px;
}

.footer-bottom a {
    color: #fff;
}

.partner-link {
    padding: 14px 24px 28px;
    text-align: center;
}

.partner-link a {
    color: #8b857e;
    font-size: 11px;
    text-decoration: none;
}

@media (max-width: 1160px) {
    .header-main {
        grid-template-columns: 72px minmax(300px, 1fr) auto;
        gap: 18px;
    }

    .brand,
    .brand img {
        width: 66px;
        height: 66px;
    }

    .category-link {
        padding-inline: 18px;
    }

    .home-hero {
        grid-template-columns: minmax(330px, 0.88fr) minmax(520px, 1.4fr);
    }

    .home-hero__intro {
        padding-left: 32px;
    }

    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-container,
    #all2,
    #all2.not_home {
        width: min(calc(100% - 28px), var(--tz-container));
    }

    .utility-bar {
        display: none;
    }

    .header-main {
        grid-template-columns: 64px 1fr auto;
        min-height: auto;
        padding-block: 10px 14px;
    }

    .brand,
    .brand img {
        width: 62px;
        height: 62px;
    }

    .site-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .account-actions {
        justify-self: end;
    }

    .account-actions--member .list-navigation--inline {
        display: none;
    }

    .account-actions .button--primary {
        padding-inline: 12px;
        font-size: 12px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navigation-row {
        display: none;
    }

    .navigation-row.is-open {
        display: block;
    }

    .navigation-row__inner {
        display: grid;
        gap: 12px;
        padding-block: 14px;
    }

    .category-navigation {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .category-link {
        justify-content: center;
        min-height: 48px;
        padding: 0 10px;
    }

    .list-navigation {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .list-navigation--inline {
        display: none;
    }

    .home-hero {
        grid-template-columns: 1fr;
    }

    .home-hero__intro {
        padding: 38px 34px;
        border-right: 0;
        border-bottom: 1px solid var(--tz-line);
    }

    .home-hero__lead {
        max-width: 52ch;
    }

    .home-process {
        padding: 32px 28px 20px;
    }

    .home-process picture img {
        height: auto;
    }

    .category-shortcuts {
        grid-template-columns: 1fr 1fr;
    }

    .page-layout {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .page-sidebar {
        order: 2;
        position: static;
    }

    .page-main {
        order: 1;
    }

    .product-detail-header {
        grid-template-columns: minmax(160px, 190px) minmax(0, 1fr);
        gap: 28px;
        min-height: 340px;
        padding: 30px;
    }

    .is-login #all2,
    .is-login #all2.not_home {
        width: min(calc(100% - 28px), 760px);
        margin: 14px auto;
    }

    .login-layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .login-intro {
        min-height: 600px;
        padding: 44px;
    }

    .login-intro__content {
        margin-block: 44px 34px;
    }

    .login-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .login-benefits li {
        padding: 20px 0 0;
    }

    .login-benefits li::before {
        top: 2px;
        left: 2px;
    }

    .login-panel {
        min-height: 650px;
        padding: 38px 48px 54px;
    }

    .signup-layout {
        grid-template-columns: minmax(0, 720px);
        gap: 36px;
        padding-top: 40px;
    }

    .signup-intro {
        position: static;
        padding: 0 0 34px;
        border-right: 0;
        border-bottom: 1px solid var(--tz-line);
    }

    .signup-intro__lead {
        max-width: 62ch;
    }

    .signup-grid--identity {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-sidebar .left_plus {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 620px) {
    body {
        background: #fff;
    }

    .site-container,
    #all2,
    #all2.not_home {
        width: 100%;
    }

    .site-header {
        border-top-width: 5px;
    }

    .header-main {
        grid-template-columns: 58px 1fr auto;
        gap: 10px;
        padding: 8px 14px 12px;
    }

    .brand,
    .brand img {
        width: 56px;
        height: 56px;
    }

    .account-actions .button--primary {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 11px;
    }

    .account-actions--guest {
        gap: 6px;
    }

    .account-actions--guest .button {
        min-height: 38px;
        padding: 7px 9px;
        font-size: 10px;
    }

    .account-summary span {
        display: none;
    }

    .site-search {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 46px;
    }

    .site-search select {
        display: none;
    }

    .site-search input,
    .site-search button {
        min-height: 46px;
    }

    .site-search input {
        padding-inline: 13px;
        font-size: 13px;
    }

    .site-search button {
        padding-inline: 14px;
        font-size: 12px;
    }

    .navigation-row__inner {
        padding-inline: 14px;
    }

    .category-navigation {
        grid-template-columns: 1fr 1fr;
    }

    #all2,
    #all2.not_home,
    .is-home #all2 {
        margin-top: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .home-hero__intro {
        padding: 34px 20px 30px;
    }

    .home-hero h1 {
        font-size: clamp(38px, 13vw, 53px);
    }

    .home-hero__lead {
        font-size: 16px;
    }

    .home-process {
        padding: 28px 18px 18px;
    }

    .home-process h2 {
        text-align: left;
    }

    .home-process__steps {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .home-process picture {
        position: static;
        aspect-ratio: auto;
        margin: 16px -8px 0;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .home-process picture img {
        position: static;
        width: 760px;
        max-width: none;
        height: 304px;
        object-fit: contain;
        transform: none;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 15px 20px;
        text-align: left;
    }

    .trust-item + .trust-item {
        border-top: 1px solid var(--tz-line);
        border-left: 0;
    }

    .home-section {
        padding: 28px 18px 32px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 21px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-similar-section .product-grid {
        grid-template-columns: 1fr;
    }

    .product-similar-section .product-card {
        grid-template-columns: 70px minmax(0, 1fr);
        min-height: 96px;
    }

    .product-similar-section .product-card__media {
        width: 70px;
        min-height: 93px;
    }

    .category-shortcuts {
        grid-template-columns: 1fr;
    }

    .page-layout {
        padding: 24px 16px;
    }

    .catalog-item {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 14px;
    }

    .catalog-item__cover .product-card {
        width: 90px;
    }

    .catalog-item__body .title {
        font-size: 16px;
    }

    .catalog-item__summary {
        display: none;
    }

    .catalog-item__actions {
        grid-column: 2;
        justify-content: flex-start;
        min-width: 0;
        text-align: left;
    }

    .product-detail-header {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
        padding: 28px 20px;
        text-align: center;
    }

    .product-detail-cover .product-card {
        width: min(54vw, 186px);
    }

    .product-detail-title h1 {
        margin: 10px 0 24px;
        font-size: clamp(28px, 9vw, 40px);
    }

    .product-detail-kickers {
        justify-content: center;
    }

    .product-detail-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }

    .product-detail-cover .product-card__title {
        margin-top: 10px;
        padding: 10px 12px;
    }

    .product-members {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .product-members__action {
        width: 100%;
        padding-inline: 10px;
    }

    .product-members__action strong {
        font-size: 14px;
    }

    .product-members__action span {
        font-size: 11px;
    }

    .is-login #all2,
    .is-login #all2.not_home {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .login-intro {
        min-height: 390px;
        padding: 28px 20px 32px;
    }

    .login-intro__logo {
        width: 78px;
        height: 78px;
        padding: 8px;
        border-radius: 18px;
    }

    .login-intro__logo img {
        width: 64px;
        height: 64px;
    }

    .login-intro__content {
        margin-block: 30px 22px;
    }

    .login-intro h1 {
        font-size: 34px;
    }

    .login-intro__lead {
        margin-top: 16px;
        font-size: 15px;
    }

    .login-benefits {
        display: none;
    }

    .login-panel {
        min-height: 610px;
        padding: 28px 20px 48px;
    }

    .login-panel__register {
        justify-content: flex-start;
        font-size: 14px;
    }

    .login-card {
        margin: 56px auto 0;
    }

    .login-card__header h2 {
        font-size: 36px;
    }

    .signup-page {
        padding: 0;
    }

    .signup-headerbar {
        min-height: 70px;
        padding-inline: 16px;
    }

    .signup-headerbar p {
        font-size: 12px;
    }

    .signup-layout {
        gap: 30px;
        padding: 30px 16px 44px;
    }

    .signup-intro {
        padding-bottom: 28px;
    }

    .signup-intro h1 {
        font-size: 32px;
    }

    .signup-intro__lead {
        margin-top: 16px;
        font-size: 14px;
    }

    .signup-intro__steps {
        gap: 14px;
        margin-top: 22px;
    }

    .signup-intro__note {
        margin-top: 22px;
    }

    .signup-header h2 {
        font-size: 30px;
    }

    .signup-grid,
    .signup-grid--identity {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .signup-date {
        grid-template-columns: minmax(64px, 0.65fr) minmax(112px, 1.25fr) minmax(88px, 0.85fr);
        gap: 7px;
    }

    .signup-section {
        padding: 23px 0;
    }

    .signup-actions {
        align-items: stretch;
    }

    .signup-submit {
        width: 100%;
    }

    .signup-footer {
        padding-inline: 16px;
    }

    .signup-footer__inner {
        display: grid;
        gap: 10px;
    }

    .page-main > table,
    .table_liste {
        display: block;
        max-width: calc(100vw - 32px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        padding-inline: 20px;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
        padding-inline: 20px;
    }
}

@media (max-width: 700px) {
    .account-page {
        gap: 16px;
    }

    .account-page__header {
        align-items: flex-start;
        padding: 17px;
    }

    .account-page__icon {
        width: 44px;
        height: 44px;
        font-size: 25px;
    }

    .account-page__header h1 {
        font-size: 28px;
    }

    .account-overview,
    .account-highlights {
        grid-template-columns: 1fr;
    }

    .account-card {
        min-height: 0;
        padding: 17px;
    }

    .account-section-heading {
        align-items: flex-start;
        padding: 15px 16px;
    }

    .messages-table-wrap {
        overflow: visible;
    }

    .messages-table,
    .messages-table tbody {
        display: block !important;
        max-width: none;
        overflow: visible;
    }

    .messages-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .message-row {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr) auto;
        gap: 3px 9px;
        padding: 13px 14px;
        border-bottom: 1px solid var(--tz-line);
    }

    .message-row:last-child {
        border-bottom: 0;
    }

    .message-row.is-even {
        background: #fdfbf8;
    }

    .message-row.is-unread {
        background: var(--tz-orange-soft);
    }

    .message-row.is-priority {
        box-shadow: inset 3px 0 0 var(--tz-coral);
    }

    .messages-table td {
        display: block;
        padding: 0;
        background: transparent !important;
        border: 0;
    }

    .message-status {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-top: 1px !important;
        text-align: left;
    }

    .message-sender {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .message-date {
        grid-column: 3;
        grid-row: 1;
    }

    .message-content {
        grid-column: 2 / -1;
        grid-row: 2;
    }

    .message-content strong {
        font-size: 14px;
    }

    .message-content span:not(.message-admin) {
        margin-top: 2px;
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    .account-section-heading {
        display: grid;
    }

    .account-inline-action {
        width: 100%;
        justify-content: center;
    }

    .account-reputation__details {
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* SEO content headers and error states */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    color: var(--color-text-muted, #6f6a65);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.catalog-header {
    margin: 0 0 1.5rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid var(--color-border, #e7e1dc);
    border-radius: 16px;
    background: #fffaf6;
}

.catalog-header h1,
.empty-state h1 {
    margin: 0 0 0.65rem;
    color: var(--color-text, #2f2925);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.12;
}

.catalog-header p,
.empty-state p {
    max-width: 70ch;
    margin: 0;
    color: var(--color-text-muted, #6f6a65);
    line-height: 1.65;
}

.empty-state {
    max-width: 720px;
    margin: clamp(3rem, 10vh, 7rem) auto;
    padding: clamp(1.5rem, 4vw, 3rem);
    text-align: center;
}

.empty-state .button {
    margin-top: 1.5rem;
}

/* Focused account, list and support pages */
.is-focused-page #all2,
.is-focused-page #all2.not_home {
    width: min(calc(100% - 48px), 1120px);
}

.is-focused-page #content {
    min-width: 0;
    padding: clamp(22px, 4vw, 42px);
}

.member-page-header {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
    padding: clamp(20px, 3vw, 28px);
    overflow: hidden;
    background: linear-gradient(135deg, #fffaf4 0%, #fff 72%);
    border: 1px solid #f0e4d7;
    border-radius: var(--tz-radius);
    box-shadow: 0 10px 28px rgba(45, 36, 24, 0.05);
}

.member-page-header__icon {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
    border-radius: 18px;
    font-size: 30px;
}

.member-page-header__eyebrow {
    margin: 0 0 3px;
    color: var(--tz-orange-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.member-page-header .member-page-header__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.025em;
    line-height: 1.05;
}

.member-page-header__description {
    max-width: 68ch;
    margin: 7px 0 0;
    color: var(--tz-muted);
    font-size: 14px;
    line-height: 1.5;
}

.has-modern-page-header .page-main > .h1,
.has-modern-page-header #content > .h1,
.has-modern-page-header .page-main > h1:not(.member-page-header__title),
.has-modern-page-header #content > h1:not(.member-page-header__title) {
    display: none;
}

.has-modern-page-header .page-main > .h1 + br,
.has-modern-page-header #content > .h1 + br {
    display: none;
}

.is-list-page a.h6 {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    margin: 26px 0 12px;
    padding: 15px 0 0;
    color: var(--tz-ink);
    background: transparent;
    border: 0;
    border-top: 1px solid var(--tz-line);
    border-radius: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.25;
    text-decoration: none;
}

.is-list-page a.h6::before {
    content: "";
    width: 4px;
    height: 24px;
    flex: 0 0 auto;
    background: var(--tz-orange);
    border-radius: 999px;
}

.is-list-page a.h6:hover {
    color: var(--tz-orange-dark);
}

.is-list-page .table_liste {
    width: 100% !important;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    table-layout: fixed;
}

.is-list-page .table_liste tr:nth-child(even) .liste_m {
    background: #fdfbf8;
}

.is-list-page .liste_m.coul_sec {
    background-image: none !important;
}

.is-list-page .liste_head {
    height: auto;
    padding: 10px 14px;
    color: var(--tz-muted);
    background: #f6f2ed;
    border: 0;
    border-bottom: 1px solid var(--tz-line);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.055em;
    line-height: 1.25;
    text-transform: uppercase;
}

.is-list-page .liste_head a {
    color: inherit;
    text-decoration: none;
}

.is-list-page .liste_head.acenter {
    text-align: center;
}

.is-list-page .liste_head.aright,
.is-list-page .list-actions-header {
    text-align: right !important;
}

.is-list-page .liste_m {
    min-width: 0;
    height: auto;
    padding: 12px 14px;
    color: var(--tz-ink);
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--tz-line);
    font-size: 14px;
    line-height: 1.4;
    vertical-align: middle;
    overflow-wrap: anywhere;
}

.is-list-page .liste_m.aleft {
    width: auto !important;
    font-weight: 650;
}

.is-list-page .liste_m.acenter {
    width: 110px !important;
    color: #5e5953;
    white-space: nowrap;
}

.is-list-page .liste_m.aright {
    width: 34% !important;
    text-align: right;
}

.is-list-page .liste_m.aright a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 2px;
    padding: 6px 9px;
    color: #554f49;
    background: #f3f0eb;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    white-space: normal;
}

.is-list-page .liste_m.aright a:hover {
    color: #fff;
    background: var(--tz-orange-dark);
}

.is-list-page .liste_m.acenter.list-points {
    display: table-cell;
    color: #5e5953;
    font-variant-numeric: tabular-nums;
}

.is-list-page .table_liste--wishlist .liste_head.aleft,
.is-list-page .table_liste--wishlist .liste_m.aleft {
    width: auto !important;
}

.is-list-page .table_liste--wishlist .list-points-header,
.is-list-page .table_liste--wishlist .list-points {
    width: 96px !important;
}

.is-list-page .table_liste--wishlist .list-status-header,
.is-list-page .table_liste--wishlist .list-status {
    width: 205px !important;
}

.is-list-page .table_liste--wishlist .list-actions-header,
.is-list-page .table_liste--wishlist .list-actions {
    width: 158px !important;
}

.list-points__content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.list-points__content i {
    color: #b8710a;
    font-size: 17px;
}

.list-status__content {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: normal;
}

.list-status__content i {
    flex: 0 0 auto;
    font-size: 17px;
}

.list-status--unavailable .list-status__content i,
.list-status--neutral .list-status__content i {
    color: #7b746c;
}

.list-status--waiting .list-status__content i {
    color: #31733a;
}

.list-status--warning .list-status__content i {
    color: #b23b25;
}

.is-list-page .liste_m.aright.list-actions {
    white-space: nowrap;
}

.is-list-page .liste_m.aright .list-action {
    gap: 6px;
}

.is-list-page .liste_m.aright .list-action i {
    flex: 0 0 auto;
    font-size: 16px;
}

.is-list-page .liste_m.aright .list-action--restore:hover {
    background: var(--tz-green);
}

.is-list-page .liste_m.aright .list-action--archive:hover {
    background: #756753;
}

.is-list-page .liste_m.aright .list-action--buy {
    color: #8b4b0a;
    background: #fff0df;
}

.is-list-page .liste_m.aright .list-action--buy:hover,
.is-list-page .liste_m.aright .list-action--buy:focus-visible {
    color: #fff;
    background: var(--tz-orange-dark);
}

.is-list-page .liste_m.aright .list-action--delete {
    width: 34px;
    min-width: 34px;
    padding: 0;
    justify-content: center;
    color: #a93824;
    background: #fbece8;
}

.is-list-page .liste_m.aright .list-action--delete:hover,
.is-list-page .liste_m.aright .list-action--delete:focus-visible {
    color: #fff;
    background: #b23b25;
}

.confirmation-dialog {
    width: min(430px, calc(100% - 32px));
    max-width: none;
    padding: 0;
    color: var(--tz-ink);
    background: #fff;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(45, 36, 24, 0.28);
}

.confirmation-dialog::backdrop {
    background: rgba(39, 34, 29, 0.54);
    backdrop-filter: blur(3px);
}

.confirmation-dialog__content {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 24px;
}

.confirmation-dialog__icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #a93824;
    background: #fbece8;
    border-radius: 14px;
    font-size: 23px;
}

.confirmation-dialog__copy h2 {
    margin: 2px 0 7px;
    color: var(--tz-ink);
    font-size: 20px;
    line-height: 1.25;
}

.confirmation-dialog__copy p {
    margin: 0;
    color: var(--tz-muted);
    font-size: 14px;
    line-height: 1.55;
}

.confirmation-dialog__copy strong {
    color: var(--tz-ink);
}

.confirmation-dialog__actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 5px;
}

.confirmation-dialog__actions .button {
    min-height: 40px;
    margin: 0;
    padding: 9px 15px;
}

.confirmation-dialog__cancel {
    color: var(--tz-ink);
    background: #f3f0eb;
    border-color: transparent;
}

.confirmation-dialog__confirm {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    background: #b23b25;
    border-color: #b23b25;
}

.confirmation-dialog__confirm:hover,
.confirmation-dialog__confirm:focus-visible {
    color: #fff;
    background: #942f1f;
    border-color: #942f1f;
}

.is-list-page .liste_foot {
    display: none;
}

.is-list-page .table_liste + br,
.is-list-page a.h6 + i + br {
    display: none;
}

.is-list-page a.h6 + i {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 16px 18px;
    color: var(--tz-muted);
    background: #faf8f5;
    border: 1px dashed #d9d1c8;
    border-radius: 12px;
    font-size: 14px;
    font-style: normal;
}

.product-type-icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin-right: 9px;
    place-items: center;
    color: #fff;
    border-radius: 8px;
    font-size: 17px;
    line-height: 1;
    vertical-align: middle;
}

.product-type-icon--dvd { background: var(--tz-green); }
.product-type-icon--games { background: var(--tz-blue); }
.product-type-icon--books { background: var(--tz-yellow); }
.product-type-icon--music { background: var(--tz-coral); }
.product-type-icon--product { background: var(--tz-muted); }

.status-icon {
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    font-size: 17px;
    vertical-align: middle;
}

.status-icon--positive { color: #376a00; background: #eaf7db; }
.status-icon--neutral { color: #6f6b65; background: #eeeae4; }
.status-icon--negative { color: #a72f14; background: #fde7e1; }
.status-icon--send { color: #0b6399; background: #e4f3fc; }
.status-icon--receive { color: #7a5600; background: #fff2c9; }

.list-priority-action,
.list-priority-current {
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    place-items: center;
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

.list-priority-action:hover {
    color: #fff;
    background: var(--tz-orange-dark);
    text-decoration: none;
}

.list-priority-current {
    color: #6f5100;
    background: #fff0bd;
}

.list-priority-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    color: var(--tz-muted);
    font-size: 12px;
    line-height: 1.45;
}

.list-priority-legend i {
    color: var(--tz-orange-dark);
    font-size: 16px;
}

.liste_p_profile {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.liste_p_profile .product-type-icon,
.liste_p_profile .status-icon,
.profile_envoi .status-icon {
    flex: 0 0 auto;
    margin-right: 0;
}

.profile_envoi {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* Public member profile */
.public-profile {
    display: grid;
    gap: 24px;
}

.profile-reveal {
    animation: profile-card-enter 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.profile-collections .profile-reveal:nth-child(1) {
    animation-delay: 90ms;
}

.profile-collections .profile-reveal:nth-child(2) {
    animation-delay: 160ms;
}

@keyframes profile-card-enter {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(45, 36, 24, 0.08);
}

.profile-summary__identity,
.profile-summary__reputation {
    min-width: 0;
    padding: clamp(24px, 4vw, 36px);
}

.profile-summary__identity {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.profile-avatar {
    position: relative;
    display: block;
    width: 92px;
    height: 92px;
    padding: 5px;
    background: #fff;
    border: 2px solid #ffe0c7;
    border-radius: 28px;
    box-shadow: 0 10px 24px rgba(45, 36, 24, 0.12);
}

.profile-avatar__badge {
    position: absolute;
    right: -3px;
    bottom: -3px;
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    background: var(--tz-orange);
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 14px;
}

.profile-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
}

.profile-eyebrow {
    margin: 0 0 5px;
    color: var(--tz-orange-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-transform: uppercase;
}

.profile-identity__copy h2 {
    margin: 0;
    color: var(--tz-ink);
    font-size: clamp(27px, 4vw, 38px);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.profile-membership {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin: 12px 0 18px;
    color: var(--tz-muted);
    font-size: 13px;
}

.profile-membership > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-membership i {
    color: var(--tz-blue);
    font-size: 16px;
}

.profile-membership__badge {
    padding: 5px 9px;
    color: #4b6f20;
    background: #edf7e3;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.profile-message-action {
    gap: 8px;
    width: fit-content;
}

.profile-message-action i {
    font-size: 18px;
}

.profile-summary__reputation {
    background: #faf8f5;
    border-left: 1px solid var(--tz-line);
}

.profile-reputation__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 19px;
}

.profile-reputation__icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: #417500;
    background: #eaf6dc;
    border-radius: 13px;
    font-size: 22px;
}

.profile-reputation__heading h3 {
    margin: 0;
    padding: 0;
    color: var(--tz-ink);
    background: none;
    clear: none;
    font-size: 17px;
    line-height: 1.2;
}

.profile-reputation {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: 0 10px;
    color: var(--tz-ink) !important;
    text-decoration: none;
}

.profile-reputation__score {
    color: var(--tz-green);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
}

.profile-reputation__score small {
    font-size: 18px;
    letter-spacing: 0;
}

.profile-reputation__label {
    padding-bottom: 2px;
    color: var(--tz-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.profile-reputation__meter {
    display: flex;
    grid-column: 1 / -1;
    height: 9px;
    margin: 15px 0 13px;
    overflow: hidden;
    background: #e9e5df;
    border-radius: 999px;
}

.profile-reputation__meter > span {
    transform-origin: left center;
    animation: profile-meter-grow 900ms 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes profile-meter-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.profile-reputation__meter .is-positive { background: var(--tz-green); }
.profile-reputation__meter .is-neutral { background: #a9a39a; }
.profile-reputation__meter .is-negative { background: var(--tz-coral); }

.profile-reputation__details {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.profile-reputation__details > span {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 5px;
    color: var(--tz-muted);
    font-size: 10px;
}

.profile-reputation__details i {
    grid-row: 1 / span 2;
    font-size: 16px;
}

.profile-reputation__details > span:nth-child(1) i { color: var(--tz-green); }
.profile-reputation__details > span:nth-child(2) i { color: #8d877e; }
.profile-reputation__details > span:nth-child(3) i { color: var(--tz-coral); }

.profile-reputation__details b {
    color: var(--tz-ink);
    font-size: 14px;
    line-height: 1.1;
}

.profile-reputation__link {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: var(--tz-orange-dark);
    font-size: 12px;
    font-weight: 800;
}

.profile-reputation:hover .profile-reputation__link {
    text-decoration: underline;
}

.profile-reputation__empty {
    margin: 0;
    color: var(--tz-muted);
    font-size: 13px;
    line-height: 1.55;
}

.profile-facts {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--tz-line);
    border-top: 1px solid var(--tz-line);
}

.profile-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 17px 22px;
    background: #fff;
    color: #4f4b46;
    font-size: 12px;
    line-height: 1.3;
}

.profile-fact__icon {
    display: inline-grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    font-size: 18px;
}

.profile-fact__icon--green { color: #417500; background: #edf8df; }
.profile-fact__icon--blue { color: #0b6399; background: #e4f3fc; }
.profile-fact__icon--orange { color: var(--tz-orange-dark); background: var(--tz-orange-soft); }

.profile-fact strong,
.profile-fact small {
    display: block;
}

.profile-fact strong {
    color: var(--tz-ink);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.15;
}

.profile-fact small {
    color: var(--tz-muted);
    font-size: 10px;
    font-weight: 700;
}

.profile-collections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

.profile-collection {
    --profile-collection-accent: var(--tz-muted);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-top: 4px solid var(--profile-collection-accent);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(45, 36, 24, 0.055);
}

.profile-collection--have { --profile-collection-accent: var(--tz-green); }
.profile-collection--want { --profile-collection-accent: var(--tz-orange); }

.profile-collection__header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 92px;
    padding: 19px 20px;
    background: #faf8f5;
    border-bottom: 1px solid var(--tz-line);
}

.profile-collection__icon {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: var(--profile-collection-accent);
    border-radius: 13px;
    font-size: 22px;
}

.profile-collection__header .profile-eyebrow {
    color: var(--profile-collection-accent);
}

.profile-collection__header h2 {
    margin: 0;
    color: var(--tz-ink);
    font-size: 17px;
    line-height: 1.25;
}

.profile-collection__count {
    display: inline-grid;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    place-items: center;
    color: var(--profile-collection-accent);
    background: #fff;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.profile-product-list {
    max-height: 560px;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    list-style: none;
    scrollbar-color: #c7c0b7 transparent;
    scrollbar-width: thin;
}

.profile-product {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 55px;
    padding: 10px 16px;
    border-bottom: 1px solid #f0ece7;
    transition: background-color 160ms ease;
}

.profile-product:last-child {
    border-bottom: 0;
}

.profile-product:hover {
    background: #fffaf4;
}

.profile-product .product-type-icon {
    flex: 0 0 auto;
    margin: 0;
}

.profile-product__title {
    min-width: 0;
    flex: 1 1 auto;
}

.profile-product__title a {
    display: block;
    overflow: hidden;
    color: var(--tz-ink) !important;
    font-size: 13px;
    font-weight: 680;
    line-height: 1.35;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-product:hover .profile-product__title a {
    color: var(--tz-orange-dark) !important;
}

.profile-product__availability {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    padding: 4px 7px;
    color: #417500;
    background: #edf8df;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.profile-product__availability i {
    font-size: 13px;
}

.profile-product__arrow {
    flex: 0 0 auto;
    color: #bbb3aa;
    font-size: 15px;
    transition: color 160ms ease, transform 160ms ease;
}

.profile-product:hover .profile-product__arrow {
    color: var(--tz-orange-dark);
    transform: translateX(2px);
}

.profile-collection__empty {
    display: grid;
    min-height: 210px;
    padding: 34px 20px;
    place-content: center;
    justify-items: center;
    color: var(--tz-muted);
    text-align: center;
}

.profile-collection__empty > i {
    margin-bottom: 10px;
    color: var(--profile-collection-accent);
    font-size: 34px;
}

.profile-collection__empty p,
.profile-collection__note {
    margin: 0;
    font-size: 12px;
}

.profile-collection__note {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    color: var(--tz-muted);
    background: #faf8f5;
    border-top: 1px solid var(--tz-line);
}

.profile-admin-panel {
    margin-top: 28px;
    padding: clamp(20px, 3vw, 28px);
    background: #f8f5f0;
    border: 1px solid #ded6cc;
    border-radius: 20px;
}

.profile-admin-panel__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.profile-admin-panel__icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
    border-radius: 15px;
    font-size: 26px;
}

.profile-admin-panel__header h2 {
    color: var(--tz-ink);
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.profile-admin-panel__header > div > p:last-child {
    margin: 5px 0 0;
    color: var(--tz-muted);
    font-size: 12px;
}

.profile-admin-panel__header h2,
.profile-admin-card h3 {
    margin: 0;
}

.profile-admin-card h3 {
    padding: 0;
    color: var(--tz-ink);
    background: none;
    border: 0;
    clear: none;
    font-size: 18px;
    letter-spacing: -0.015em;
}

.profile-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.profile-admin-card {
    min-width: 0;
    padding: clamp(18px, 2.4vw, 24px);
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(45, 36, 24, 0.045);
}

.profile-admin-card--wide {
    grid-column: 1 / -1;
}

.profile-admin-card--danger {
    background: linear-gradient(145deg, #fff8f5 0%, #fff 100%);
    border-color: #efc8bd;
}

.profile-admin-card--danger h3 {
    color: #942f1f;
}

.profile-admin-danger-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #942f1f;
    font-weight: 700;
}

.profile-admin-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.profile-admin-card__icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    font-size: 21px;
}

.profile-admin-card__icon--identity {
    color: #0b6399;
    background: #e7f4fc;
}

.profile-admin-card__icon--note {
    color: #755600;
    background: #fff3c8;
}

.profile-admin-card__icon--moderation,
.profile-admin-card__icon--danger {
    color: #a3341b;
    background: #fdeae4;
}

.profile-admin-card__kicker {
    margin: 0 0 3px;
    color: var(--tz-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.profile-admin-card__intro {
    max-width: 68ch;
    margin: 0;
    color: var(--tz-muted);
    font-size: 13px;
    line-height: 1.55;
}

.profile-admin-identity {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    padding: 14px;
    color: #514c46;
    background: #faf8f5;
    border-radius: 10px;
}

.profile-admin-identity p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.profile-admin-identity i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #877f76;
    font-size: 17px;
}

.profile-admin-identity__name strong {
    color: var(--tz-ink);
    font-size: 15px;
}

.profile-admin-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0 0 16px;
    overflow: hidden;
    background: var(--tz-line);
    border: 1px solid var(--tz-line);
    border-radius: 10px;
}

.profile-admin-details > div {
    min-width: 0;
    padding: 11px 12px;
    background: #fff;
}

.profile-admin-details dt {
    color: var(--tz-muted);
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.profile-admin-details dt i {
    margin-right: 3px;
    color: #8d867e;
    font-size: 13px;
}

.profile-admin-details dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    color: var(--tz-ink);
    font-size: 13px;
    font-weight: 750;
}

.profile-admin-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.profile-admin-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 10px;
    color: #185e87;
    background: #edf7fd;
    border: 1px solid #cce8f7;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.profile-admin-links a:hover {
    background: #dff1fb;
}

.profile-admin-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.profile-admin-form label {
    display: grid;
    gap: 5px;
    color: var(--tz-ink);
    font-size: 12px;
    font-weight: 750;
}

.profile-admin-form label small {
    color: var(--tz-muted);
    font-size: 11px;
    font-weight: 500;
}

.profile-admin-form input,
.profile-admin-form textarea {
    width: 100%;
}

.profile-admin-form .button {
    gap: 7px;
    width: 100%;
}

.profile-admin-form .button--primary {
    background: #bf4d00;
    border-color: #bf4d00;
}

.profile-admin-form .button--primary:hover {
    background: #a94300;
    border-color: #a94300;
}

.profile-admin-card--moderation {
    background: linear-gradient(145deg, #fff 0%, #fffcf9 100%);
}

.profile-moderation-statuses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.profile-moderation-status {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    min-width: 0;
    padding: 14px;
    border: 1px solid;
    border-radius: 11px;
}

.profile-moderation-status.is-allowed {
    color: #376a00;
    background: #f1f9e8;
    border-color: #d4e9b9;
}

.profile-moderation-status.is-blocked {
    color: #9d331c;
    background: #fff0eb;
    border-color: #f2cec2;
}

.profile-moderation-status__icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: currentColor;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 11px;
    font-size: 21px;
}

.profile-moderation-status span,
.profile-moderation-status strong,
.profile-moderation-status small {
    display: block;
}

.profile-moderation-status span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.profile-moderation-status strong {
    margin-top: 1px;
    color: currentColor;
    font-size: 16px;
}

.profile-moderation-status small {
    margin-top: 5px;
    color: #625b54;
    font-size: 11px;
    line-height: 1.45;
}

.profile-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-admin-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 10px 14px;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.15;
    transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.profile-admin-action:hover:not(:disabled) {
    transform: translateY(-1px);
    filter: brightness(0.93);
}

.profile-admin-action--warning {
    background: #bf4d00;
    border-color: #bf4d00;
}

.profile-admin-action--danger {
    background: #b33b22;
    border-color: #b33b22;
}

.profile-admin-action--success {
    background: #477d08;
    border-color: #477d08;
}

.profile-admin-action:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.profile-admin-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 14px 0 0;
    color: var(--tz-muted);
    font-size: 12px;
    line-height: 1.45;
}

.profile-admin-note i {
    flex: 0 0 auto;
    margin-top: 1px;
    color: #746d65;
    font-size: 16px;
}

.member-deletion-result {
    width: min(680px, calc(100% - 32px));
    margin: 48px auto;
    padding: clamp(28px, 5vw, 46px);
    text-align: center;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: 18px;
    box-shadow: var(--tz-shadow);
}

.member-deletion-result__icon {
    display: inline-grid;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    place-items: center;
    color: #376a00;
    background: #eff8e4;
    border-radius: 50%;
    font-size: 34px;
}

.member-deletion-result h1 {
    margin: 0 0 14px;
    color: var(--tz-ink);
    font-size: clamp(26px, 4vw, 38px);
}

.member-deletion-result p {
    margin: 8px auto;
    color: var(--tz-muted);
    line-height: 1.6;
}

.member-deletion-result .button {
    margin-top: 20px;
    gap: 8px;
}

@media (max-width: 860px) {
    .profile-summary {
        grid-template-columns: 1fr;
    }

    .profile-summary__reputation {
        border-top: 1px solid var(--tz-line);
        border-left: 0;
    }
}

@media (max-width: 700px) {
    .public-profile {
        gap: 18px;
    }

    .profile-summary {
        border-radius: 16px;
    }

    .profile-summary__identity {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 16px;
        padding: 21px 18px;
    }

    .profile-avatar {
        width: 74px;
        height: 74px;
        border-radius: 23px;
    }

    .profile-avatar img {
        border-radius: 16px;
    }

    .profile-identity__copy h2 {
        font-size: clamp(25px, 8vw, 32px);
    }

    .profile-membership {
        margin: 9px 0 14px;
    }

    .profile-summary__reputation {
        padding: 22px 18px;
    }

    .profile-facts {
        grid-template-columns: 1fr;
    }

    .profile-fact {
        padding: 13px 18px;
    }

    .profile-collections,
    .profile-admin-grid {
        grid-template-columns: 1fr;
    }

    .profile-admin-card--wide {
        grid-column: auto;
    }

    .profile-moderation-statuses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .profile-summary__identity {
        grid-template-columns: 60px minmax(0, 1fr);
        align-items: start;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
        padding: 4px;
        border-radius: 19px;
    }

    .profile-avatar img {
        border-radius: 13px;
    }

    .profile-avatar__badge {
        width: 22px;
        height: 22px;
        border-width: 2px;
        font-size: 12px;
    }

    .profile-membership__badge {
        display: none;
    }

    .profile-message-action {
        grid-column: 1 / -1;
        width: 100%;
    }

    .profile-collection__header {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 16px 14px;
    }

    .profile-collection__icon {
        width: 40px;
        height: 40px;
    }

    .profile-collection__header h2 {
        font-size: 15px;
    }

    .profile-product {
        padding-inline: 12px;
    }

    .profile-product__availability span {
        display: none;
    }

    .profile-product__availability {
        padding: 5px;
    }

    .profile-admin-panel {
        padding: 16px;
        border-radius: 16px;
    }

    .profile-admin-panel__header {
        align-items: flex-start;
    }

    .profile-admin-panel__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 23px;
    }

    .profile-admin-details {
        grid-template-columns: 1fr;
    }

    .profile-admin-links,
    .profile-admin-actions {
        display: grid;
    }

    .profile-admin-links a,
    .profile-admin-action {
        width: 100%;
    }
}

.member-tool-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 22px;
    padding: clamp(20px, 3vw, 28px);
    background: #faf8f5;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
}

.member-tool-card__icon {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #fff;
    background: var(--tz-orange-dark);
    border-radius: 15px;
    font-size: 27px;
}

.member-tool-card__content h2,
.support-card h2,
.support-prose h2,
.payment-info-card h2,
.referral-intro h2,
.referral-form h2,
.referral-preview h2 {
    margin: 0 0 7px;
    color: var(--tz-ink);
    font-size: 20px;
    line-height: 1.25;
}

.member-tool-card__content > p,
.support-card > p,
.referral-form > p {
    margin: 0 0 18px;
    color: var(--tz-muted);
    font-size: 14px;
    line-height: 1.55;
}

.member-add-form {
    display: grid;
    gap: 8px;
}

.member-add-form__controls {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    gap: 10px;
}

.member-add-form__controls input {
    width: 100%;
    min-width: 0;
    letter-spacing: 0.08em;
}

.member-add-form__controls .bouton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 126px;
    margin: 0;
}

.member-form-hint {
    margin: 2px 0 0;
    color: var(--tz-muted);
    font-size: 12px;
    line-height: 1.45;
}

.member-form-hint a {
    color: var(--tz-orange-dark);
    font-weight: 750;
}

.member-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 20px;
    padding: 15px 17px;
    color: #45413c;
    background: #f7f4ef;
    border: 1px solid var(--tz-line);
    border-radius: 11px;
    font-size: 14px;
    line-height: 1.5;
}

.member-notice > i {
    flex: 0 0 auto;
    margin-top: 1px;
    font-size: 21px;
}

.member-notice strong,
.member-notice p {
    display: block;
    margin: 0;
}

.member-notice p {
    margin-top: 3px;
}

.member-notice--info {
    color: #185e87;
    background: #edf7fd;
    border-color: #cce8f7;
}

.member-notice--success {
    color: #376a00;
    background: #eff8e4;
    border-color: #d4e9b9;
}

.member-notice--error {
    color: #9d331c;
    background: #fff0eb;
    border-color: #f2cec2;
}

.member-section-divider {
    height: 1px;
    margin: 24px 0;
    background: var(--tz-line);
    border: 0;
}

.member-form-card,
.support-card,
.support-prose,
.referral-form,
.referral-intro,
.referral-preview,
.payment-info-card,
.confirmation-card {
    width: 100%;
    max-width: 820px;
    margin: 0 0 24px;
    padding: clamp(20px, 3vw, 28px);
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    box-shadow: 0 7px 22px rgba(45, 36, 24, 0.045);
}

.member-form-grid,
.referral-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.member-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.member-field--full {
    grid-column: 1 / -1;
}

.member-field > span,
.support-topic-form label {
    color: var(--tz-ink);
    font-size: 13px;
    font-weight: 750;
}

.member-field input,
.member-field select,
.support-topic-form select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin: 0;
}

.member-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.member-form-actions .bouton {
    margin: 0;
}

.support-topic-form {
    display: grid;
    gap: 8px;
    max-width: 520px;
}

.support-card > p {
    max-width: 65ch;
}

.support-prose {
    max-width: 860px;
    color: #4e4a45;
    font-size: 15px;
    line-height: 1.75;
}

.support-prose__lead {
    margin: 0 0 20px;
    color: var(--tz-muted);
    font-size: 16px;
}

.support-prose .acenter {
    margin: 22px 0;
    padding: 20px;
    background: #faf8f5;
    border-radius: 12px;
    line-height: 1.65;
}

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.payment-method-card {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 124px;
    padding: 20px;
    color: var(--tz-ink);
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    box-shadow: 0 7px 22px rgba(45, 36, 24, 0.045);
    text-decoration: none;
}

.payment-method-card:hover {
    color: var(--tz-orange-dark);
    border-color: #f0b488;
    transform: translateY(-1px);
}

.payment-method-card__icon,
.payment-info-card__icon,
.confirmation-card__icon {
    display: inline-grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--tz-orange-dark);
    background: var(--tz-orange-soft);
    border-radius: 15px;
    font-size: 25px;
}

.payment-method-card strong,
.payment-method-card small {
    display: block;
}

.payment-method-card strong {
    margin-bottom: 5px;
    font-size: 16px;
}

.payment-method-card small {
    color: var(--tz-muted);
    font-size: 12px;
    line-height: 1.45;
}

.payment-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.payment-info-card__icon {
    flex: 0 0 auto;
}

.payment-info-card p,
.payment-info-card small {
    display: block;
    margin: 0;
    color: var(--tz-muted);
    line-height: 1.55;
}

.payment-provider {
    max-width: 820px;
    padding: 20px;
    text-align: center;
    background: #faf8f5;
    border: 1px dashed #d8d0c6;
    border-radius: 12px;
}

.is-payment-page .page-main > .upperleft,
.is-payment-page #content > .upperleft {
    max-width: 820px;
    margin-bottom: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
}

.is-payment-page .upperleft .upperright,
.is-payment-page .upperleft .lowerleft,
.is-payment-page .upperleft .lowerright {
    padding: 0;
    background: transparent;
}

.is-commande-points .page-main > h2,
.is-commande-points #content > h2 {
    margin: 0 0 14px;
    font-size: 21px;
}

.is-commande-points .page-main > .upperleft form > label,
.is-commande-points #content > .upperleft form > label {
    display: inline-block;
    padding: 11px 8px;
    font-size: 14px;
    line-height: 1.45;
}

.is-commande-points .page-main > .upperleft form > hr,
.is-commande-points #content > .upperleft form > hr {
    height: 1px;
    margin: 0;
    background: var(--tz-line);
    border: 0;
}

.confirmation-card {
    max-width: 720px;
    text-align: center;
}

.confirmation-card__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    color: #376a00;
    background: #eaf7db;
    border-radius: 50%;
    font-size: 30px;
}

.confirmation-card h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 32px);
}

.confirmation-card > p {
    margin: 0;
    color: var(--tz-muted);
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.confirmation-actions .button,
.confirmation-actions .text-action {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
}

.confirmation-actions .text-action {
    gap: 6px;
    padding: 8px 12px;
    color: var(--tz-orange-dark);
    font-weight: 750;
    text-decoration: none;
}

.referral-intro p,
.referral-preview > div {
    margin: 0;
    color: #4e4a45;
    font-size: 14px;
    line-height: 1.65;
}

.referral-form {
    max-width: 900px;
}

.referral-grid {
    margin-top: 18px;
}

.referral-reminder {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    margin: 20px 0;
    color: #4e4a45;
    font-size: 13px;
    line-height: 1.45;
}

.is-focused-page .page-main,
.is-focused-page #content {
    overflow-wrap: anywhere;
}

.is-focused-page .page-main img,
.is-focused-page #content img,
.is-focused-page .page-main iframe,
.is-focused-page #content iframe {
    max-width: 100%;
}

.is-account-page fieldset,
.is-profile-page fieldset {
    min-width: 0;
    margin: 0 0 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: 12px;
}

.is-account-page legend,
.is-profile-page legend {
    padding: 0 8px;
    color: var(--tz-ink);
    font-size: 15px;
    font-weight: 800;
}

.is-focused-page #band,
.is-focused-page .page-main > form:not(.site-search),
.is-focused-page #content > form:not(.site-search) {
    max-width: 760px;
    margin: 0 0 24px;
    padding: clamp(18px, 3vw, 26px);
    background: #faf8f5;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
}

.is-focused-page #band .upperleft,
.is-focused-page #band .upperright,
.is-focused-page #band .lowerleft,
.is-focused-page #band .lowerright {
    padding: 0;
    color: inherit !important;
    background: transparent;
    border: 0;
}

.is-focused-page .page-main label,
.is-focused-page #content label {
    color: var(--tz-ink);
    font-weight: 700;
}

.is-focused-page .page-main input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.is-focused-page .page-main select,
.is-focused-page .page-main textarea,
.is-focused-page #content input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.is-focused-page #content select,
.is-focused-page #content textarea {
    max-width: 100%;
    font-size: 16px;
}

/* Message composer */
#content .message-compose {
    display: grid;
    gap: 20px;
    width: min(100%, 760px);
    max-width: 760px;
    margin: 0 0 24px;
    padding: clamp(22px, 3vw, 30px);
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: var(--tz-radius);
    box-shadow: 0 10px 28px rgba(45, 36, 24, 0.06);
}

.message-compose__notice {
    margin: 0;
    color: var(--tz-muted);
    font-size: 12px;
    text-align: right;
}

.message-compose__notice span,
.message-compose__required {
    color: #b8432a;
}

.message-compose__field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.message-compose__label {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

.message-compose__label > i {
    color: var(--tz-orange-dark);
    font-size: 19px;
}

#content .message-compose__field input,
#content .message-compose__field textarea {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 12px 14px;
    color: var(--tz-ink);
    background: #fff;
    border: 1px solid #cfc7be;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(45, 36, 24, 0.025);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

#content .message-compose__field input {
    min-height: 50px;
}

#content .message-compose__field textarea {
    min-height: 210px;
    line-height: 1.55;
    resize: vertical;
}

#content .message-compose__field input:hover,
#content .message-compose__field textarea:hover {
    border-color: #afa59a;
}

#content .message-compose__field input:focus,
#content .message-compose__field textarea:focus {
    border-color: var(--tz-blue);
    box-shadow: 0 0 0 4px rgba(22, 132, 199, 0.11);
}

.message-compose__field input::placeholder,
.message-compose__field textarea::placeholder {
    color: #948c83;
}

.message-compose__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4px;
}

.message-compose__actions .button,
.message-compose__actions .bouton {
    min-height: 48px;
    margin: 0;
}

.message-compose__submit {
    gap: 8px;
}

.message-compose__submit > i {
    font-size: 18px;
}

.is-faq .avis {
    display: block;
    margin: 0 0 12px;
    padding: 18px 20px;
    color: #4f4b46;
    background: #fff;
    border: 1px solid var(--tz-line);
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(45, 36, 24, 0.035);
    font-size: 14px;
    line-height: 1.65;
}

.is-faq .avis > span {
    display: block;
    margin: 0 0 8px;
    padding: 0;
    color: var(--tz-ink);
    border: 0;
    font-size: 17px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.3;
}

.is-faq .avis a {
    color: var(--tz-orange-dark);
}

.is-contact #rep {
    max-width: 760px;
    margin-top: 22px;
}

.is-profile-page .page-main,
.is-profile-page #content {
    overflow-wrap: anywhere;
}

.is-profile-page .page-main > table,
.is-profile-page #content > table {
    width: 100% !important;
    table-layout: fixed;
}

@media (max-width: 760px) {
    .is-focused-page #all2,
    .is-focused-page #all2.not_home {
        width: 100%;
        margin-top: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .is-focused-page #content {
        padding: 18px 14px 28px;
    }

    .member-page-header {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        margin-bottom: 20px;
        padding: 17px;
        border-radius: 12px;
    }

    .member-page-header__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 24px;
    }

    .member-page-header .member-page-header__title {
        font-size: clamp(25px, 8vw, 32px);
    }

    .member-page-header__description {
        grid-column: 1 / -1;
        font-size: 13px;
    }

    .is-list-page .table_liste,
    .is-list-page .table_liste tbody {
        display: block;
        max-width: none;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .is-list-page .table_liste tr:has(.liste_head),
    .is-list-page .table_liste tr:has(.liste_foot) {
        display: none;
    }

    .is-list-page .table_liste tr:not(:has(.liste_head)):not(:has(.liste_foot)) {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 10px;
        margin-bottom: 10px;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--tz-line);
        border-radius: 12px;
        box-shadow: 0 5px 16px rgba(45, 36, 24, 0.04);
    }

    .is-list-page .liste_m,
    .is-list-page .table_liste tr:nth-child(even) .liste_m {
        display: block;
        width: auto !important;
        padding: 0;
        background: transparent;
        border: 0;
        white-space: normal;
    }

    .is-list-page .liste_m.aleft {
        flex: 1 0 100%;
        font-size: 15px;
    }

    .is-list-page .liste_m.acenter {
        flex: 0 0 auto;
        text-align: left;
    }

    .is-list-page .liste_m.acenter.list-points {
        display: block;
    }

    .is-list-page .table_liste--wishlist .list-points,
    .is-list-page .table_liste--wishlist .list-status,
    .is-list-page .table_liste--wishlist .list-actions {
        width: auto !important;
    }

    .is-list-page .list-status {
        flex: 1 1 190px;
    }

    .is-list-page .liste_m.aright,
    .is-list-page .table_liste tr:nth-child(even) .liste_m.aright {
        display: flex;
        flex: 1 1 220px;
        flex-wrap: wrap;
        justify-content: flex-end;
        text-align: right;
    }

    .is-list-page .liste_m.aright a {
        flex: 0 1 auto;
        min-height: 38px;
        justify-content: center;
    }

    .confirmation-dialog__content {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        padding: 20px;
    }

    .confirmation-dialog__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 20px;
    }

    .confirmation-dialog__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .product-type-icon {
        width: 32px;
        height: 32px;
    }

    .is-focused-page #band,
    .is-focused-page .page-main > form:not(.site-search),
    .is-focused-page #content > form:not(.site-search) {
        width: 100%;
        padding: 17px;
    }

    .member-tool-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        padding: 17px;
    }

    .member-tool-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 22px;
    }

    .member-add-form__controls,
    .member-form-grid,
    .referral-grid,
    .payment-method-grid {
        grid-template-columns: 1fr;
    }

    .member-add-form__controls .bouton,
    .member-form-actions .bouton,
    .referral-form .bouton {
        width: 100%;
    }

    .member-form-actions {
        justify-content: stretch;
    }

    .message-compose__notice {
        text-align: left;
    }

    .message-compose__actions {
        display: grid;
    }

    .message-compose__actions .button,
    .message-compose__actions .bouton {
        width: 100%;
    }

    .member-form-card,
    .support-card,
    .support-prose,
    .referral-form,
    .referral-intro,
    .referral-preview,
    .payment-info-card,
    .confirmation-card {
        padding: 18px;
        border-radius: 12px;
    }

    .payment-method-card {
        min-height: 108px;
        padding: 17px;
    }

    .payment-info-card {
        display: grid;
    }

    .confirmation-actions {
        display: grid;
    }

    .confirmation-actions .button,
    .confirmation-actions .text-action {
        width: 100%;
    }

    .is-account-page .page-main table,
    .is-account-page #content table,
    .is-payment-page .page-main table,
    .is-payment-page #content table {
        display: block;
        width: 100% !important;
        max-width: 100%;
        overflow-x: auto;
    }

    .is-profile-page .page-main > table,
    .is-profile-page #content > table,
    .is-profile-page .page-main > table tbody,
    .is-profile-page #content > table tbody {
        display: block;
    }

    .is-profile-page .page-main > table tr,
    .is-profile-page #content > table tr,
    .is-profile-page .page-main > table td,
    .is-profile-page #content > table td {
        display: block;
        width: 100% !important;
    }
}
