/* ═══════════════════════════════════════════
 *  Armurier Codes Promo — Styles
 * ═══════════════════════════════════════════ */

/* ── Screen reader only (SEO headings) ────── */
.acp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Intro text (archive SEO) ─────────────── */
.acp-intro-text {
    max-width: 900px;
    margin: 0 auto 28px;
    padding: 20px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--acp-text-muted, #666);
    background: #fafafa;
    border-radius: var(--acp-radius, 12px);
    border-left: 3px solid var(--acp-gold, #d4af37);
}
.acp-intro-text p { margin: 0 0 10px; }
.acp-intro-text p:last-child { margin-bottom: 0; }
.acp-intro-text strong { color: var(--acp-text, #1a1a1a); }

/* ── Variables ─────────────────────────────── */
:root {
    --acp-gold: #d4af37;
    --acp-gold-dark: #b8960c;
    --acp-dark: #1a1a1a;
    --acp-darker: #111111;
    --acp-card-bg: #ffffff;
    --acp-text: #1a1a1a;
    --acp-text-muted: #666666;
    --acp-border: #e0e0e0;
    --acp-green: #4caf50;
    --acp-red: #e74c3c;
    --acp-blue: #2196f3;
    --acp-radius: 12px;
    --acp-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --acp-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Global ────────────────────────── */
.acp-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: var(--acp-font);
    color: var(--acp-text);
    line-height: 1.6;
}

.acp-page *,
.acp-page *::before,
.acp-page *::after {
    box-sizing: border-box;
}

.acp-page img {
    max-width: 100%;
    height: auto;
}

/* ── Breadcrumb (default) ──────────────────── */
.acp-breadcrumb {
    padding: 16px 0;
    font-size: 14px;
    color: var(--acp-text-muted);
}

.acp-breadcrumb a {
    color: var(--acp-text-muted);
    text-decoration: none;
}

.acp-breadcrumb a:hover {
    color: var(--acp-gold);
}

.acp-breadcrumb .acp-sep {
    margin: 0 8px;
}

/* ── Breadcrumb inside hero ───────────────── */
.acp-breadcrumb-hero {
    padding: 0 0 16px;
    font-size: 13px;
    color: #ffffff;
}

.acp-breadcrumb-hero a {
    color: #ffffff !important;
    text-decoration: none;
}

.acp-breadcrumb-hero .acp-sep {
    color: rgba(255, 255, 255, 0.6);
}

.acp-breadcrumb-hero a:hover {
    color: var(--acp-gold);
}

.acp-breadcrumb-hero span:last-child {
    color: #ffffff;
}

/* ── Hero ──────────────────────────────────── */
.acp-hero {
    background: linear-gradient(135deg, var(--acp-darker) 0%, var(--acp-dark) 100%);
    border-radius: var(--acp-radius);
    padding: 48px 40px;
    margin-bottom: 32px;
    border-bottom: 3px solid var(--acp-gold);
}

/* ── Hero full-width (sort du container) ──── */
.acp-hero.acp-hero-fullwidth {
    border-radius: 0 !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding: 0;
    margin-top: -20px;
    margin-bottom: 32px;
    border-bottom: 3px solid var(--acp-gold);
}

.acp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 40px 40px;
}

.acp-hero-inner {
    text-align: center;
}

.acp-hero h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.acp-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.acp-hero-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin: 12px auto 0;
    max-width: 700px;
    line-height: 1.6;
}

/* ── Section titles ───────────────────────── */
.acp-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--acp-text);
}

/* ── Favorites section (archive) ──────────── */
.acp-favorites {
    margin-bottom: 40px;
}

.acp-favorites-header {
    margin-bottom: 20px;
}

.acp-favorites-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--acp-text);
}

.acp-favorites-subtitle {
    font-size: 14px;
    color: var(--acp-text-muted);
    margin: 0;
}

.acp-favorites-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acp-favorite-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #fff;
    border-radius: var(--acp-radius);
    border: 1px solid var(--acp-border);
    transition: all 0.2s;
    position: relative;
}

