/* Pages légales, votes, boutique — extension du thème Pokyra */

.legal-page {
    padding: 120px 0 80px;
    min-height: 70vh;
}

.legal-hero {
    text-align: center;
    margin-bottom: 48px;
}

.legal-hero .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px 48px;
    backdrop-filter: blur(20px);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-cyan);
    margin: 32px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-yellow);
    margin: 20px 0 10px;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--color-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--color-yellow);
}

.legal-placeholder {
    background: hsla(38, 92%, 52%, 0.08);
    border: 1px dashed hsla(38, 92%, 52%, 0.35);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--color-yellow);
    margin: 16px 0;
}

.legal-toc {
    max-width: 820px;
    margin: 0 auto 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 28px 36px;
}

.legal-toc-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-yellow);
    margin: 0 0 16px;
}

.legal-toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 1;
}

@media (min-width: 640px) {
    .legal-toc ol {
        columns: 2;
        column-gap: 32px;
    }
}

.legal-toc li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.legal-toc a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-toc a:hover {
    color: var(--color-cyan);
}

.legal-content h2[id] {
    scroll-margin-top: 100px;
}

.legal-contact-block {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.9rem;
}

/* ── Votes ── */
.votes-section {
    padding: 100px 0;
}

.vote-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid hsla(199, 85%, 48%, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 40px;
}

.vote-info-banner i {
    color: var(--color-cyan);
    font-size: 1.4rem;
    margin-top: 2px;
}

.vote-info-banner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.vote-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.vote-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.vote-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-cyan);
    opacity: 0.6;
}

.vote-card.vote-gold::before { background: var(--color-yellow); }
.vote-card.vote-yellow::before { background: var(--color-yellow); }
.vote-card.vote-blue::before { background: var(--color-accent-blue); }

.vote-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-main);
}

.vote-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-cyan);
}

.vote-gold .vote-card-icon { color: var(--color-yellow); }

.vote-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.vote-card-reward,
.vote-card-cooldown {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.vote-card-reward i,
.vote-card-cooldown i {
    margin-right: 6px;
    color: var(--color-yellow);
}

.vote-card-actions {
    margin-top: 16px;
}

.vote-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-cyan), hsl(199, 85%, 38%));
    color: #fff;
    box-shadow: var(--shadow-cyan);
    transition: var(--transition-snappy);
    text-decoration: none;
}

button.vote-card-btn {
    appearance: none;
}

.vote-card-btn--disabled {
    background: hsl(222, 18%, 22%);
    color: var(--text-muted);
    box-shadow: none;
    pointer-events: none;
    cursor: not-allowed;
}

.vote-card--cooldown {
    opacity: 0.88;
}

.vote-card--pending {
    border-color: hsla(38, 92%, 52%, 0.35);
    box-shadow: 0 0 24px hsla(38, 92%, 52%, 0.12);
}

.vote-card-step {
    font-size: 0.8rem;
    color: var(--color-yellow);
    margin-bottom: 12px;
    line-height: 1.4;
}

.vote-card-step i {
    margin-right: 6px;
}

.vote-card-btn--verify {
    background: linear-gradient(135deg, var(--color-yellow), hsl(38, 85%, 42%));
    color: #111;
    box-shadow: var(--shadow-yellow);
}

.vote-card-btn--verify:hover {
    box-shadow: 0 0 20px hsla(38, 92%, 52%, 0.45);
}

.vote-card-btn--vote:hover,
a.vote-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px hsla(199, 85%, 48%, 0.4);
}

.vote-card--ready .vote-card-timer--ready {
    color: hsl(142, 60%, 52%);
    font-weight: 600;
}

.vote-card-timer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 10px 0 4px;
    min-height: 1.4em;
}

.vote-card-timer i {
    margin-right: 6px;
    color: var(--color-cyan);
}

.vote-login-section {
    min-height: 50vh;
}

.vote-login-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px 28px;
}

.vote-login-form {
    margin: 0;
}

.vote-user-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vote-user-bar strong {
    color: var(--color-cyan);
    font-weight: 600;
}

.vote-user-bar a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vote-user-bar a:hover {
    color: var(--color-cyan);
}

