/* ==========================================================================
   Site refonte 2026 - premium ecommerce direction
   ========================================================================== */

:root {
    --brand-ink: #10141a;
    --brand-graphite: #242a31;
    --brand-line: #dce2ea;
    --brand-paper: #f6f7f9;
    --brand-white: #ffffff;
    --brand-blue: #063a91;
    --brand-blue-deep: #05296a;
    --brand-gold: #c8a54b;
    --brand-red: #d94a3a;
    --brand-green: #12855f;
    --brand-muted: #65717f;
    --brand-radius: 8px;
    --brand-shadow-soft: 0 18px 48px rgba(16, 20, 26, 0.10);
    --brand-shadow-strong: 0 28px 80px rgba(16, 20, 26, 0.22);
}

html {
    background: var(--brand-paper);
}

body {
    color: var(--brand-graphite);
    background: var(--brand-paper);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand-ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0;
}

.container {
    max-width: 1240px;
}

.btn,
.catalog-card .btn,
.acc-card .add-btn,
.premium-action-btn,
.wizard-toggle-btn,
.wizard-card,
.cart-btn,
input,
select,
textarea {
    border-radius: var(--brand-radius);
}

.btn {
    min-height: 46px;
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
    letter-spacing: 0;
}

.btn-primary {
    color: var(--brand-ink);
    background: linear-gradient(180deg, #e4cb77 0%, var(--brand-gold) 100%);
    box-shadow: 0 12px 28px rgba(200, 165, 75, 0.26);
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary:hover {
    color: var(--brand-ink);
    background: linear-gradient(180deg, #efd98b 0%, #cda94e 100%);
    box-shadow: 0 16px 34px rgba(200, 165, 75, 0.32);
}

.btn-secondary {
    color: var(--brand-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    color: var(--brand-white);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.48);
}

.badge,
.section-badge,
.product-badge {
    border-radius: var(--brand-radius);
    color: var(--brand-ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 20, 26, 0.12);
    letter-spacing: 0;
    text-transform: none;
}

/* Header public */
.header {
    background: rgba(250, 251, 252, 0.92);
    border-bottom: 1px solid rgba(16, 20, 26, 0.08);
    backdrop-filter: blur(18px);
}

.header.scrolled {
    border-bottom-color: rgba(16, 20, 26, 0.12);
    box-shadow: 0 12px 34px rgba(16, 20, 26, 0.08);
}

.nav {
    height: 82px;
}

.logo-img {
    width: auto;
    height: 58px;
    border-radius: var(--brand-radius);
}

.brand-wordmark {
    gap: 0.7rem;
    color: var(--brand-ink);
    font-weight: 900;
}

.brand-wordmark .logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--brand-radius);
    color: var(--brand-white);
    background: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(6, 58, 145, 0.22);
}

.brand-wordmark .logo-text {
    color: var(--brand-ink);
    font-size: 1rem;
    letter-spacing: 0;
}

.nav-links {
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid rgba(16, 20, 26, 0.08);
    border-radius: var(--brand-radius);
    background: rgba(255, 255, 255, 0.72);
}

.nav-links a,
.config-header-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.75rem;
    border-radius: 6px;
    color: var(--brand-graphite);
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-links a:hover,
.config-header-nav a:hover,
.config-header-nav a.active {
    color: var(--brand-ink);
    background: #edf1f5;
}

.cart-btn,
.config-header-actions .cart-btn {
    color: var(--brand-ink);
    background: var(--brand-white);
    border: 1px solid rgba(16, 20, 26, 0.12);
    box-shadow: 0 10px 22px rgba(16, 20, 26, 0.08);
}

.cart-count,
.config-header-actions .cart-count {
    color: var(--brand-white);
    background: var(--brand-red);
}

/* Hero accueil: full-bleed ecommerce */
.hero {
    min-height: 720px;
    height: 86vh;
    max-height: 840px;
    display: flex;
    align-items: center;
    padding: 112px 0 74px;
    background: var(--brand-ink);
    overflow: hidden;
}

.hero-bg-img {
    filter: saturate(0.92) contrast(1.06);
}

.hero-bg-img.active {
    opacity: 1;
    transform: scale(1.03);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 10, 14, 0.88) 0%, rgba(7, 10, 14, 0.62) 48%, rgba(7, 10, 14, 0.16) 100%),
        linear-gradient(180deg, rgba(7, 10, 14, 0.18) 0%, rgba(7, 10, 14, 0.78) 100%);
}

.hero-content {
    display: block;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 710px;
    color: var(--brand-white);
}

.hero h1 {
    max-width: 700px;
    margin: 1rem 0 1.1rem;
    color: var(--brand-white);
    font-family: 'Inter', sans-serif;
    font-size: 4.6rem;
    line-height: 0.98;
    text-shadow: none;
}

.hero .highlight {
    color: #f0d885;
}

.hero-description {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    font-weight: 500;
    text-shadow: none;
}

.hero-price {
    margin-bottom: 1.25rem;
}

.hero-price .price {
    color: var(--brand-white);
    font-size: 2.8rem;
}

.price-info {
    color: rgba(255, 255, 255, 0.66);
}

.hero-cta {
    margin-bottom: 1.45rem;
}

.hero-trust {
    gap: 0.75rem;
}

.trust-item {
    min-height: 40px;
    padding: 0 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--brand-radius);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.trust-item svg {
    color: #71d7a7;
}

.hero-visual {
    position: absolute;
    right: 0;
    bottom: -18px;
    width: 45%;
    min-width: 430px;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.hero .plaque-preview {
    width: 100%;
    text-align: right;
}

.hero .plaque {
    width: min(100%, 520px);
    height: 110px;
    margin-right: 0;
    border-radius: 7px;
    border: 3px solid #0a0d12;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.32),
        0 18px 0 rgba(0, 0, 0, 0.18),
        0 34px 70px rgba(0, 0, 0, 0.42);
    transform: perspective(1200px) rotateX(6deg) rotateY(-10deg);
}

.plaque-caption,
.hero-wave {
    display: none;
}

/* Shared ecommerce sections */
.features,
.product,
.faq,
.contact,
.newsletter {
    padding: 78px 0;
}

.features,
.faq {
    background: var(--brand-white);
}

.product,
.contact {
    background: #eef2f5;
}

.section-header {
    max-width: 780px;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.45rem;
}

.section-header h2::after {
    display: none;
}

.section-header p {
    color: var(--brand-muted);
    font-size: 1.02rem;
}

.features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card,
.catalog-card,
.acc-card,
.faq-item,
.contact-form-wrapper,
.legal-content,
.info-card,
.return-case,
.right-item,
.step,
.preview-meta-card,
.wizard-card {
    border-radius: var(--brand-radius);
}

.feature-card {
    padding: 1.35rem;
    border: 1px solid rgba(16, 20, 26, 0.08);
    box-shadow: none;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 165, 75, 0.5);
    box-shadow: 0 14px 34px rgba(16, 20, 26, 0.08);
}

.feature-icon,
.contact-icon {
    border-radius: var(--brand-radius);
    background: #eef4ff;
    color: var(--brand-blue);
}

.product-grid,
.contact-grid {
    align-items: stretch;
    gap: 1.5rem;
}

.product-images,
.product-info,
.contact-info,
.contact-form-wrapper {
    border: 1px solid rgba(16, 20, 26, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--brand-shadow-soft);
}

.product-images,
.product-info {
    border-radius: var(--brand-radius);
}

.product-main-image {
    border-radius: var(--brand-radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #10141a 0%, #2d333b 100%);
}

.product-info h2 {
    font-size: 2.2rem;
}

.product-selection .product-grid-clean {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    align-items: start;
}

.product-selection .product-images {
    align-self: start;
}

.product-info-clean {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info-clean .product-description {
    max-width: 680px;
}

.format-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.35rem 0;
}

.format-card-home {
    display: flex;
    flex-direction: column;
    min-height: 112px;
    padding: 1rem;
    border: 1px solid rgba(16, 20, 26, 0.10);
    border-radius: var(--brand-radius);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
    color: var(--brand-ink);
    box-shadow: 0 10px 24px rgba(16, 20, 26, 0.05);
}

.format-card-home:hover {
    color: var(--brand-ink);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(16, 20, 26, 0.10);
}

.format-card-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    color: var(--brand-white);
    background: var(--brand-blue);
    font-size: 0.74rem;
    font-weight: 900;
}

.format-card-home strong {
    color: var(--brand-ink);
    font-size: 1rem;
}

.format-card-home em {
    margin-top: auto;
    color: var(--brand-gold);
    font-size: 0.92rem;
    font-style: normal;
    font-weight: 900;
}

.product-cta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.2rem;
}

.product-cta-row .btn-large {
    width: auto;
}

.product-secondary-link {
    color: var(--brand-ink);
    background: var(--brand-white);
    border-color: rgba(16, 20, 26, 0.14);
}

.product-secondary-link:hover {
    color: var(--brand-ink);
    background: #eef2f5;
    border-color: rgba(16, 20, 26, 0.18);
}

.product-promise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.product-promise-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.7rem;
    border: 1px solid rgba(16, 20, 26, 0.10);
    border-radius: var(--brand-radius);
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.current-price,
.catalog-card .price,
.acc-card .price {
    color: var(--brand-ink);
}

.configurator-steps,
.vehicle-selector,
.product-guarantees,
.product-specs {
    border-radius: var(--brand-radius);
}

.step-item,
.vehicle-option {
    border-radius: 6px;
}

.step-item.active,
.vehicle-option.active {
    background: var(--brand-ink);
    color: var(--brand-white);
}