.acp-favorite-card:hover {
    border-color: var(--acp-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.acp-favorite-top {
    border-color: var(--acp-gold);
    border-width: 2px;
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}

.acp-favorite-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--acp-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
}

.acp-favorite-top-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.acp-favorite-logo {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.acp-favorite-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acp-favorite-info {
    flex: 1;
}

.acp-favorite-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
}

.acp-favorite-info h3 a {
    color: var(--acp-text);
    text-decoration: none;
}

.acp-favorite-info h3 a:hover {
    color: var(--acp-gold);
}

.acp-favorite-discount {
    font-size: 22px;
    font-weight: 800;
    color: var(--acp-gold-dark);
}

.acp-favorite-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--acp-text-muted);
    margin-top: 4px;
}

.acp-favorite-argument {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f0faf0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.acp-favorite-argument svg {
    stroke: #2e7d32;
    flex-shrink: 0;
}

.acp-favorite-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.acp-favorite-perks span {
    font-size: 12px;
    color: var(--acp-text-muted);
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
}

.acp-favorite-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Hero single */
.acp-hero-single .acp-hero-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left;
}

.acp-hero-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: var(--acp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.acp-hero-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.acp-hero-info {
    flex: 1;
}

.acp-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.acp-hero-stat {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.acp-hero-best {
    color: var(--acp-gold);
    font-weight: 600;
}

/* ── Category pills ────────────────────────── */
.acp-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.acp-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--acp-card-bg);
    border: 1px solid var(--acp-border);
    color: var(--acp-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.acp-pill:hover {
    border-color: var(--acp-gold);
    color: var(--acp-gold);
}

.acp-pill-active {
    background: var(--acp-gold);
    border-color: var(--acp-gold);
    color: #fff;
}

.acp-pill-active:hover {
    background: var(--acp-gold-dark);
    color: #fff;
}

/* ── Controls (search + sort) ──────────────── */
.acp-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.acp-search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid var(--acp-border);
    border-radius: var(--acp-radius);
    font-size: 14px;
    font-family: var(--acp-font);
    outline: none;
    transition: border-color 0.2s;
}

.acp-search-input:focus {
    border-color: var(--acp-gold);
}

.acp-sort-buttons {
    display: flex;
    gap: 8px;
}

.acp-sort-btn {
    padding: 10px 16px;
    border: 1px solid var(--acp-border);
    border-radius: var(--acp-radius);
    background: var(--acp-card-bg);
    color: var(--acp-text-muted);
    font-size: 13px;
    font-family: var(--acp-font);
    cursor: pointer;
    transition: all 0.2s;
}

.acp-sort-btn:hover {
    border-color: var(--acp-gold);
    color: var(--acp-gold);
}

.acp-sort-active,
.acp-sort-active:hover {
    background: var(--acp-gold) !important;
    border-color: var(--acp-gold) !important;
    color: #ffffff !important;
}

/* ── Shop cards grid ───────────────────────── */
.acp-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.acp-shop-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.acp-shop-card {
    background: var(--acp-card-bg);
    border: 1px solid var(--acp-border);
    border-radius: var(--acp-radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--acp-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acp-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--acp-gold);
}

.acp-shop-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.acp-shop-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acp-shop-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--acp-gold);
    background: linear-gradient(135deg, #f5f0e0, #faf6e8);
}

.acp-shop-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.acp-shop-name a {
    color: var(--acp-text);
    text-decoration: none;
}

.acp-shop-name a:hover {
    color: var(--acp-gold);
}

.acp-shop-rating {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.acp-shop-codes-count {
    font-size: 14px;
    color: var(--acp-text-muted);
    margin-bottom: 8px;
}

.acp-shop-best-offer {
    font-size: 14px;
    font-weight: 600;
    color: var(--acp-green);
    margin-bottom: 16px;
}

/* ── Buttons ───────────────────────────────── */
.acp-btn-primary {
    display: inline-block;
    padding: 10px 24px;
    background: var(--acp-gold);
    color: #fff;
    border: none;
    border-radius: var(--acp-radius);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--acp-font);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
}