.vote-user-change {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.vote-user-change:hover {
    color: var(--color-cyan);
}

.vote-pseudo-panel {
    margin-bottom: 32px;
}

.vote-pseudo-panel-inner {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 22px 24px;
}

.vote-pseudo-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.vote-pseudo-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vote-pseudo-input {
    flex: 1 1 200px;
    min-width: 0;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-glass);
    background: hsla(222, 28%, 5%, 0.6);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-snappy);
}

.vote-pseudo-input:focus {
    outline: none;
    border-color: hsla(199, 85%, 48%, 0.45);
    box-shadow: 0 0 0 3px hsla(199, 85%, 48%, 0.12);
}

.vote-pseudo-save {
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-yellow), hsl(38, 85%, 42%));
    color: #111;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-snappy);
}

.vote-pseudo-save:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-yellow);
}

.vote-pseudo-hint {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.vote-pseudo-hint--ok {
    color: hsl(142, 55%, 58%);
}

.vote-pseudo-hint--error {
    color: hsl(0, 70%, 62%);
}

.vote-pseudo-hint--warn {
    color: var(--color-yellow);
}

.vote-pseudo-hint--loading {
    color: var(--color-cyan);
}

body.vote-captcha-open {
    overflow: hidden;
}

.vote-captcha-modal[hidden] {
    display: none;
}

.vote-captcha-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.vote-captcha-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 18, 0.82);
    backdrop-filter: blur(6px);
}

.vote-captcha-dialog {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: linear-gradient(165deg, hsl(222, 26%, 12%) 0%, hsl(222, 28%, 8%) 100%);
    border: 1px solid var(--border-glass-hover);
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-main), 0 0 40px hsla(199, 85%, 48%, 0.08);
}

.vote-captcha-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-snappy);
}

.vote-captcha-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.vote-captcha-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 8px;
}

.vote-captcha-header h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.vote-captcha-site {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.vote-captcha-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.vote-captcha-question {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 16px;
}

.vote-captcha-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-glass);
    background: hsla(222, 28%, 5%, 0.7);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition-snappy);
}

.vote-captcha-input:focus {
    outline: none;
    border-color: hsla(199, 85%, 48%, 0.5);
    box-shadow: 0 0 0 3px hsla(199, 85%, 48%, 0.12);
}

.vote-captcha-input--error {
    border-color: hsla(0, 70%, 55%, 0.55);
}

.vote-captcha-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.vote-captcha-feedback {
    min-height: 1.2em;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--color-yellow);
}

.vote-captcha-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.vote-captcha-btn {
    flex: 1;
    padding: 13px 18px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-snappy);
}

.vote-captcha-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.vote-captcha-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
}

.vote-captcha-btn-ghost:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.vote-captcha-btn-primary {
    background: linear-gradient(135deg, var(--color-cyan), hsl(199, 85%, 38%));
    color: #fff;
    box-shadow: var(--shadow-cyan);
}

.vote-captcha-btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 0 22px hsla(199, 85%, 48%, 0.4);
}

.vote-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.vote-step {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
}

.vote-step-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-yellow);
    color: #111;
    font-weight: 800;
    margin-bottom: 12px;
}

.vote-step h4 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.vote-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.shop-hero {
    padding: 110px 0 48px;
    background: linear-gradient(180deg, hsla(222, 28%, 9%, 1) 0%, var(--bg-deep) 100%);
    border-bottom: 1px solid var(--border-glass);
}

.shop-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.shop-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin: 12px 0 16px;
    color: var(--text-primary);
}

.shop-hero-text p {
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.shop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.shop-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    background: var(--color-yellow);
    color: hsl(222, 35%, 8%);
}

.shop-btn-primary:hover {
    filter: brightness(1.06);
}

.shop-btn-ghost {
    display: inline-flex;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
}

.shop-btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-glass-hover);
}

.shop-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 8px;
}

.shop-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.shop-trust-item i {
    color: var(--color-cyan);
    font-size: 1rem;
}

.shop-catalog {
    padding: 56px 0 40px;
}

.shop-catalog-header {
    margin-bottom: 28px;
}

.shop-catalog-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.shop-catalog-note {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.shop-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
}