.form-group input,
.form-group select,
.form-group textarea,
.wizard-input {
    border-color: rgba(16, 20, 26, 0.12);
    background: var(--brand-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wizard-input:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(200, 165, 75, 0.16);
}

.regulations {
    background: #fff8ef;
}

.regulations-content {
    border: 1px solid rgba(217, 74, 58, 0.22);
    border-radius: var(--brand-radius);
    background: var(--brand-white);
    box-shadow: none;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    border: 1px solid rgba(16, 20, 26, 0.08);
    box-shadow: none;
}

.faq-question {
    font-weight: 800;
}

.newsletter {
    color: var(--brand-white);
    background: linear-gradient(135deg, #10141a 0%, #2a3038 100%);
}

.newsletter-content {
    border-radius: var(--brand-radius);
    background: transparent;
    box-shadow: none;
}

.newsletter h3,
.newsletter p {
    color: var(--brand-white);
}

.newsletter-form input {
    min-height: 46px;
    border-radius: var(--brand-radius);
}

.marquee-section {
    padding: 72px 0;
    background: var(--brand-ink);
}

.marquee-title {
    font-size: 2rem;
}

.marquee-item {
    border-radius: var(--brand-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer {
    background: #0b0f14;
}

.footer .logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 28px;
    border-radius: 5px;
    color: var(--brand-white);
    background: var(--brand-blue);
    font-size: 0.72rem;
    font-weight: 900;
}

.footer .logo-text,
.footer h4,
.footer-bottom,
.footer a {
    letter-spacing: 0;
}

.compact-footer {
    padding: 1.2rem 0;
}

.compact-footer .footer-bottom {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.payment-icon {
    min-width: 36px;
    height: 24px;
    padding: 0 0.35rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.68rem;
    font-weight: 900;
}

.cart-drawer,
.modal-content {
    border-radius: var(--brand-radius) 0 0 var(--brand-radius);
}

/* Catalogue and accessories */
.catalog-page,
.accessories-page {
    background: #eef2f5;
}

.catalog-hero,
.acc-hero {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 128px 20px 78px;
    text-align: left;
    color: var(--brand-white);
    background:
        linear-gradient(90deg, rgba(7, 10, 14, 0.86), rgba(7, 10, 14, 0.42)),
        url('hero-2.png') center / cover no-repeat;
}

.catalog-hero h1,
.acc-hero h1 {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 0.85rem;
    color: var(--brand-white);
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
}

.catalog-hero p,
.acc-hero p {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
}

.catalog-grid,
.acc-grid {
    gap: 1rem;
    margin-top: -44px;
}

.catalog-card,
.acc-card {
    border: 1px solid rgba(16, 20, 26, 0.08);
    box-shadow: var(--brand-shadow-soft);
}

.catalog-card:hover,
.acc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(16, 20, 26, 0.12);
}

.catalog-card-img,
.acc-card-img {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #151a20 0%, #38414a 100%);
}

.catalog-plaque {
    border-radius: 5px;
    background: linear-gradient(180deg, #fff 0%, #eef2f6 100%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.badge-pop {
    border-radius: 6px;
    color: var(--brand-ink);
    background: var(--brand-gold);
}

.acc-section-title {
    font-family: 'Inter', sans-serif;
}

.acc-card-img {
    color: var(--brand-white);
    font-size: 1.15rem;
    font-weight: 900;
}

/* Pages de contenu */
.page-content {
    padding-top: 140px;
    background: #eef2f5;
}

.page-header {
    text-align: left;
    border-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
}

.page-intro {
    margin-left: 0;
    color: var(--brand-muted);
}

.legal-content,
.faq-page-content,
.contact-page-grid {
    border: 1px solid rgba(16, 20, 26, 0.08);
    box-shadow: var(--brand-shadow-soft);
}

.legal-section h2 {
    color: var(--brand-ink);
    border-bottom-color: var(--brand-gold);
}

.info-card.highlight {
    background: #f6f9ff;
    border-color: var(--brand-blue);
}

/* Header app/catalogue */
.config-header {
    min-height: 76px;
    padding: 0.8rem 1.5rem;
    background: rgba(250, 251, 252, 0.92);
    border-bottom: 1px solid rgba(16, 20, 26, 0.08);
    box-shadow: 0 10px 28px rgba(16, 20, 26, 0.06);
}

.config-logo {
    color: var(--brand-ink);
    font-weight: 900;
}

.config-logo img,
.brand-plate-mark {
    width: 42px;
    height: 42px;
    border-radius: var(--brand-radius);
}

.brand-plate-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    background: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 900;
}

.config-header-nav {
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid rgba(16, 20, 26, 0.08);
    border-radius: var(--brand-radius);
    background: rgba(255, 255, 255, 0.72);
}

/* Configurateur premium */
.configurator-page {
    background: #eef2f5;
}

.wizard-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(430px, 520px);
    min-height: calc(100vh - 76px);
    margin-top: 76px;
    background: #eef2f5;
}

.wizard-preview {
    top: 76px;
    height: calc(100vh - 76px);
    background: #eef2f5;
}

.wizard-panel {
    min-height: calc(100vh - 76px);
    border-left: 1px solid rgba(16, 20, 26, 0.10);
    box-shadow: -22px 0 60px rgba(16, 20, 26, 0.08);
    background: var(--brand-white);
    isolation: isolate;
}

.wizard-steps {
    border-bottom: 1px solid rgba(16, 20, 26, 0.08);
}

.wizard-step {
    letter-spacing: 0;
}

.wizard-step.active .wizard-step-icon {
    background: var(--brand-blue);
}

.wizard-pane-title {
    font-size: 1.45rem;
}

.wizard-pane-desc {
    color: var(--brand-muted);
}

.wizard-card {
    border-color: rgba(16, 20, 26, 0.10);
    background: var(--brand-white);
}

.wizard-card:hover,
.wizard-card.selected {
    border-color: var(--brand-gold);
    box-shadow: 0 16px 34px rgba(16, 20, 26, 0.08);
}

.wizard-card.selected {
    background: #fffaf0;
}

.wizard-toggle-btn.active {
    color: var(--brand-white);
    background: var(--brand-ink);
}

.wizard-plaque-stage {
    border-radius: var(--brand-radius);
}

.preview-premium-controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 680px) !important;
    margin: 1rem 0 1.1rem !important;
    padding: 0.7rem 0.85rem !important;
    border: 1px solid rgba(16, 20, 26, 0.10);
    border-radius: var(--brand-radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(16, 20, 26, 0.08);
    backdrop-filter: blur(14px);
    gap: 0.85rem;
}

.premium-control-group,
.premium-bg-options {
    display: inline-flex !important;
    align-items: center;
}

.premium-control-group {
    gap: 0.7rem;
}

.premium-bg-options {
    gap: 0.45rem;
}

.premium-control-label {
    color: var(--brand-graphite);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.premium-bg-btn {
    display: inline-flex !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px;
    padding: 0 !important;
    border: 2px solid var(--brand-white) !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #151a20 0%, #38414a 100%) !important;
    box-shadow: 0 0 0 1px rgba(16, 20, 26, 0.18), 0 6px 14px rgba(16, 20, 26, 0.14);
}

.premium-bg-btn.bg-carbon {
    background-color: #101216 !important;
    background-image:
        linear-gradient(45deg, #2a3038 25%, transparent 25%),
        linear-gradient(-45deg, #2a3038 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #2a3038 75%),
        linear-gradient(-45deg, transparent 75%, #2a3038 75%) !important;
    background-size: 6px 6px !important;
}

.premium-bg-btn.bg-white {
    background: linear-gradient(135deg, #ffffff 0%, #dce2ea 100%) !important;
}

.premium-bg-btn.bg-garage {
    background: linear-gradient(135deg, #5a3028 0%, #241614 100%) !important;
}

.premium-bg-btn:hover,
.premium-bg-btn.active {
    transform: translateY(-1px) scale(1.08);
}

.premium-bg-btn.active {
    box-shadow: 0 0 0 2px var(--brand-gold), 0 10px 18px rgba(16, 20, 26, 0.18);
}

.premium-action-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem !important;
    color: var(--brand-white) !important;
    background: var(--brand-ink) !important;
    border: 1px solid rgba(16, 20, 26, 0.12) !important;
    box-shadow: 0 12px 26px rgba(16, 20, 26, 0.16);
    font-size: 0.82rem;
    font-weight: 900;
}

.premium-action-btn.active {
    color: var(--brand-ink) !important;
    background: linear-gradient(180deg, #e4cb77 0%, var(--brand-gold) 100%) !important;
}

.premium-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.68rem;
    font-weight: 900;
}

.premium-action-btn.active .premium-action-icon {
    background: rgba(16, 20, 26, 0.10);
}

.wizard-body,
.wizard-pane.active {
    position: relative;
    z-index: 2;
}

.wizard-body {
    background: var(--brand-white);
    overflow-y: visible;
}

.wizard-pane.active > * {
    position: relative;
    z-index: 1;
}

.wizard-pane,
.wizard-pane.active {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.wizard-preview.bg-carbon .wizard-plaque-stage {
    background-color: #12151a;
    background-image:
        linear-gradient(45deg, #181c22 25%, transparent 25%),
        linear-gradient(-45deg, #181c22 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #181c22 75%),
        linear-gradient(-45deg, transparent 75%, #181c22 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0;
}

.wizard-preview.bg-white .wizard-plaque-stage {
    background: radial-gradient(circle at 50% 30%, #f9fbfd 0%, #dce2ea 100%);
}

.wizard-preview.bg-white .stage-ruler {
    color: var(--brand-ink);
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(16, 20, 26, 0.12);
}

.wizard-preview.bg-garage .wizard-plaque-stage {
    background-color: #3b2824;
    background-image:
        linear-gradient(90deg, transparent 46px, #261b18 46px, #261b18 50px, transparent 50px),
        linear-gradient(0deg, #18100e 3px, transparent 3px),
        linear-gradient(90deg, #261b18 3px, transparent 3px),
        linear-gradient(0deg, transparent 23px, #261b18 23px, #261b18 26px, transparent 28px);
    background-size: 80px 40px;
}

@media (max-width: 1180px) {
    .hero h1 {
        font-size: 3.7rem;
    }

    .hero-visual {
        width: 40%;
        min-width: 380px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .header .nav {
        height: 76px;
    }

    .logo-img {
        height: 48px;
    }

    .hero {
        height: auto;
        min-height: 700px;
        max-height: none;
        padding-top: 108px;
    }

    .hero-visual {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        margin-top: 2rem;
    }

    .wizard-layout {
        grid-template-columns: 1fr;
    }

    .wizard-preview {
        position: relative;
        top: 0;
        height: auto;
    }

    .product-selection .product-grid-clean {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .config-header-nav {
        display: none;
    }

    .header .nav,
    .config-header {
        position: fixed;
        min-height: 86px;
        padding-inline: 1rem;
    }

    .brand-logo-img,
    .config-logo .brand-logo-img {
        width: 56px;
        height: 56px;
    }

    .brand-wordmark,
    .config-logo {
        min-width: 0;
    }

    .logo-text,
    .config-logo span {
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .nav-links.active,
    .config-header-nav.active {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 1rem;
        right: 1rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.7rem;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        background: rgba(5, 5, 5, 0.96);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(18px);
        z-index: 130;
    }

    .nav-links.active a,
    .config-header-nav.active a {
        width: 100%;
        justify-content: flex-start;
        min-height: 44px;
        padding: 0 0.9rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 680px;
        padding: 104px 0 54px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.02;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta,
    .newsletter-form,
    .product-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .product-cta-row .btn-large,
    .product-secondary-link {
        width: 100%;
    }

    .format-showcase {
        grid-template-columns: 1fr;
    }

    .hero .plaque {
        width: 100%;
        height: 96px;
        transform: perspective(1000px) rotateX(4deg) rotateY(-5deg);
    }

    .plaque-number {
        font-size: 2.6rem;
    }

    .features-grid,
    .preview-meta-grid {
        grid-template-columns: 1fr;
    }

    .features,
    .product,
    .faq,
    .contact,
    .newsletter {
        padding: 56px 0;
    }

    .section-header h2,
    .product-info h2,
    .page-header h1,
    .catalog-hero h1,
    .acc-hero h1 {
        font-size: 2.25rem;
    }

    .catalog-hero,
    .acc-hero {
        min-height: 320px;
        padding-top: 112px;
    }

    .legal-content {
        padding: 1.4rem;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-price .price {
        font-size: 2.2rem;
    }

    .trust-item {
        width: 100%;
    }

    .hero .plaque {
        height: 82px;
    }

    .plaque-left,
    .plaque-right {
        width: 42px;
    }

    .plaque-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Macemay custom - dark premium direction
   ========================================================================== */
:root {
    --brand-ink: #fafafa;
    --brand-graphite: #d4d4d8;
    --brand-line: #262626;
    --brand-paper: #050505;
    --brand-white: #0a0a0a;
    --brand-blue: #60a5fa;
    --brand-blue-deep: #2563eb;
    --brand-gold: #ffffff;
    --brand-red: #ef4444;
    --brand-green: #22c55e;
    --brand-muted: #a1a1aa;
    --brand-shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.34);
    --brand-shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.48);
}

html,
body {
    background: #050505;
    color: #d4d4d8;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.12), transparent 34%);
    background-size: 64px 64px, 64px 64px, 100% 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-header h2,
.product-info h2,
.catalog-card h2,
.acc-card h3,
.wizard-pane-title {
    color: #ffffff;
}

p,
.section-header p,
.product-description,
.hero-description,
.wizard-pane-desc,
.catalog-card p,
.shop-product-card p {
    color: #c7c7d1;
}

.header,
.config-header {
    background: rgba(5, 5, 5, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: none;
}

.header .nav {
    height: 96px;
}

.config-header {
    min-height: 96px;
}

.header.scrolled,
.config-header.scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.brand-logo-link,
.config-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: #ffffff;
    text-decoration: none;
}

.brand-logo-img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    padding: 0;
    border: 0;
}

.config-logo .brand-logo-img {
    width: 66px;
    height: 66px;
}

.footer .brand-logo-img {
    width: 54px;
    height: 54px;
}

.brand-wordmark,
.logo-text,
.config-logo span {
    color: transparent;
    background: linear-gradient(90deg, #d7b45a 0 58%, #b8bbc2 62% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 900;
}

.brand-wordmark .logo-text,
.logo.brand-logo-link .logo-text,
.footer-brand .logo-text,
.config-logo span,
.config-logo span:last-child {
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, #d7b45a 0 58%, #b8bbc2 62% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 900;
}

.nav-links,
.config-header-nav {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.config-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.mobile-menu-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.mobile-menu-btn span {
    background: #ffffff;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links a,
.config-header-nav a {
    color: #ffffff !important;
}

.nav-links a:hover,
.nav-links a.active,
.config-header-nav a:hover,
.config-header-nav a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary,
.catalog-card .btn,
.acc-card .add-btn,
.shop-add-btn,
.shop-contact-btn,
.premium-action-btn {
    color: #050505 !important;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover,
.shop-add-btn:hover,
.shop-contact-btn:hover {
    background: #e5e7eb !important;
    color: #050505 !important;
}

.catalogue-page .catalog-card-footer .btn-primary {
    color: #050505 !important;
    background: linear-gradient(180deg, #f1d784 0%, #c8a54b 100%) !important;
    border: 1px solid rgba(241, 215, 132, 0.5) !important;
    box-shadow: 0 14px 34px rgba(200, 165, 75, 0.26) !important;
}

.catalogue-page .catalog-card-footer .btn-primary:hover {
    background: linear-gradient(180deg, #ffe69a 0%, #d0ad55 100%) !important;
    box-shadow: 0 18px 40px rgba(200, 165, 75, 0.34) !important;
}

.btn-secondary,
.product-secondary-link {
    color: #ffffff;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    box-shadow: none;
}

.btn-secondary:hover,
.product-secondary-link:hover {
    background: #111111;
    border-color: #3f3f46;
}

.badge,
.section-badge,
.product-badge,
.catalog-tag,
.shop-product-topline span {
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero,
.features,
.product,
.faq,
.contact,
.newsletter,
.catalog-section,
.shop-managed-section,
.quote-band,
.footer,
.page-main {
    background: transparent;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 46%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-text h1 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.hero-text h1 .hero-title-gold,
.hero-text h1 .highlight {
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #fff3b0 0%, #d7b45a 48%, #9f6f22 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 28px rgba(215, 180, 90, 0.2);
}

.highlight,
.hero-price .price,
.catalog-card-footer strong,
.shop-product-bottom strong {
    color: #ffffff;
}

.trust-item,
.feature-card,
.product-images,
.product-info,
.faq-item,
.contact-info,
.contact-form-wrapper,
.newsletter-card,
.catalog-card,
.acc-card,
.legal-content,
.preview-meta-card,
.wizard-card,
.wizard-body,
.wizard-summary-card,
.wizard-total-card,
.shop-product-card,
.shop-empty-state {
    background: rgba(10, 10, 10, 0.86);
    border: 1px solid #242424;
    box-shadow: none;
}

.feature-card:hover,
.catalog-card:hover,
.shop-product-card:hover,
.format-card-home:hover {
    border-color: #3f3f46;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.product-selection {
    background: transparent;
}

.format-card-home {
    background: #0a0a0a;
    border: 1px solid #242424;
    color: #ffffff;
}

.format-card-home em,
.format-card-home .format-card-label,
.spec-label {
    color: #c7c7d1;
}

.product-promise-list span,
.spec-value {
    color: #ffffff;
    background: #111111;
    border-color: #262626;
}

.catalog-hero,
.acc-hero,
.shop-hero-dark {
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 132px 0 72px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
        radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.16), transparent 42%),
        #050505;
    color: #ffffff;
    text-align: left;
}

.catalog-hero .container,
.acc-hero .container {
    max-width: 900px;
}

.catalog-hero h1,
.acc-hero h1 {
    color: #ffffff;
}

.catalog-grid,
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.catalog-section,
.shop-managed-section {
    padding: 72px 0;
}

.catalog-layout {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.catalog-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.catalog-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.catalog-nav-link:hover,
.catalog-nav-link.is-active {
    border-color: #d7b45a;
    background: rgba(215, 180, 90, 0.14);
    color: #fff3b0;
}

.catalog-block-header {
    margin-bottom: 1.5rem;
}

.catalog-block-header h2 {
    margin: 0.65rem 0 0.4rem;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: #fff;
}

.catalog-block-header p {
    max-width: 720px;
    color: #d4d4d8;
    margin: 0;
}

.catalog-format-group {
    margin-bottom: 2rem;
}

.catalog-format-group:last-child {
    margin-bottom: 0;
}

.catalog-format-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #2a2a2a;
}

.catalog-format-head h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #fafafa;
    font-weight: 700;
}

.catalog-format-head span {
    font-size: 0.82rem;
    color: #a1a1aa;
    letter-spacing: 0.04em;
}

.catalog-format-grid--usa-states {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.catalog-plate-preview.usa-state-thumb {
    background-size: cover;
    background-position: center;
}

.catalog-card-usa-state .catalog-card-body p {
    font-size: 0.82rem;
}

.catalog-format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.catalog-card h3 {
    margin: 0.35rem 0 0.5rem;
    font-size: 1.12rem;
    color: #fff;
}

.catalog-category-header {
    grid-column: 1 / -1;
    padding: 1.4rem 0 0.4rem;
}

.catalog-category-header:first-child {
    padding-top: 0;
}

.catalog-category-header h2 {
    margin: 0.8rem 0 0.35rem;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.catalog-category-header p {
    max-width: 760px;
    color: #d4d4d8;
}

.catalog-card,
.shop-product-card {
    border-radius: 8px;
    overflow: hidden;
}

.catalog-plate-preview,
.shop-product-media {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), transparent),
        #111111;
    border-bottom: 1px solid #242424;
}

.catalog-plate-preview span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 62px;
    padding: 0 1rem;
    color: #111111;
    background: #f8fafc;
    border-radius: 6px;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.catalog-plate-preview.official {
    min-height: 210px;
    padding: 1.35rem;
}

.catalog-plate-svg {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
}

.catalog-plate-svg-auto {
    max-width: 360px;
}

.catalog-plate-svg-moto {
    max-width: 172px;
}

.catalog-plate-svg-suv {
    max-width: 196px;
}

.catalog-plate-preview.square span,
.catalog-plate-preview.tall span {
    min-width: 128px;
    height: 142px;
    white-space: pre-line;
    text-align: center;
    line-height: 1.15;
}

.catalog-plate-preview.black span {
    color: #f5f5f5;
    background: #050505;
    border: 1px solid #3f3f46;
}

.catalog-plate-preview.provisional span {
    color: #111111;
    background: linear-gradient(180deg, #ffe3ec 0%, #f4a9c3 100%);
    border: 2px solid #161616;
    box-shadow: 0 18px 40px rgba(244, 169, 195, 0.22);
}

.catalog-plate-preview.decorative span {
    min-width: 240px;
    padding: 1.1rem 1.7rem;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(215, 180, 90, 0.24), transparent 46%),
        linear-gradient(0deg, rgba(5, 5, 5, 0.52), rgba(5, 5, 5, 0.24)),
        var(--decor-img, #f8fafc);
    background-position: var(--decor-position, center);
    background-size: cover;
    border: 2px solid #d7b45a;
    border-radius: 6px;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 40px rgba(215, 180, 90, 0.18);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
}

.catalog-plate-preview.decorative.usa span {
    min-width: 190px;
    height: 86px;
    line-height: 1.05;
}

.official-plate-svg {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

/* Configurateur : voir configurateur-mesplaques.css (.is-svg-preview) */
.configurator-page .plaque-preview-host:not(.is-svg-preview) .official-plate-svg {
    position: static !important;
    inset: auto !important;
    width: 100%;
    height: auto;
}

.configurator-page .plaque-preview-host:not(.is-svg-preview) .official-plate-svg svg {
    height: auto !important;
    width: 100%;
}

.official-plate-svg[hidden] {
    display: none;
}

.official-plate-svg svg {
    display: block;
    width: 100%;
    height: 100%;
}

.plaque-preview.svg-plate-mode {
    background: transparent !important;
    min-width: 0;
}

.plaque-preview.svg-plate-mode .official-plate-svg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
}

.plaque-preview.svg-plate-mode .official-plate-svg svg {
    width: 100%;
    height: auto;
}

.configurator-mp-preview .plaque-preview.svg-plate-mode {
    display: block !important;
    height: auto !important;
    min-width: 0 !important;
}

.configurator-mp-preview .plaque-preview.svg-plate-mode .official-plate-svg {
    position: static !important;
    height: auto !important;
}

.configurator-mp-preview .plaque-preview.svg-plate-mode .official-plate-svg svg {
    width: 100% !important;
    height: auto !important;
}

.plaque-preview.svg-plate-mode > .plaque-band,
.plaque-preview.svg-plate-mode > .plaque-content {
    display: none !important;
}

.plaque-preview.svg-plate-mode::before,
.plaque-preview.svg-plate-mode::after {
    content: none !important;
    display: none !important;
}

.plaque-preview.svg-plate-mode .plaque-contour,
.plaque-preview.svg-plate-mode .plaque-reflection {
    z-index: 6;
}

.catalog-card-body,
.shop-product-body {
    padding: 1.2rem;
}

.catalog-card-footer,
.shop-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.15rem;
}

.shop-product-media {
    min-height: 220px;
}

.shop-product-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.shop-product-media span {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #050505;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
}

.shop-add-btn,
.shop-contact-btn {
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.shop-empty-state {
    grid-column: 1 / -1;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}

.section-header-dark {
    max-width: 720px;
    margin-bottom: 1.6rem;
}

.section-header-dark h2 {
    margin: 0.75rem 0 0.4rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #ffffff;
}

.quote-band {
    padding: 72px 0;
    border-top: 1px solid #242424;
}

.quote-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #0a0a0a;
}

.home-hero-refined {
    min-height: 760px;
    height: auto;
    padding: 132px 0 82px;
}

.home-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-hero-refined .hero-text {
    max-width: 780px;
}

.home-hero-refined .badge {
    color: #050505;
    background: linear-gradient(135deg, #fff4bd 0%, #d7b45a 58%, #b8862f 100%);
    border-color: rgba(255, 244, 189, 0.66);
    box-shadow: 0 12px 34px rgba(215, 180, 90, 0.22);
}

.home-hero-refined h1 {
    max-width: 820px;
    margin: 1rem 0 1rem;
    color: #ffffff !important;
    font-size: clamp(3.2rem, 6.4vw, 5.7rem);
    line-height: 0.95;
}

.home-hero-refined .hero-description {
    max-width: 700px;
    padding-left: 1rem;
    color: #f2f2f4;
    border-left: 3px solid #d7b45a;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.home-hero-stack {
    position: relative;
    min-height: 420px;
}

.home-stack-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(10, 10, 10, 0.88);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    text-decoration: none;
}

.home-stack-card:hover {
    color: #ffffff;
    border-color: rgba(215, 180, 90, 0.62);
    transform: translateY(-3px);
}

.home-stack-card span,
.home-service-card span,
.home-textile-card span {
    color: #d7b45a;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-stack-card strong,
.home-service-card h3,
.home-process-card h3,
.home-textile-card strong,
.home-contact-panel h2 {
    color: #ffffff;
}

.home-stack-card small {
    color: #c7c7d1;
    font-weight: 700;
}

.home-stack-card-main {
    inset: 42px 0 auto auto;
    width: min(100%, 390px);
    min-height: 220px;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(215, 180, 90, 0.18), transparent 44%),
        #0a0a0a;
}

.home-stack-card-main strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    color: #050505;
    background: #f8fafc;
    border-left: 44px solid #173c9b;
    border-right: 44px solid #173c9b;
    border-radius: 6px;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
}

.home-stack-card-accessory {
    left: 0;
    top: 0;
    width: min(72%, 270px);
}

.home-stack-card-textile {
    left: 22px;
    bottom: 18px;
    width: min(82%, 310px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 54%),
        #111111;
}

.home-offer-section,
.home-process-section,
.home-textile-section,
.home-contact-section {
    padding: 72px 0;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-service-card,
.home-process-card,
.home-textile-card,
.home-contact-panel {
    border: 1px solid #242424;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.86);
}

.home-service-card,
.home-process-card,
.home-textile-card {
    padding: 1.25rem;
    color: #ffffff;
    text-decoration: none;
}

.home-service-card:hover,
.home-textile-card:hover,
.home-process-card:hover {
    color: #ffffff;
    border-color: #3f3f46;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.home-service-card h3,
.home-process-card h3 {
    margin: 0.65rem 0 0.5rem;
    font-size: 1.1rem;
    line-height: 1.25;
}

.home-service-card p,
.home-process-card p,
.home-textile-layout p,
.home-contact-panel p {
    margin: 0;
    color: #c7c7d1;
    line-height: 1.65;
}

.home-plates-visual {
    display: grid;
    gap: 1rem;
    align-content: center;
    min-height: 430px;
    padding: 1.25rem;
}

.home-plate-preview {
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #0f0f0f;
}

.home-plate-preview span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    border-radius: 6px;
    color: #050505;
    background: #f8fafc;
    border-left: 42px solid #173c9b;
    border-right: 42px solid #173c9b;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.04em;
}

.home-plate-preview small {
    color: #a1a1aa;
    font-weight: 800;
}

.provisional-preview span {
    background: linear-gradient(180deg, #ffe3ec 0%, #f4a9c3 100%);
    border-color: #161616;
}

.black-preview span {
    color: #ffffff;
    background: #050505;
    border-color: #2a2a2a;
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-process-card span {
    color: #d7b45a;
    font-size: 0.9rem;
    font-weight: 950;
}

.home-textile-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #0a0a0a;
}

.home-textile-layout h2 {
    margin: 0.85rem 0 0.6rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
}

.home-textile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-textile-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-textile-card.featured {
    background:
        linear-gradient(135deg, rgba(215, 180, 90, 0.18), rgba(255, 255, 255, 0.04)),
        #101010;
    border-color: rgba(215, 180, 90, 0.34);
}

.home-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
}

.home-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.textile-realizations-section {
    padding: 72px 0;
}

.textile-realization-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.textile-realization-card {
    overflow: hidden;
    border: 1px solid #242424;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.86);
}

.textile-realization-card:hover {
    border-color: #3f3f46;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.textile-realization-media {
    min-height: 230px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 52%),
        #111111;
    border-bottom: 1px solid #242424;
}

.textile-realization-media::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 170px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #0a0a0a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.textile-realization-media::after {
    content: "";
    position: absolute;
    top: 44px;
    width: 62px;
    height: 32px;
    border-radius: 0 0 40px 40px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.textile-realization-media span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 44px;
    padding: 0.5rem 0.65rem;
    border-radius: 7px;
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-align: center;
}

.textile-realization-photo {
    padding: 0;
    background: #050505;
}

.textile-realization-photo::before,
.textile-realization-photo::after {
    content: none;
}

.textile-realization-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.textile-realization-jacket::before {
    width: 172px;
    background: #161616;
}

.textile-realization-jacket span {
    background: #f5f5f5;
}

.textile-realization-cap::before {
    width: 178px;
    height: 92px;
    border-radius: 90px 90px 22px 22px;
    transform: translateY(16px);
}

.textile-realization-cap::after {
    top: 133px;
    width: 210px;
    height: 28px;
    border-radius: 50%;
    background: #0a0a0a;
}

.textile-realization-beanie::before {
    width: 158px;
    height: 132px;
    border-radius: 72px 72px 8px 8px;
    transform: translateY(14px);
    background: #151515;
}

.textile-realization-beanie::after {
    top: 144px;
    width: 170px;
    height: 34px;
    border-radius: 8px;
    background: #0d0d0d;
}

.textile-realization-pack::before,
.textile-realization-logo::before {
    width: 230px;
    height: 142px;
}

.textile-realization-body {
    padding: 1.15rem;
}

.textile-realization-body span {
    color: #d7b45a;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.textile-realization-body h3 {
    margin: 0.5rem 0 0.45rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.textile-realization-body p {
    margin: 0;
    color: #c7c7d1;
    line-height: 1.6;
}

.quote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.shop-hero-split {
    min-height: 560px;
}

.shop-hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.shop-hero-copy {
    max-width: 760px;
}

.shop-hero-copy h1 {
    max-width: 780px;
    margin: 1rem 0 1.1rem;
    color: #ffffff;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 0.98;
}

.shop-hero-copy p {
    max-width: 670px;
    color: #d4d4d8;
    font-size: 1.08rem;
    line-height: 1.7;
}

.shop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.55rem;
}

.shop-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.shop-hero-points span,
.company-quote-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.88rem;
    font-weight: 800;
}

.shop-hero-visual {
    position: relative;
    min-height: 360px;
}

.accessory-visual,
.textile-visual,
.company-logo-visual {
    isolation: isolate;
}

.accessory-kit-card,
.accessory-piece,
.textile-mockup,
.company-logo-card,
.company-shirt-mockup,
.company-swatch-row {
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    background: #0a0a0a;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.accessory-kit-main {
    position: absolute;
    right: 8%;
    top: 16%;
    width: min(78%, 360px);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 48%),
        #0d0d0d;
}

.accessory-kit-label,
.company-logo-card small {
    color: #a1a1aa;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.accessory-kit-card strong {
    margin-top: 0.45rem;
    color: #ffffff;
    font-size: 1.85rem;
    line-height: 1.05;
}

.accessory-kit-card small {
    margin-top: 0.6rem;
    color: #d7b45a;
    font-weight: 800;
}

.accessory-piece {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-weight: 900;
}

.accessory-piece-top {
    left: 6%;
    top: 10%;
}

.accessory-piece-bottom {
    left: 12%;
    bottom: 14%;
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
}

.accessory-hero-premium {
    position: relative;
    overflow: hidden;
}

.accessory-hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, rgba(215, 180, 90, 0.12), transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 32%);
}

.accessory-hero-premium .section-badge {
    color: #050505;
    background: linear-gradient(135deg, #fff4bd, #d7b45a);
    border-color: rgba(255, 244, 189, 0.62);
}

.accessory-hero-premium .shop-hero-copy h1 {
    max-width: 700px;
}

.accessory-hero-premium .shop-hero-copy p {
    max-width: 690px;
    color: #f0f0f2;
}

.accessory-workbench {
    min-height: 430px;
}

.accessory-board,
.accessory-floating-tag,
.accessory-step-card,
.accessory-advice-panel {
    border: 1px solid #242424;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.accessory-board {
    position: absolute;
    right: 2%;
    top: 6%;
    width: min(94%, 430px);
    padding: 1.35rem;
    background:
        linear-gradient(135deg, rgba(215, 180, 90, 0.14), transparent 48%),
        #0a0a0a;
}

.accessory-board-kicker {
    display: inline-flex;
    color: #d7b45a;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.accessory-plate-sample {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    margin: 1rem 0;
    color: #050505;
    background: #f8fafc;
    border-left: 38px solid #173c9b;
    border-right: 38px solid #173c9b;
    border-radius: 6px;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 0.04em;
}

.accessory-board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.accessory-board-grid span {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.7rem 0.8rem;
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 800;
}

.accessory-board strong {
    display: block;
    margin-top: 1rem;
    color: #ffffff;
    font-size: 1.35rem;
}

.accessory-floating-tag {
    position: absolute;
    left: 0;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 0.95rem;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 900;
}

.accessory-floating-top {
    top: 0;
}

.accessory-floating-bottom {
    bottom: 6%;
    left: 10%;
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
}

.accessory-request-section,
.accessory-advice-section {
    padding: 72px 0;
}

.accessory-section-heading {
    max-width: 780px;
    margin-bottom: 1.35rem;
}

.accessory-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.accessory-step-card {
    padding: 1.25rem;
}

.accessory-step-card span {
    color: #d7b45a;
    font-size: 0.8rem;
    font-weight: 900;
}

.accessory-step-card h3 {
    margin: 0.55rem 0 0.45rem;
    color: #ffffff;
    font-size: 1.15rem;
}

.accessory-step-card p {
    margin: 0;
    color: #c7c7d1;
    line-height: 1.6;
}

.accessory-catalog-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.35rem;
}

.accessory-catalog-head .section-header-dark {
    margin-bottom: 0;
}

.accessory-catalog-head-simple {
    align-items: center;
}

.accessory-head-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    color: #ffffff;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-weight: 850;
    text-decoration: none;
}

.accessory-head-link:hover {
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
    border-color: rgba(215, 180, 90, 0.64);
}

.accessories-page .shop-product-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
        rgba(10, 10, 10, 0.92);
}

.accessories-page .shop-product-media {
    min-height: 170px;
}

.accessories-page .shop-product-media span {
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
    border-color: rgba(215, 180, 90, 0.7);
}

.accessories-page .shop-product-bottom strong {
    color: #f1d784;
    font-size: 0.95rem;
}

.accessories-page .shop-contact-btn {
    min-width: 112px;
}

.accessory-advice-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(215, 180, 90, 0.12), transparent 46%),
        #0a0a0a;
}

.accessory-advice-panel h2 {
    margin: 0.75rem 0 0.45rem;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.accessory-advice-panel p {
    max-width: 660px;
    margin: 0;
    color: #c7c7d1;
    line-height: 1.65;
}

.accessory-advice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.accessory-mini-hero {
    min-height: 520px;
    padding: 126px 0 64px;
}

.accessory-mini-hero .shop-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.accessory-mini-hero .section-badge {
    color: #050505;
    background: linear-gradient(135deg, #fff4bd, #d7b45a);
    border-color: rgba(255, 244, 189, 0.62);
}

.accessory-mini-hero .shop-hero-copy h1 {
    max-width: 620px;
    font-size: clamp(2.8rem, 5.7vw, 4.8rem);
}

.accessory-mini-hero .shop-hero-copy p {
    max-width: 640px;
    color: #f0f0f2;
}

.accessory-mini-visual {
    min-height: 330px;
    display: grid;
    align-content: center;
    gap: 0.8rem;
}

.accessory-mini-shelf,
.accessory-mini-price,
.accessory-mini-note {
    border: 1px solid #242424;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.92);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.accessory-mini-shelf {
    padding: 1rem;
    display: grid;
    gap: 0.65rem;
}

.accessory-mini-kicker {
    color: #d7b45a;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.accessory-mini-row {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.accessory-mini-row strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.accessory-mini-row small {
    color: #d7b45a;
    font-weight: 850;
}

.accessory-mini-price {
    justify-self: end;
    width: fit-content;
    padding: 0.8rem 1rem;
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
    font-weight: 900;
}

.shop-page.accessories-page,
.accessories-page main,
.accessories-page .shop-managed-section,
.accessories-page .accessory-mini-note-section,
.accessories-page .footer {
    background: #050505;
}

.accessories-page .shop-managed-section {
    padding-top: 132px;
}

.accessories-page .shop-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Boutique — cartes produit avec visuels mis en avant */
.shop-page.boutique-page,
.boutique-page main,
.boutique-page .shop-managed-section,
.boutique-page .accessory-mini-note-section,
.boutique-page .footer {
    background: #050505;
}

.boutique-page .shop-managed-section {
    padding-top: 132px;
}

.boutique-page .shop-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.35rem;
}

.boutique-page .shop-product-card--boutique {
    display: flex;
    flex-direction: column;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(215, 180, 90, 0.06) 0%, transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
        rgba(10, 10, 10, 0.94);
    border: 1px solid rgba(215, 180, 90, 0.14);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.boutique-page .shop-product-card--boutique:hover {
    border-color: rgba(215, 180, 90, 0.42);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(215, 180, 90, 0.08);
    transform: translateY(-3px);
}

.boutique-page .shop-product-media {
    position: relative;
    flex: 0 0 auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 18%, rgba(215, 180, 90, 0.1), transparent 62%),
        linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(215, 180, 90, 0.12);
}

.boutique-page .shop-product-media-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.15rem 1.25rem;
    box-sizing: border-box;
}

.boutique-page .shop-product-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
}

.boutique-page .shop-product-placeholder {
    width: 5.5rem;
    height: 5.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #1a1206;
    background: linear-gradient(135deg, #fff4bd 0%, #d7b45a 100%);
    border: 1px solid rgba(255, 244, 189, 0.55);
    font-size: 1.45rem;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(215, 180, 90, 0.22);
}

.boutique-page .shop-product-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1.15rem 1.25rem 1.25rem;
}

.boutique-page .shop-product-body h3 {
    margin: 0.35rem 0 0.5rem;
    font-size: 1.12rem;
    line-height: 1.3;
    color: #ffffff;
}

.boutique-page .shop-product-body p {
    flex: 1 1 auto;
    margin: 0;
    color: #b4b4be;
    font-size: 0.92rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.boutique-page .shop-product-topline span {
    color: #1a1206;
    background: linear-gradient(135deg, #fff4bd 0%, #d7b45a 100%);
    border-color: rgba(255, 244, 189, 0.45);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.boutique-page .shop-product-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1rem;
}

.boutique-page .shop-product-price {
    color: #f1d784 !important;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.boutique-page .shop-add-btn--gold {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: none;
    color: #1a1206 !important;
    background: linear-gradient(135deg, #fff4bd 0%, #e8c96a 38%, #c8a54b 100%) !important;
    border: 1px solid rgba(255, 244, 189, 0.62) !important;
    box-shadow:
        0 14px 32px rgba(200, 165, 75, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.boutique-page .shop-add-btn--gold:hover {
    color: #0d0904 !important;
    background: linear-gradient(135deg, #fff8d4 0%, #f0d57a 40%, #d7b45a 100%) !important;
    box-shadow:
        0 18px 40px rgba(215, 180, 90, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.boutique-page .shop-add-btn--gold:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(200, 165, 75, 0.24) !important;
}

.accessory-mini-note-section {
    padding: 56px 0 72px;
}

.accessory-mini-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
}

.accessory-mini-note h2 {
    margin: 0.75rem 0 0.45rem;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.accessory-mini-note p {
    max-width: 660px;
    margin: 0;
    color: #c7c7d1;
    line-height: 1.65;
}

.textile-mockup {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    text-align: center;
}

.textile-mockup-main {
    right: 11%;
    top: 8%;
    width: min(76%, 360px);
    min-height: 280px;
    flex-direction: column;
    gap: 0.9rem;
    background:
        linear-gradient(180deg, #161616, #080808),
        #0a0a0a;
}

.textile-mockup-main::before,
.company-shirt-mockup::before,
.company-shirt-mockup::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 92px;
    height: 72px;
    border-radius: 8px;
    background: #111111;
    border: 1px solid #242424;
    z-index: -1;
}

.textile-mockup-main::before,
.company-shirt-mockup::before {
    left: -42px;
    transform: rotate(-14deg);
}

.company-shirt-mockup::after {
    right: -42px;
    transform: rotate(14deg);
}

.textile-mockup-main span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 8px;
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
    font-size: 2rem;
}

.textile-mockup-side {
    left: 4%;
    bottom: 14%;
    width: 150px;
    min-height: 92px;
    background: #111111;
}

.textile-mockup-cap {
    left: 16%;
    top: 12%;
    width: 136px;
    min-height: 70px;
    color: #050505;
    background: #f5f5f5;
}

.shop-highlight-section,
.company-offer-section,
.company-process-section,
.company-quote-panel-section {
    padding: 72px 0;
}

.shop-feature-grid,
.company-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.shop-feature-card,
.company-offer-card,
.company-process-list article,
.company-quote-panel {
    border: 1px solid #242424;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.86);
}

.shop-feature-card,
.company-offer-card,
.company-process-list article {
    padding: 1.25rem;
}

.shop-feature-card span,
.company-process-list span {
    color: #d7b45a;
    font-size: 0.8rem;
    font-weight: 900;
}

.shop-feature-card h2,
.shop-feature-card h3,
.company-offer-card h3,
.company-process-list h3 {
    margin: 0.55rem 0 0.45rem;
    color: #ffffff;
    font-size: 1.15rem;
}

.shop-feature-card p,
.company-offer-card p,
.company-process-list p,
.company-quote-panel p {
    margin: 0;
    color: #c7c7d1;
    line-height: 1.6;
}

/* Floquage & textile entreprise — hero diaporama */
.shop-hero-slideshow {
    position: relative;
    overflow: hidden;
    min-height: min(88vh, 760px);
    padding-top: 128px;
    padding-bottom: 72px;
    background: #050505;
}

.shop-hero-slideshow.acc-hero,
.shop-hero-slideshow.shop-hero-dark {
    background: #050505;
}

.shop-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.shop-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s ease, transform 8s ease;
}

.shop-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.8) 36%, rgba(5, 5, 5, 0.28) 68%, rgba(5, 5, 5, 0.18) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.55) 100%);
}

.shop-hero-slideshow.acc-hero .container.shop-hero-slideshow-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    text-align: left;
}

.shop-hero-slideshow .shop-hero-slideshow-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    width: 100%;
    max-width: none;
}

.shop-hero-slideshow .shop-hero-copy {
    max-width: min(640px, 100%);
    margin: 0;
    text-align: left;
}

.shop-hero-slideshow .shop-hero-copy .section-badge {
    color: #1a1206;
    background: linear-gradient(135deg, #fff4bd 0%, #e8c96a 42%, #c8a54b 100%);
    border: 1px solid rgba(255, 244, 189, 0.55);
    box-shadow: 0 10px 28px rgba(200, 165, 75, 0.22);
}

.shop-hero-slideshow .shop-hero-copy h1 {
    background: linear-gradient(135deg, #fff8d4 0%, #f1d784 40%, #e4c06a 70%, #d7b45a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.shop-hero-slideshow .shop-hero-copy p {
    color: #f5ecd4;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.72);
    text-align: left;
}

.shop-hero-slideshow .shop-hero-actions {
    justify-content: flex-start;
}

.shop-hero-slideshow .shop-hero-points {
    justify-content: flex-start;
}

.shop-hero-slideshow .shop-hero-points span {
    color: #f1d784;
    border-color: rgba(215, 180, 90, 0.48);
    background: rgba(215, 180, 90, 0.14);
    font-weight: 800;
}

.company-offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-offer-card span {
    color: #050505;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0.35rem 0.55rem;
    border-radius: 6px;
    background: #f5f5f5;
    font-size: 0.78rem;
    font-weight: 900;
}

.company-shirt-mockup {
    position: absolute;
    right: 8%;
    top: 6%;
    width: min(78%, 360px);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    background: linear-gradient(180deg, #f7f7f7, #d7d7d7);
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 950;
    text-align: center;
}

.company-shirt-neck {
    position: absolute;
    top: 0;
    left: 50%;
    width: 96px;
    height: 48px;
    transform: translateX(-50%);
    border-radius: 0 0 60px 60px;
    background: #050505;
}

.company-logo-card {
    position: absolute;
    left: 6%;
    bottom: 14%;
    max-width: 210px;
    padding: 1rem;
}

.company-logo-card strong {
    display: block;
    margin-top: 0.35rem;
    color: #ffffff;
    line-height: 1.2;
}

.company-swatch-row {
    position: absolute;
    left: 10%;
    top: 12%;
    display: flex;
    gap: 0.5rem;
    padding: 0.65rem;
}

.company-swatch-row span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.company-swatch-row span:nth-child(1) {
    background: #ffffff;
}

.company-swatch-row span:nth-child(2) {
    background: #111827;
}

.company-swatch-row span:nth-child(3) {
    background: #d7b45a;
}

.company-process-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 2rem;
    align-items: start;
}

.company-process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.company-quote-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
}

.company-quote-panel h2 {
    margin: 0.7rem 0 0.45rem;
}

.company-quote-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.wizard-panel,
.wizard-body,
.wizard-footer {
    background: #050505;
}

.wizard-preview {
    background: #050505;
}

.wizard-card.selected,
.wizard-card:hover {
    background: #111111;
    border-color: #ffffff;
    box-shadow: none;
}

.wizard-toggle-btn.active {
    color: #050505;
    background: #ffffff;
}

.wizard-input,
.wizard-select,
.wizard-dept-current,
.wizard-dept-list,
.decor-upload-card,
.decor-file-row,
input,
select,
textarea {
    color: #ffffff;
    background: #111111;
    border-color: #2a2a2a;
}

.decor-file-row button {
    color: #f1d37a;
}

.wizard-input::placeholder,
textarea::placeholder,
input::placeholder {
    color: #71717a;
}

.preview-premium-controls {
    background: rgba(10, 10, 10, 0.86);
    border-color: #242424;
    box-shadow: none;
}

.premium-control-label {
    color: #d4d4d8;
}

.premium-action-btn.active {
    color: #050505 !important;
    background: #ffffff !important;
}

.plaque-preview.format-usa {
    width: 520px;
    height: 110px;
    background: #050505 !important;
    border-color: #2a2a2a !important;
}

.plaque-preview.format-usa .plaque-content {
    background: #050505 !important;
    color: #f5f5f5 !important;
    border-radius: 5px;
}

.plaque-preview.format-usa .plaque-text {
    color: #f5f5f5 !important;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    letter-spacing: 0.04em;
}

.plaque-preview.format-usa::before,
.plaque-preview.format-usa::after,
.plaque-preview.format-usa .plaque-content::before,
.plaque-preview.format-usa .plaque-content::after {
    background: #d4d4d8 !important;
    opacity: 0.68;
}

.cart-drawer,
.cart-drawer.active {
    background: #050505 !important;
    border-left: 1px solid #2a2a2a;
    color: #ffffff !important;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.55);
}

.cart-drawer .cart-header {
    background: #050505;
    border-bottom: 1px solid #2a2a2a;
}

.cart-drawer .cart-header h2,
.cart-drawer .cart-header h3 {
    color: #ffffff !important;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
}

.cart-drawer .close-cart {
    color: #a1a1aa !important;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.cart-drawer .close-cart:hover {
    color: #f1d784 !important;
}

.cart-drawer .cart-items {
    background: #050505;
}

.cart-drawer .empty-cart-message {
    color: #a1a1aa !important;
}

.cart-footer {
    background: #0a0a0a !important;
    border-top: 1px solid #2a2a2a !important;
}

.cart-drawer .cart-total span:first-child {
    color: #a1a1aa !important;
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-drawer .cart-total strong,
.cart-drawer .cart-total {
    color: #f1d784 !important;
}

.cart-drawer .btn-checkout,
.cart-drawer .btn.btn-primary.btn-checkout {
    color: #1a1206 !important;
    background: linear-gradient(135deg, #fff4bd 0%, #e8c96a 38%, #c8a54b 100%) !important;
    border: 1px solid rgba(255, 244, 189, 0.55) !important;
    box-shadow: 0 12px 28px rgba(200, 165, 75, 0.28) !important;
}

.cart-drawer .btn-checkout:hover,
.cart-drawer .btn.btn-primary.btn-checkout:hover {
    background: linear-gradient(135deg, #fff8d4 0%, #f0d57a 40%, #d7b45a 100%) !important;
    color: #0d0904 !important;
}

.cart-item {
    border-color: #2a2a2a !important;
}

.cart-drawer .cart-item-remove {
    color: #fca5a5 !important;
}

.cart-drawer .cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #f87171 !important;
}

.modal-content {
    background: #050505 !important;
    border: 1px solid #2a2a2a !important;
    color: #ffffff !important;
}

#paymentModal .order-summary {
    background: #111111 !important;
    border: 1px solid #2a2a2a !important;
}

#paymentModal .order-summary h3,
#paymentModal .order-summary p,
#paymentModal .summary-items p,
#paymentModal .summary-items strong {
    color: #f5f5f5 !important;
}

#paymentModal .order-summary p strong,
#paymentModal .summary-items p strong {
    color: #ffffff !important;
}

#paymentModal .summary-total,
#paymentModal .summary-total span {
    color: #f1d784 !important;
    border-top-color: #2a2a2a !important;
}

#paymentModal .close-modal {
    color: #a1a1aa !important;
}

#paymentModal .close-modal:hover {
    color: #f1d784 !important;
}

#paymentModal .payment-loading,
#paymentModal .payment-error,
#paymentModal .payment-secure-copy {
    color: #d4d4d8 !important;
}

.footer {
    border-top: 1px solid #242424;
}

.wizard-layout {
    min-height: calc(100vh - 96px);
    margin-top: 96px;
}

.wizard-preview {
    top: 96px;
    height: calc(100vh - 96px);
}

.hero-trust,
.trust-item,
.feature-card p,
.faq-answer p,
.contact-info p,
.footer p,
.footer a,
.footer li,
.legal-content p,
.legal-content li,
.page-intro,
.shop-product-topline span,
.catalog-tag,
.wizard-field-hint,
.wizard-card-sub,
.wizard-card-price,
.wizard-dept-current-name,
.wizard-recap-row .label,
.cart-item-details,
.cart-item-qty,
.summary-items p,
.section-header-dark p,
.quote-band p {
    color: #d4d4d8 !important;
}

.wizard-field-label,
.wizard-card-title,
.wizard-dept-current-num,
.wizard-recap-row .value,
.cart-item-title,
.cart-total,
.modal-content h2,
.order-summary h3,
.summary-total,
.footer h4,
.contact-info h3,
.faq-question span {
    color: #ffffff !important;
}

.wizard-step {
    color: #d4d4d8;
}

.wizard-step.active,
.wizard-step:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.cart-item-price,
.summary-total span {
    color: #ffffff !important;
}

.page-content {
    background: #050505 !important;
    color: #d4d4d8;
}

.page-header {
    border-bottom-color: #242424 !important;
}

.page-header h1,
.legal-section h2,
.legal-section h3,
.faq-category h2,
.contact-info-section h2,
.contact-form-section h2,
.contact-card h3,
.faq-cta h2 {
    color: #ffffff !important;
}

.legal-content,
.faq-cta,
.contact-card,
.contact-form-section,
.info-card,
.warning-section {
    background: rgba(10, 10, 10, 0.86) !important;
    border: 1px solid #242424 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

.intro-text,
.legal-section p,
.legal-section li,
.faq-cta p,
.contact-card p,
.contact-note,
.contact-form label,
.contact-card-content span,
.contact-card-content strong {
    color: #d4d4d8 !important;
}

.legal-section strong,
.faq-answer strong,
.contact-card strong {
    color: #ffffff;
}

.legal-section a,
.faq-answer a,
.contact-card a,
.footer-contact a {
    color: #f1d37a !important;
}

.legal-section h2,
.faq-category h2 {
    border-bottom-color: #d7b45a !important;
}

.contact-card-icon {
    color: #050505;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
}

.payment-loading,
.payment-error,
.payment-secure-copy {
    margin: 0;
    padding: 1rem;
    border: 1px solid #242424;
    border-radius: 8px;
    color: #d4d4d8;
    background: #111111;
    text-align: center;
}

.payment-error {
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.4);
}

.mollie-pay-btn {
    width: 100%;
    justify-content: center;
}

.paypal-payment-container {
    min-height: 120px;
}

.paypal-payment-container #paypal-buttons-host {
    margin-top: 0.75rem;
}

.mollie-pay-btn:disabled {
    cursor: wait;
    opacity: 0.75;
}

.payment-return-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: #050505;
}

.payment-return-card {
    width: min(100%, 520px);
    padding: 2rem;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #0a0a0a;
    text-align: center;
}

.payment-return-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.payment-return-kicker {
    color: #d7b45a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-return-card h1 {
    margin: 0.35rem 0 0.75rem;
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.payment-return-card p {
    color: #d4d4d8;
}

.payment-return-card .btn {
    margin-top: 1.25rem;
}

.configurator-page .wizard-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 500px);
    background: #050505;
}

.configurator-page .wizard-preview {
    background:
        radial-gradient(circle at 18% 12%, rgba(215, 180, 90, 0.18), transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(59, 130, 246, 0.15), transparent 34%),
        linear-gradient(180deg, #0b0b0c 0%, #050505 100%);
}

.configurator-page .preview-intro h1 {
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 850;
}

.configurator-page .preview-intro p {
    color: #d4d4d8;
}

.configurator-page .wizard-plaque-stage {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(180deg, #151515 0%, #080808 100%);
}

.configurator-page .wizard-panel {
    background: #070707;
    border-left: 1px solid #242424;
}

.wizard-live-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0.95rem;
    border-bottom: 1px solid #242424;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        #070707;
}

.wizard-live-summary-item {
    min-width: 0;
    padding: 0.75rem;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #0d0d0d;
}

.wizard-live-summary-item span {
    display: block;
    margin-bottom: 0.25rem;
    color: #a1a1aa;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wizard-live-summary-item strong {
    display: block;
    color: #ffffff;
    font-size: clamp(0.82rem, 1.5vw, 0.96rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.configurator-page .wizard-steps {
    gap: 0.55rem;
    padding: 0.9rem;
    border-bottom-color: #242424;
    background: #070707;
}

.configurator-page .wizard-step {
    min-height: 58px;
    justify-content: center;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #0d0d0d;
}

.configurator-page .wizard-step.active {
    color: #050505;
    border-color: #d7b45a;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
}

.configurator-page .wizard-step.completed {
    border-color: rgba(215, 180, 90, 0.42);
    color: #f1d37a;
}

.configurator-page .wizard-body {
    background: #050505;
}

.configurator-page .wizard-pane-title {
    color: #ffffff;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.configurator-page .wizard-pane-desc {
    color: #b8bbc2;
}

.configurator-page .wizard-field {
    padding: 1rem;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #0a0a0a;
}

.configurator-page .wizard-field + .wizard-field {
    margin-top: 0.9rem;
}

.configurator-page .wizard-card,
.configurator-page .wizard-dept-current,
.configurator-page .wizard-input,
.configurator-page .wizard-dept-list,
.configurator-page .decor-upload-card {
    background: #111111 !important;
    border-color: #2a2a2a !important;
}

.configurator-page .wizard-card:hover,
.configurator-page .wizard-card.selected,
.configurator-page .wizard-dept-current:hover,
.configurator-page .wizard-input:focus {
    border-color: #d7b45a !important;
    box-shadow: 0 0 0 3px rgba(215, 180, 90, 0.12) !important;
}

.configurator-page .wizard-card.selected {
    background:
        linear-gradient(135deg, rgba(215, 180, 90, 0.14), rgba(255, 255, 255, 0.04)),
        #111111 !important;
}

.configurator-page #formatGrid[hidden],
.configurator-page #homologToggle[hidden],
.configurator-page #homologHint[hidden],
.configurator-page .selected-product-card[hidden],
.configurator-page .selected-mode-card[hidden],
.configurator-page .wizard-field[hidden] {
    display: none !important;
}

.selected-product-card,
.selected-mode-card {
    display: grid;
    gap: 0.85rem;
    align-items: center;
    border: 1px solid rgba(215, 180, 90, 0.32);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(215, 180, 90, 0.16), rgba(255, 255, 255, 0.04)),
        #111111;
}

.selected-product-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 0.95rem;
}

.selected-mode-card {
    padding: 0.95rem 1rem;
}

.selected-product-icon {
    width: 58px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2a2a2a;
    border-radius: 6px;
    color: #050505;
    background:
        linear-gradient(90deg, #003399 0 17%, #ffffff 17% 83%, #003399 83% 100%);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0;
}

.selected-product-copy,
.selected-mode-card {
    min-width: 0;
}

.selected-product-copy strong,
.selected-mode-card strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2;
}

.selected-product-copy span,
.selected-mode-card span {
    display: block;
    margin-top: 0.28rem;
    color: #d4d4d8;
    font-size: 0.84rem;
    line-height: 1.45;
}

.selected-product-change {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.8rem;
    border: 1px solid #3f3f46;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.selected-product-change:hover {
    color: #050505;
    border-color: #d7b45a;
    background: #d7b45a;
}

.configurator-page .wizard-toggle {
    padding: 0.22rem;
    border: 1px solid #242424;
    border-radius: 8px;
    background: #050505;
}

.configurator-page .wizard-toggle-btn {
    border-radius: 6px;
    color: #d4d4d8;
}

.configurator-page .wizard-toggle-btn.active {
    color: #050505;
    background: #ffffff;
}

.configurator-page .wizard-step.completed .wizard-step-icon::before {
    content: none !important;
}

.configurator-page .wizard-card.selected::after {
    content: none !important;
}

.configurator-page .wizard-dept-item {
    display: grid;
    grid-template-columns: 38px minmax(34px, auto) minmax(0, 1fr);
    gap: 0.65rem;
    align-items: center;
    min-height: 54px;
    padding: 0.65rem;
    border-color: #242424;
    border-radius: 8px;
    background: #0d0d0d;
}

.configurator-page .wizard-dept-item:hover {
    background: rgba(215, 180, 90, 0.12);
}

.configurator-page .wizard-dept-search {
    position: static;
}

.configurator-page .wizard-dept-list {
    position: static;
    inset: auto;
    max-height: 320px;
    margin-top: 0.65rem;
    padding: 0.45rem;
    overflow-y: auto;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.configurator-page .wizard-dept-list.open {
    display: grid;
    gap: 0.45rem;
}

.configurator-page .dept-list-logo {
    background: #ffffff;
}

.configurator-page .wizard-dept-item .dept-num {
    color: #ffffff;
    font-weight: 900;
}

.configurator-page .dept-list-name {
    color: #ffffff;
    line-height: 1.25;
}

.configurator-page .dept-list-name small {
    margin-top: 0.18rem;
    color: #a1a1aa;
}

.preview-meta-value-with-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.preview-region-logo {
    width: 28px;
    height: 36px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    background: #ffffff;
}

.preview-region-logo[hidden] {
    display: none;
}

.preview-region-logo img,
.preview-region-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-region-logo .car-region-logo,
.dept-logo .car-region-logo {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.preview-region-logo:has(.car-region-logo),
.dept-logo:has(.car-region-logo) {
    background: #0b0b0b !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.custom-right-logo {
    max-width: 100%;
    color: #111111;
    font-size: 0.54rem;
    font-weight: 950;
    line-height: 1;
    text-align: center;
    overflow-wrap: anywhere;
}

.official-plate-svg image {
    pointer-events: none;
}

.configurator-page .wizard-footer {
    border-top-color: #242424;
    background: #070707;
}

.configurator-page .wizard-recap {
    display: grid;
    gap: 0.6rem;
    margin: 1.2rem 0 1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
}

.configurator-page .wizard-recap-row {
    display: grid !important;
    grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.25fr);
    gap: 1rem;
    align-items: center;
    min-height: 50px;
    padding: 0.75rem 0.9rem;
    border: 1px solid #242424 !important;
    border-radius: 8px;
    background: #0d0d0d;
    font-size: 0.9rem;
}

.configurator-page .wizard-recap-row .label {
    color: #a1a1aa !important;
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.configurator-page .wizard-recap-row .value {
    min-width: 0;
    color: #ffffff !important;
    font-weight: 800;
    line-height: 1.35;
    text-align: right;
    overflow-wrap: anywhere;
}

.configurator-page .wizard-recap-total {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin-top: 0.2rem;
    padding: 1rem;
    border: 1px solid #d7b45a !important;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
}

.configurator-page .wizard-recap-total .label,
.configurator-page .wizard-recap-total .value {
    color: #050505 !important;
}

.configurator-page .wizard-recap-total .label {
    font-size: 0.85rem;
    font-weight: 900;
}

.configurator-page .wizard-recap-total .value {
    font-size: 1.35rem;
    font-weight: 950;
    white-space: nowrap;
}

.configurator-page .wizard-trust {
    gap: 0.65rem;
    margin-top: 1rem;
}

.configurator-page .wizard-trust-item {
    min-height: 42px;
    padding: 0.7rem;
    border: 1px solid #242424;
    border-radius: 8px;
    color: #d4d4d8;
    background: #0d0d0d;
}

.configurator-page .wizard-btn-primary {
    background: #ffffff;
    color: #050505;
}

.configurator-page .wizard-btn-cta {
    background: linear-gradient(135deg, #fff3b0, #d7b45a);
    color: #050505;
}

@media (max-width: 1080px) {
    .home-hero-content,
    .home-textile-layout,
    .home-contact-panel,
    .shop-hero-grid,
    .company-process-layout,
    .company-quote-panel {
        grid-template-columns: 1fr;
    }

    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .textile-realization-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-contact-actions {
        justify-content: flex-start;
    }

    .shop-hero-visual {
        min-height: 320px;
    }

    .company-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-quote-panel .btn {
        width: fit-content;
    }

    .accessory-step-grid,
    .accessory-catalog-head,
    .accessory-advice-panel,
    .accessory-mini-note {
        grid-template-columns: 1fr;
    }

    .accessory-advice-actions {
        justify-content: flex-start;
    }

    .accessory-mini-price {
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .home-hero-refined {
        min-height: auto;
        padding: 118px 0 58px;
    }

    .home-hero-refined h1 {
        font-size: 2.65rem;
        line-height: 1.02;
    }

    .home-hero-stack {
        min-height: 390px;
    }

    .home-service-grid,
    .home-process-grid,
    .home-textile-actions,
    .textile-realization-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card,
    .home-process-card,
    .home-textile-card,
    .home-textile-layout,
    .home-contact-panel {
        padding: 1rem;
    }

    .home-contact-actions,
    .home-contact-actions .btn,
    .home-hero-refined .hero-cta .btn,
    .quote-actions,
    .quote-actions .btn {
        width: 100%;
    }

    .home-plate-preview span,
    .home-stack-card-main strong {
        border-left-width: 28px;
        border-right-width: 28px;
        font-size: 1.8rem;
    }

    .shop-hero-copy h1 {
        font-size: 2.55rem;
        line-height: 1.04;
    }

    .shop-hero-copy p {
        font-size: 1rem;
    }

    .shop-hero-slideshow .shop-hero-copy,
    .shop-hero-slideshow .shop-hero-copy h1,
    .shop-hero-slideshow .shop-hero-copy p {
        text-align: left;
    }

    .shop-hero-slideshow .shop-hero-actions,
    .shop-hero-slideshow .shop-hero-points {
        justify-content: flex-start;
    }

    .shop-feature-grid,
    .company-offer-grid,
    .company-process-list {
        grid-template-columns: 1fr;
    }

    .shop-hero-actions .btn,
    .company-quote-panel .btn {
        width: 100%;
    }

    .accessory-kit-main,
    .textile-mockup-main,
    .company-shirt-mockup {
        right: 0;
        width: min(100%, 330px);
    }

    .accessory-piece-top,
    .textile-mockup-cap,
    .company-swatch-row {
        left: 0;
    }

    .accessory-piece-bottom,
    .textile-mockup-side,
    .company-logo-card {
        left: 4%;
    }

    .accessory-workbench {
        min-height: auto;
        display: grid;
        gap: 0.75rem;
    }

    .accessory-board,
    .accessory-floating-tag {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .accessory-board-grid {
        grid-template-columns: 1fr;
    }

    .accessory-plate-sample {
        min-height: 72px;
        border-left-width: 28px;
        border-right-width: 28px;
        font-size: 1.9rem;
    }

    .accessory-advice-panel {
        padding: 1rem;
    }

    .accessory-advice-actions,
    .accessory-advice-actions .btn,
    .accessory-head-link {
        width: 100%;
    }

    .accessory-mini-hero {
        padding: 118px 0 52px;
    }

    .accessory-mini-visual {
        min-height: auto;
    }

    .accessory-mini-note {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .accessories-page .shop-managed-section,
    .boutique-page .shop-managed-section {
        padding-top: 118px;
    }

    .boutique-page .shop-products-grid {
        grid-template-columns: 1fr;
    }

    .boutique-page .shop-product-media {
        aspect-ratio: 1 / 1;
    }

    .quote-band-inner,
    .catalog-card-footer,
    .shop-product-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-plate-preview span {
        min-width: 200px;
        font-size: 1.55rem;
    }

    .selected-product-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .selected-product-change {
        grid-column: 1 / -1;
    }

    .configurator-page .wizard-recap-row,
    .configurator-page .wizard-recap-total {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .configurator-page .wizard-recap-row .value {
        text-align: left;
    }

    .configurator-page .wizard-recap-total .value {
        white-space: normal;
    }
}