.acp-btn-primary:hover {
    background: var(--acp-gold-dark);
    color: #fff;
}

.acp-btn-cta {
    display: inline-block;
    padding: 16px 48px;
    background: var(--acp-gold);
    color: #fff;
    border: none;
    border-radius: var(--acp-radius);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--acp-font);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.acp-btn-cta:hover {
    background: var(--acp-gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.acp-cta-block {
    text-align: center;
    padding: 40px 0;
}

/* ── Section ───────────────────────────────── */
.acp-section {
    margin-bottom: 40px;
}

.acp-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--acp-text);
}

/* ── Code cards ────────────────────────────── */
.acp-codes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acp-code-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--acp-card-bg);
    border: 2px dashed var(--acp-border);
    border-radius: var(--acp-radius);
    transition: border-color 0.2s;
}

.acp-code-card:hover {
    border-color: var(--acp-gold);
}

.acp-code-badges {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.acp-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.acp-badge-verified {
    background: rgba(76, 175, 80, 0.12);
    color: var(--acp-green);
}

.acp-badge-exclusive {
    background: rgba(212, 175, 55, 0.12);
    color: var(--acp-gold-dark);
}

.acp-badge-new {
    background: rgba(33, 150, 243, 0.12);
    color: var(--acp-blue);
}

.acp-badge-expired {
    background: rgba(231, 76, 60, 0.12);
    color: var(--acp-red);
}

.acp-code-info {
    flex: 1;
    min-width: 0;
}

.acp-code-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--acp-text);
}

.acp-code-details {
    font-size: 13px;
    color: var(--acp-text-muted);
    margin: 0;
}

.acp-code-action {
    flex-shrink: 0;
}

/* ── Reveal button ─────────────────────────── */
.acp-reveal-btn {
    min-width: 160px;
    padding: 12px 24px;
    background: var(--acp-gold);
    color: #fff;
    border: none;
    border-radius: var(--acp-radius);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--acp-font);
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

.acp-reveal-btn:hover {
    background: var(--acp-gold-dark);
}

/* ── Code revealed ─────────────────────────── */
.acp-code-revealed {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acp-code-text {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 16px;
    background: #f9f7f1;
    border: 2px dashed var(--acp-gold);
    border-radius: 8px;
    color: var(--acp-text);
    letter-spacing: 1px;
    user-select: all;
}

.acp-copy-btn {
    padding: 10px 16px;
    background: var(--acp-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--acp-font);
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.acp-copy-btn:hover {
    background: var(--acp-darker);
}

/* ── Copy feedback ─────────────────────────── */
.acp-copied-feedback {
    color: var(--acp-green);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.acp-copied-feedback.acp-visible {
    opacity: 1;
}

/* ── Code usage ────────────────────────────── */
.acp-code-usage {
    font-size: 12px;
    color: var(--acp-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Expired codes ─────────────────────────── */
.acp-code-expired {
    opacity: 0.5;
}

.acp-code-expired .acp-code-info h3 {
    text-decoration: line-through;
}

.acp-section-expired summary {
    cursor: pointer;
    color: var(--acp-text-muted);
}

.acp-section-expired summary h2 {
    color: var(--acp-text-muted);
    font-size: 18px;
}

/* ── Info grid ─────────────────────────────── */
.acp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.acp-info-item {
    padding: 16px;
    background: #f9f9f9;
    border-radius: var(--acp-radius);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acp-info-item strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--acp-text-muted);
}

.acp-info-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--acp-text);
}

/* ── Pros / Cons ───────────────────────────── */
.acp-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.acp-pros h3,
.acp-cons h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
}

.acp-pros h3 {
    color: var(--acp-green);
}

.acp-cons h3 {
    color: var(--acp-red);
}

.acp-pros ul,
.acp-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acp-pros li,
.acp-cons li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.acp-pros li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--acp-green);
    font-weight: 700;
}

.acp-cons li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--acp-red);
    font-weight: 700;
}