.shop-tab {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.shop-tab:hover {
    color: var(--text-primary);
    border-color: var(--border-glass-hover);
}

.shop-tab.active {
    background: hsla(38, 92%, 52%, 0.12);
    border-color: hsla(38, 92%, 52%, 0.35);
    color: var(--color-yellow);
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.shop-products-grid--featured {
    margin-top: 16px;
}

.shop-product-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.shop-product-card:hover {
    border-color: hsla(38, 92%, 52%, 0.25);
    transform: translateY(-2px);
}

.shop-product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 8px;
    border-radius: 4px;
    background: hsla(38, 92%, 52%, 0.15);
    color: var(--color-yellow);
}

.shop-product-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: hsla(199, 85%, 48%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
    margin-bottom: 16px;
}

.shop-product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.shop-product-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 18px;
}

.shop-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-glass);
}

.shop-product-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.shop-product-btn {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--color-yellow);
    color: hsl(222, 35%, 8%);
    white-space: nowrap;
}

.shop-product-btn:hover {
    filter: brightness(1.06);
}

.shop-featured-block {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border-glass);
}

.shop-featured-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.shop-how {
    padding: 48px 0 56px;
    border-top: 1px solid var(--border-glass);
}

.shop-how h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.shop-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shop-how-step {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 24px 20px;
}

.shop-how-num {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: hsla(38, 92%, 52%, 0.15);
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.shop-how-step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
}

.shop-how-step p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.shop-faq {
    padding: 0 0 56px;
}

.shop-faq h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.shop-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    overflow: hidden;
}

.shop-faq-item summary {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-faq-item summary::-webkit-details-marker {
    display: none;
}

.shop-faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.shop-faq-item[open] summary::after {
    content: "−";
}

.shop-faq-item p {
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.shop-bottom-cta {
    padding-bottom: 80px;
}

.shop-cta-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 36px;
    background: linear-gradient(135deg, hsla(38, 92%, 52%, 0.06), hsla(199, 85%, 48%, 0.04));
    border: 1px solid hsla(38, 92%, 52%, 0.18);
    border-radius: 14px;
}

.shop-cta-panel-text h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.shop-cta-panel-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 480px;
}

.shop-legal-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.6;
    text-align: center;
}

.shop-legal-note a {
    color: var(--color-cyan);
}

@media (max-width: 768px) {
    .vote-steps {
        grid-template-columns: 1fr 1fr;
    }

    .vote-pseudo-save {
        width: 100%;
    }

    .vote-captcha-dialog {
        padding: 24px 20px 20px;
    }

    .vote-captcha-actions {
        flex-direction: column;
    }

    .shop-how-grid {
        grid-template-columns: 1fr;
    }

    .shop-cta-panel {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .shop-cta-panel .btn-boutique-large {
        width: 100%;
        justify-content: center;
    }
}

/* ── Cookie banner RGPD ── */
body.cookie-consent-visible {
    padding-bottom: 0;
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 9999;
    padding: 0 16px;
    pointer-events: none;
    animation: cookieFadeIn 0.35s ease-out;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-consent-card {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 18px 22px;
    border-radius: 14px;
    background: hsla(228, 32%, 8%, 0.94);
    border: 1px solid var(--border-glass-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
}

.cookie-consent-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: hsla(192, 82%, 52%, 0.12);
    border: 1px solid hsla(192, 82%, 52%, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cookie-consent-body {
    flex: 1;
    min-width: 220px;
}

.cookie-consent-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.cookie-consent-text {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
    max-width: 680px;
}

.cookie-consent-text a {
    color: var(--color-cyan);
    text-decoration: none;
    border-bottom: 1px solid hsla(192, 82%, 52%, 0.35);
}

.cookie-consent-text a:hover {
    color: var(--text-primary);
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 16px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: var(--transition-snappy);
    white-space: nowrap;
}

.cookie-consent-btn-muted {
    background: transparent;
    border: 1px solid var(--border-glass-hover);
    color: var(--text-secondary);
}

.cookie-consent-btn-muted:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.cookie-consent-btn-primary {
    background: var(--color-cyan);
    color: hsl(228, 32%, 8%);
}

.cookie-consent-btn-primary:hover {
    filter: brightness(1.06);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    border: 1px solid var(--border-glass);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.legal-table td {
    color: var(--text-secondary);
}

/* Footer étendu */
.footer-wrapper {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

@media (max-width: 900px) {
    .legal-content {
        padding: 28px 24px;
    }

    .vote-steps {
        grid-template-columns: 1fr;
    }

    .cookie-consent-card {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-btn {
        flex: 1;
        text-align: center;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}