/* ── Description ───────────────────────────── */
.acp-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.acp-description p {
    margin-bottom: 16px;
}

/* ── Stars ──────────────────────────────────── */
.acp-stars-wrap {
    display: inline-flex;
    gap: 1px;
    vertical-align: middle;
}

.acp-star {
    font-size: 16px;
    line-height: 1;
}

.acp-star-full {
    color: var(--acp-gold);
}

.acp-star-empty {
    color: #ddd;
}

.acp-star-partial {
    position: relative;
    color: #ddd;
}

.acp-star-partial::before {
    content: "\2605";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--acp-gold);
    overflow: hidden;
    width: calc(var(--acp-star-pct, 50) * 1%);
}

/* ── Pagination ────────────────────────────── */
.acp-pagination {
    text-align: center;
    margin: 32px 0;
}

.acp-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 2px;
    border: 1px solid var(--acp-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--acp-text);
    font-size: 14px;
    transition: all 0.2s;
}

.acp-pagination .page-numbers:hover {
    border-color: var(--acp-gold);
    color: var(--acp-gold);
}

.acp-pagination .page-numbers.current {
    background: var(--acp-gold);
    border-color: var(--acp-gold);
    color: #fff;
}

/* ── No results ────────────────────────────── */
.acp-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--acp-text-muted);
    font-size: 16px;
    grid-column: 1 / -1;
}

/* ── Trust bar ──────────────────────────────── */
.acp-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.acp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.acp-trust-item svg {
    flex-shrink: 0;
}

.acp-trust-verified {
    color: var(--acp-green);
}

.acp-stat-codes {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* ── Highlight card (best offer) ───────────── */
.acp-section-highlight {
    margin-bottom: 32px;
}

.acp-highlight-card {
    position: relative;
    background: linear-gradient(135deg, #faf6e8 0%, #fff9e6 100%);
    border: 2px solid var(--acp-gold);
    border-radius: var(--acp-radius);
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.acp-highlight-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--acp-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 50px;
}

.acp-highlight-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.acp-highlight-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--acp-gold-dark);
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.acp-highlight-info {
    flex: 1;
    min-width: 0;
}

.acp-highlight-info h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.acp-highlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.acp-highlight-expiry {
    font-size: 13px;
    color: var(--acp-text-muted);
}

.acp-expiry-urgent {
    color: var(--acp-red);
    font-weight: 600;
}

.acp-highlight-action {
    flex-shrink: 0;
}

.acp-reveal-btn-large {
    min-width: 180px;
    padding: 14px 28px;
    font-size: 16px;
}

/* ── Code value column ─────────────────────── */
.acp-code-value-col {
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.acp-code-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--acp-gold-dark);
    line-height: 1.2;
}

.acp-code-value-small {
    font-size: 14px;
    font-weight: 700;
}

.acp-code-type {
    font-size: 11px;
    color: var(--acp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ── Section header ────────────────────────── */
.acp-section-header {
    margin-bottom: 20px;
}

.acp-section-subtitle {
    font-size: 14px;
    color: var(--acp-text-muted);
    margin: 4px 0 0;
}

/* ── Vote buttons ──────────────────────────── */
.acp-code-vote {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.acp-vote-label {
    font-size: 12px;
    color: var(--acp-text-muted);
}

.acp-vote-btn {
    background: none;
    border: 1px solid var(--acp-border);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}

.acp-vote-btn:hover {
    border-color: var(--acp-gold);
    transform: scale(1.1);
}

.acp-vote-btn.acp-voted {
    background: var(--acp-gold);
    border-color: var(--acp-gold);
}

.acp-vote-thanks {
    font-size: 12px;
    color: var(--acp-green);
    font-weight: 500;
}

/* ── How-to steps ──────────────────────────── */
.acp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.acp-step {
    text-align: center;
    padding: 24px 16px;
    background: #f9f9f9;
    border-radius: var(--acp-radius);
    position: relative;
}

.acp-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--acp-gold);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.acp-step-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
}

.acp-step-content p {
    font-size: 13px;
    color: var(--acp-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Tips grid ─────────────────────────────── */
.acp-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.acp-tip {
    padding: 20px;
    background: #f9f9f9;
    border-radius: var(--acp-radius);
    border-left: 3px solid var(--acp-gold);
}

.acp-tip-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.acp-tip h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
}

.acp-tip p {
    font-size: 13px;
    color: var(--acp-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── FAQ ───────────────────────────────────── */
.acp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acp-faq-item {
    border: 1px solid var(--acp-border);
    border-radius: var(--acp-radius);
    overflow: hidden;
}

.acp-faq-question {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.acp-faq-question::-webkit-details-marker {
    display: none;
}

.acp-faq-question::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    color: var(--acp-text-muted);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s;
}

.acp-faq-item[open] .acp-faq-question::after {
    content: "\2212";
}

.acp-faq-question:hover {
    background: #f9f9f9;
}

.acp-faq-answer {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--acp-text-muted);
    line-height: 1.7;
}

.acp-faq-answer p {
    margin: 0;
}

/* ── Expired hint ──────────────────────────── */
.acp-expired-hint {
    font-size: 13px;
    color: var(--acp-green);
    font-style: italic;
    margin: 4px 0 0;
    font-weight: 400;
}

/* ── See all link ──────────────────────────── */
.acp-see-all-link {
    text-align: center;
    margin-top: 16px;
}

.acp-see-all-link a {
    color: var(--acp-gold);
    font-weight: 600;
    text-decoration: none;
}

.acp-see-all-link a:hover {
    color: var(--acp-gold-dark);
}

/* ── Offres du moment ──────────────────────── */
.acp-offres-moment {
    background: linear-gradient(135deg, #faf6e8 0%, #fff9e6 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--acp-radius);
    padding: 32px;
}

.acp-offres-moment-header {
    text-align: center;
    margin-bottom: 24px;
}

.acp-offres-moment-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--acp-text);
}

.acp-offres-moment-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acp-offre-moment-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    background: #fff;
    border-radius: var(--acp-radius);
    border: 1px solid var(--acp-border);
    transition: all 0.2s;
    position: relative;
}

.acp-offre-moment-card:hover {
    border-color: var(--acp-gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

/* Recommended card */
.acp-offre-recommended {
    border-color: var(--acp-gold);
    border-width: 2px;
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}

.acp-offre-badge-recommended {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--acp-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
}

/* Top row: logo + name + discount */
.acp-offre-moment-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.acp-offre-moment-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.acp-offre-moment-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acp-offre-moment-info {
    flex: 1;
    min-width: 0;
}

.acp-offre-moment-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
}

.acp-offre-moment-info h3 a {
    color: var(--acp-text);
    text-decoration: none;
}

.acp-offre-moment-info h3 a:hover {
    color: var(--acp-gold);
}

.acp-offre-moment-discount {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: var(--acp-gold-dark);
}

.acp-offre-moment-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--acp-text-muted);
    margin-top: 4px;
}

/* Argument commercial */
.acp-offre-moment-argument {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f0faf0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.acp-offre-moment-argument svg {
    stroke: #2e7d32;
    flex-shrink: 0;
}

/* Reassurance items */
.acp-offre-moment-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.acp-reassurance-item {
    font-size: 12px;
    color: var(--acp-text-muted);
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
}

.acp-reassurance-exclusive {
    background: #fff8e1;
    color: var(--acp-gold-dark);
    font-weight: 600;
}

.acp-offre-moment-desc {
    font-size: 13px;
    color: var(--acp-text-muted);
    margin: 0;
}

.acp-offre-moment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--acp-text-muted);
}

.acp-offre-moment-action {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.acp-btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--acp-gold-dark);
    border: 2px solid var(--acp-gold);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.acp-btn-secondary:hover {
    background: var(--acp-gold);
    color: #fff;
}

/* ── Visit boutique CTA ───────────────────── */
.acp-visit-cta {
    text-align: center;
    margin-bottom: 24px;
}

.acp-btn-visit {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--acp-gold-dark);
    border: 2px solid var(--acp-gold);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.acp-btn-visit:hover {
    background: var(--acp-gold);
    color: #fff;
}

/* ── CTA block enhanced ───────────────────── */
.acp-cta-text {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--acp-text);
}

.acp-cta-reminder {
    font-size: 14px;
    color: var(--acp-text-muted);
    margin: 12px 0 0;
}

/* ═══════════════════════════════════════════
 *  Responsive — Tablette (max 768px)
 * ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .acp-page {
        padding: 0 16px 40px;
    }

    /* ── Breadcrumb hero mobile ── */
    .acp-breadcrumb-hero {
        font-size: 11px;
        padding-bottom: 12px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .acp-breadcrumb-hero::-webkit-scrollbar {
        display: none;
    }

    /* ── Hero fullwidth mobile ── */
    .acp-hero-container {
        padding: 20px 16px 24px;
    }
    .acp-hero-fullwidth {
        margin-top: 0;
        margin-bottom: 24px;
    }
    body.acp-divi-compat .acp-hero.acp-hero-fullwidth {
        margin-top: -80px;
    }

    /* ── Hero archive mobile ── */
    .acp-hero {
        padding: 28px 20px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .acp-hero h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    .acp-hero-subtitle {
        font-size: 14px;
    }

    /* ── Hero single mobile ── */
    .acp-hero-single .acp-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .acp-hero-logo {
        width: 72px;
        height: 72px;
        margin: 0 auto;
        border-radius: 10px;
    }
    .acp-hero-single h1 {
        font-size: 20px;
    }

    /* ── Trust bar mobile ── */
    .acp-trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .acp-trust-item {
        font-size: 12px;
    }

    /* ── Stats pills mobile ── */
    .acp-hero-stats {
        justify-content: center;
        gap: 8px;
    }
    .acp-hero-stat {
        font-size: 12px;
        padding: 4px 10px;
        background: rgba(255,255,255,0.1);
        border-radius: 20px;
    }

    /* ── Intro text mobile ── */
    .acp-intro-text {
        padding: 16px;
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    /* ── Controls mobile ── */
    .acp-controls {
        flex-direction: column;
        gap: 10px;
    }
    .acp-search-input {
        width: 100%;
        padding: 12px 14px;
        font-size: 16px; /* Empêche zoom iOS */
    }
    .acp-sort-buttons {
        width: 100%;
        flex-wrap: wrap;
    }
    .acp-sort-btn {
        flex: 1;
        text-align: center;
        font-size: 12px;
        padding: 8px 10px;
    }

    /* ── Shop grid mobile ── */
    .acp-shop-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .acp-shop-card {
        padding: 16px 12px;
    }
    .acp-shop-name {
        font-size: 14px;
    }
    .acp-shop-codes-count,
    .acp-shop-best-offer {
        font-size: 12px;
    }
    .acp-btn-primary {
        font-size: 13px;
        padding: 8px 14px;
    }

    /* ── Highlight card mobile ── */
    .acp-highlight-card {
        padding: 20px 16px;
    }
    .acp-highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .acp-highlight-value {
        font-size: 32px;
    }
    .acp-highlight-info h2 {
        font-size: 16px;
    }
    .acp-highlight-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    .acp-reveal-btn-large {
        width: 100%;
        padding: 14px 20px;
    }

    /* ── Code cards mobile ── */
    .acp-code-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }
    .acp-code-value-col {
        min-width: unset;
    }
    .acp-code-value {
        font-size: 22px;
    }
    .acp-code-badges {
        justify-content: center;
    }
    .acp-reveal-btn {
        width: 100%;
        padding: 12px 20px;
    }
    .acp-code-revealed {
        flex-direction: column;
        gap: 8px;
    }
    .acp-code-vote {
        justify-content: center;
    }

    /* ── Section spacing mobile ── */
    .acp-section {
        margin-bottom: 24px;
    }
    .acp-section h2 {
        font-size: 18px;
    }

    /* ── How-to steps mobile ── */
    .acp-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .acp-step {
        display: flex;
        text-align: left;
        gap: 14px;
        padding: 14px;
    }
    .acp-step-number {
        margin: 0;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .acp-step h3 {
        font-size: 15px;
    }
    .acp-step p {
        font-size: 13px;
    }

    /* ── Tips mobile ── */
    .acp-tips-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* ── Pros/Cons mobile ── */
    .acp-pros-cons {
        grid-template-columns: 1fr;
    }

    /* ── Info grid mobile ── */
    .acp-info-grid {
        grid-template-columns: 1fr;
    }

    /* ── FAQ mobile ── */
    .acp-faq-question {
        font-size: 14px;
        padding: 14px;
    }
    .acp-faq-answer p {
        font-size: 13px;
    }

    /* ── CTA mobile ── */
    .acp-btn-cta {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 14px 20px;
    }
    .acp-cta-block {
        padding: 24px 16px;
    }

    /* ── Category pills mobile ── */
    .acp-category-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .acp-category-pills::-webkit-scrollbar {
        display: none;
    }
    .acp-pill {
        flex-shrink: 0;
        font-size: 13px;
        padding: 6px 14px;
    }

    /* ── Offres du moment mobile ── */
    .acp-offres-moment {
        padding: 16px;
    }
    .acp-offres-moment-header h2 {
        font-size: 18px;
    }
    .acp-offre-moment-card {
        gap: 12px;
        padding: 16px;
    }
    .acp-offre-recommended {
        padding-top: 20px;
    }
    .acp-offre-badge-recommended {
        top: -10px;
        left: 16px;
        font-size: 11px;
    }
    .acp-offre-moment-top {
        gap: 12px;
    }
    .acp-offre-moment-logo {
        width: 48px;
        height: 48px;
    }
    .acp-offre-moment-info h3 {
        font-size: 15px;
    }
    .acp-offre-moment-discount {
        font-size: 18px;
    }
    .acp-offre-moment-argument {
        font-size: 13px;
        padding: 8px 12px;
    }
    .acp-offre-moment-reassurance {
        gap: 6px;
    }
    .acp-reassurance-item {
        font-size: 11px;
        padding: 3px 8px;
    }
    .acp-offre-moment-desc {
        white-space: normal;
    }
    .acp-offre-moment-action {
        flex-direction: column;
    }
    .acp-offre-moment-action .acp-btn-primary,
    .acp-offre-moment-action .acp-btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* ── Visit CTA mobile ── */
    .acp-btn-visit {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    /* ── Favorites mobile ── */
    .acp-favorites-header h2 {
        font-size: 20px;
    }
    .acp-favorite-card {
        padding: 16px;
    }
    .acp-favorite-top {
        padding-top: 20px;
    }
    .acp-favorite-logo {
        width: 48px;
        height: 48px;
    }
    .acp-favorite-info h3 {
        font-size: 16px;
    }
    .acp-favorite-discount {
        font-size: 18px;
    }
    .acp-favorite-argument {
        font-size: 13px;
        padding: 8px 12px;
    }
    .acp-favorite-actions {
        flex-direction: column;
    }
    .acp-favorite-actions .acp-btn-primary,
    .acp-favorite-actions .acp-btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* ── Hero desc mobile ── */
    .acp-hero-desc {
        font-size: 13px;
        margin-top: 10px;
    }

    /* ── Pagination mobile ── */
    .acp-pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
}

/* ═══════════════════════════════════════════
 *  Responsive — Petit mobile (max 480px)
 * ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .acp-page {
        padding: 0 12px 32px;
    }

    /* Breadcrumb ultra compact */
    .acp-breadcrumb {
        font-size: 12px;
        padding: 10px 0;
    }

    /* Hero encore plus compact */
    .acp-hero {
        padding: 24px 16px;
        border-radius: 8px;
        margin-bottom: 16px;
    }
    .acp-hero h1 {
        font-size: 18px;
        line-height: 1.35;
    }
    .acp-hero-single h1 {
        font-size: 17px;
    }
    .acp-hero-subtitle {
        font-size: 13px;
    }
    .acp-hero-logo {
        width: 60px;
        height: 60px;
    }

    /* Stats encore plus petit */
    .acp-hero-stat {
        font-size: 11px;
        padding: 3px 8px;
    }

    /* Grid 1 colonne sur très petit écran */
    .acp-shop-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .acp-shop-card {
        padding: 14px;
    }

    /* Highlight compact */
    .acp-highlight-value {
        font-size: 28px;
    }
    .acp-highlight-card {
        padding: 16px 12px;
    }

    /* Codes compact */
    .acp-code-card {
        padding: 14px;
    }
    .acp-code-value {
        font-size: 20px;
    }

    /* Sections */
    .acp-section h2 {
        font-size: 16px;
    }

    /* Steps ultra compact */
    .acp-step {
        padding: 12px;
        gap: 12px;
    }
    .acp-step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* CTA compact */
    .acp-cta-block {
        padding: 20px 14px;
    }
    .acp-cta-text {
        font-size: 16px;
    }

    /* Offres du moment compact */
    .acp-offres-moment {
        padding: 14px;
    }
    .acp-offre-moment-card {
        padding: 12px;
    }

    /* Intro text compact */
    .acp-intro-text {
        padding: 14px;
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════
 *  Divi Compat
 * ═══════════════════════════════════════════ */
body.acp-divi-compat #sidebar {
    display: none !important;
}

body.acp-divi-compat #left-area {
    width: 100% !important;
    float: none !important;
    border: none !important;
    padding: 0 !important;
}

body.acp-divi-compat #content-area,
body.acp-divi-compat .container,
body.acp-divi-compat #main-content,
body.acp-divi-compat #page-container {
    border: none !important;
    box-shadow: none !important;
}

body.acp-divi-compat .container::before {
    display: none !important;
}

body.acp-divi-compat .acp-page,
body.acp-divi-compat .acp-page * {
    font-family: var(--acp-font);
}

body.acp-divi-compat .acp-page h1,
body.acp-divi-compat .acp-page h2,
body.acp-divi-compat .acp-page h3,
body.acp-divi-compat .acp-page h4 {
    color: var(--acp-text);
    padding-bottom: 0;
}

body.acp-divi-compat .acp-page .acp-hero h1,
body.acp-divi-compat .acp-page .acp-hero h2 {
    color: #ffffff;
}

body.acp-divi-compat .acp-shop-card a,
body.acp-divi-compat .acp-code-card a,
body.acp-divi-compat .acp-breadcrumb a {
    color: var(--acp-text);
}

body.acp-divi-compat .acp-shop-card a:hover,
body.acp-divi-compat .acp-code-card a:hover,
body.acp-divi-compat .acp-breadcrumb a:hover {
    color: var(--acp-gold);
}

body.acp-divi-compat .acp-btn-primary,
body.acp-divi-compat .acp-btn-cta,
body.acp-divi-compat .acp-reveal-btn {
    background: var(--acp-gold) !important;
    color: #fff !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

body.acp-divi-compat .acp-btn-primary:hover,
body.acp-divi-compat .acp-btn-cta:hover,
body.acp-divi-compat .acp-reveal-btn:hover {
    background: var(--acp-gold-dark) !important;
}

body.acp-divi-compat .acp-search-input {
    border: 1px solid var(--acp-border) !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
}

body.acp-divi-compat .acp-page-single {
    padding-top: 0;
}

body.acp-divi-compat .acp-hero.acp-hero-fullwidth {
    margin-top: -80px;
    padding-top: 0;
}

body.acp-divi-compat .acp-hero-fullwidth .acp-hero-container {
    padding-top: 24px;
}

body.acp-divi-compat .acp-page-taxonomy .acp-hero {
    margin-top: 20px;
}

body.acp-divi-compat .acp-shop-name a {
    color: var(--acp-text) !important;
}

body.acp-divi-compat .acp-shop-name a:hover {
    color: var(--acp-gold) !important;
}
