/* ============================================================
   WIKRAMARACHCHI HEARING CARE — Accessories Page Design System 2026
   Theme: Luxury Warm Modern (5-Color Palette)
   Font: Plus Jakarta Sans
   ============================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
    --acc-bg: #fbfaf8;
    --acc-bg-subtle: #f7f5f2;
    --acc-bg-muted: #ede8e3;
    
    --acc-surface: #ffffff;
    --acc-surface-subtle: #f7f5f2;
    --acc-surface-card: #ffffff;
    --acc-surface-dark: #37332d;

    --acc-ink-pure: #37332d;
    --acc-ink-900: #37332d;
    --acc-ink-800: #464138;
    --acc-ink-700: #56493e;
    --acc-ink-600: #56493e;
    --acc-ink-500: #6b5d52;
    --acc-ink-400: #8c8278;
    --acc-ink-300: #a89f96;
    --acc-ink-200: #cdc2b8;
    --acc-ink-100: #f5f2ee;

    --acc-accent: #a47d5c;
    --acc-accent-hover: #8c6849;
    --acc-sand: #cdc2b8;

    --acc-white-pure: #ffffff;
    --acc-black-pure: #37332d;

    /* Borders & Outlines */
    --acc-border-subtle: rgba(70, 65, 56, 0.08);
    --acc-border-light: rgba(70, 65, 56, 0.14);
    --acc-border-medium: rgba(70, 65, 56, 0.22);
    --acc-border-dark: #37332d;

    /* Shadows & Elevation */
    --acc-shadow-xs: 0 2px 8px rgba(55, 51, 45, 0.03);
    --acc-shadow-sm: 0 4px 16px rgba(55, 51, 45, 0.05);
    --acc-shadow-md: 0 10px 30px rgba(55, 51, 45, 0.08);
    --acc-shadow-lg: 0 20px 50px rgba(55, 51, 45, 0.12);
    --acc-shadow-hover: 0 16px 44px rgba(55, 51, 45, 0.14);

    /* Radii & Typography */
    --acc-radius-sm: 10px;
    --acc-radius-md: 16px;
    --acc-radius-lg: 22px;
    --acc-radius-xl: 30px;
    --acc-radius-full: 9999px;
    --acc-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --acc-transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --acc-transition-bounce: 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── 2. Accessories Main Wrapper & Base ───────────────────── */
.accessories-page-wrapper {
    background-color: var(--acc-bg);
    color: var(--acc-ink-600);
    font-family: var(--acc-font);
    overflow-x: hidden;
    position: relative;
    padding-top: 76px; /* Header offset */
    line-height: 1.6;
}

.accessories-page-wrapper * {
    box-sizing: border-box;
}

.accessories-page-wrapper a {
    color: var(--acc-ink-900);
    text-decoration: none;
    transition: var(--acc-transition);
}

.accessories-page-wrapper a:hover {
    color: var(--acc-accent);
    text-decoration: none;
}

/* Container */
.acc-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1600px) {
    .acc-container {
        max-width: 1480px;
    }
}

/* Scroll Reveal States */
.acc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.acc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.acc-delay-1 { transition-delay: 0.08s; }
.acc-delay-2 { transition-delay: 0.16s; }
.acc-delay-3 { transition-delay: 0.24s; }
.acc-delay-4 { transition-delay: 0.32s; }
.acc-delay-5 { transition-delay: 0.40s; }

/* Global Section Headings */
.acc-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.25rem;
}

.acc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--acc-accent);
    color: #ffffff;
    border: 1px solid var(--acc-accent);
    padding: 6px 14px;
    border-radius: var(--acc-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(164, 125, 92, 0.2);
}

.acc-section-badge svg {
    color: #ffffff;
}

.acc-section-title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: var(--acc-ink-900);
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 0.85rem;
}

.acc-section-subtitle {
    font-size: 1.0625rem;
    color: var(--acc-ink-500);
    line-height: 1.6;
    margin: 0;
}

/* Card Badge Pill */
.acc-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--acc-ink-100);
    color: var(--acc-ink-800);
    border: 1px solid var(--acc-border-subtle);
    padding: 4px 12px;
    border-radius: var(--acc-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Primary & Secondary Buttons */
.acc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--acc-accent);
    color: var(--acc-white-pure) !important;
    border: 1px solid var(--acc-accent);
    padding: 13px 26px;
    border-radius: var(--acc-radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--acc-transition);
    box-shadow: 0 4px 14px rgba(164, 125, 92, 0.25);
}

.acc-btn-primary:hover {
    background: var(--acc-accent-hover);
    border-color: var(--acc-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(164, 125, 92, 0.35);
}

.acc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--acc-white-pure);
    color: var(--acc-ink-900) !important;
    border: 1px solid var(--acc-border-medium);
    padding: 13px 26px;
    border-radius: var(--acc-radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--acc-transition);
    box-shadow: 0 2px 8px rgba(55, 51, 45, 0.03);
}

.acc-btn-secondary:hover {
    background: var(--acc-bg-subtle);
    color: var(--acc-accent) !important;
    border-color: var(--acc-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(164, 125, 92, 0.15);
}

/* ── 3. HERO SECTION (Monochromatic Luxury) ────────────────── */
.acc-hero {
    position: relative;
    padding: 70px 0 60px;
    background: radial-gradient(circle at 50% 0%, #f7f5f2 0%, #fbfaf8 75%);
    border-bottom: 1px solid var(--acc-border-subtle);
    overflow: hidden;
}

.acc-hero-ambient-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 360px;
    background: radial-gradient(ellipse at center, rgba(164, 125, 92, 0.08) 0%, rgba(55, 51, 45, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.acc-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(70, 65, 56, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(70, 65, 56, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
    opacity: 0.7;
    pointer-events: none;
}

.acc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.acc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--acc-surface-card);
    border: 1px solid var(--acc-border-light);
    box-shadow: var(--acc-shadow-xs);
    padding: 6px 16px;
    border-radius: var(--acc-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--acc-ink-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.acc-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acc-accent);
    box-shadow: 0 0 0 3px rgba(164, 125, 92, 0.25);
    animation: accPulseDot 2s infinite ease-in-out;
}

@keyframes accPulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.acc-hero-title {
    font-size: clamp(2.25rem, 4.2vw, 3.5rem);
    font-weight: 800;
    color: var(--acc-ink-900);
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin: 0 0 1.25rem;
}

.acc-hero-title span {
    background: linear-gradient(180deg, #37332d 0%, #a47d5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.acc-hero-desc {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--acc-ink-500);
    max-width: 760px;
    margin: 0 auto 2.25rem;
    font-weight: 400;
}

.acc-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Stats Row (Deprecated / Optional) */
.acc-hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--acc-surface-card);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-lg);
    padding: 20px 24px;
    box-shadow: var(--acc-shadow-sm);
}

.acc-stat-card {
    text-align: center;
    padding: 8px 12px;
    position: relative;
}

.acc-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--acc-border-subtle);
}

.acc-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.acc-stat-label {
    font-size: 0.8125rem;
    color: var(--acc-ink-400);
    font-weight: 500;
}

/* ── 4. SMART COMPATIBILITY MATCHER WIDGET ─────────────────── */
.acc-matcher-section {
    padding: 3rem 0 4rem;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.acc-matcher-card {
    background: var(--acc-surface);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-lg);
    padding: 36px 40px;
    box-shadow: var(--acc-shadow-md);
    transition: var(--acc-transition);
}

.acc-matcher-card:hover {
    box-shadow: var(--acc-shadow-lg);
    border-color: var(--acc-accent);
}

.acc-matcher-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.acc-matcher-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    letter-spacing: -0.02em;
    margin: 0.75rem 0 0.5rem;
}

.acc-matcher-desc {
    font-size: 0.9375rem;
    color: var(--acc-ink-500);
    margin: 0;
}

.acc-matcher-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr auto;
    gap: 20px;
    align-items: flex-end;
}

.acc-matcher-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acc-matcher-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--acc-ink-800);
}

.acc-step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--acc-accent);
    color: var(--acc-white-pure);
    font-size: 0.6875rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.acc-select-wrap {
    position: relative;
    width: 100%;
}

.acc-select {
    width: 100%;
    height: 48px;
    appearance: none;
    -webkit-appearance: none;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-md);
    padding: 0 40px 0 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--acc-ink-900);
    font-family: var(--acc-font);
    cursor: pointer;
    transition: var(--acc-transition);
}

.acc-select:focus {
    outline: none;
    border-color: var(--acc-accent);
    background: var(--acc-surface);
    box-shadow: 0 0 0 3px rgba(164, 125, 92, 0.15);
}

.acc-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--acc-ink-500);
}

.acc-matcher-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-matcher-btn {
    height: 48px;
    padding: 0 24px;
    white-space: nowrap;
}

.acc-matcher-reset-btn {
    height: 48px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid var(--acc-border-light);
    color: var(--acc-ink-500);
    border-radius: var(--acc-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--acc-transition);
}

.acc-matcher-reset-btn:hover {
    color: var(--acc-accent);
    border-color: var(--acc-accent);
    background: var(--acc-bg-subtle);
}

/* Matcher Result Summary Banner */
.acc-matcher-banner {
    margin-top: 1.5rem;
    padding: 14px 20px;
    background: var(--acc-ink-100);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.acc-matcher-banner-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--acc-ink-900);
}

.acc-matcher-count {
    background: var(--acc-accent);
    color: var(--acc-white-pure);
    padding: 2px 8px;
    border-radius: var(--acc-radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
}

.acc-matcher-jump-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--acc-accent);
}

.acc-matcher-jump-link:hover {
    text-decoration: underline;
}

/* ── 5. CATALOG SHOWCASE & ADVANCED CONTROLS ───────────────── */
.acc-catalog-section {
    padding: 2rem 0 5rem;
    background: var(--acc-bg);
}

.acc-controls-panel {
    background: var(--acc-surface-card);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-lg);
    padding: 24px;
    margin-bottom: 2.5rem;
    box-shadow: var(--acc-shadow-xs);
}

/* Category Filter Chips Bar */
.acc-filter-chips-row {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--acc-border-subtle);
    scrollbar-width: thin;
}

.acc-filter-chips-row::-webkit-scrollbar {
    height: 4px;
}

.acc-filter-chips-row::-webkit-scrollbar-thumb {
    background: var(--acc-ink-200);
    border-radius: 4px;
}

.acc-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    color: var(--acc-ink-700);
    padding: 9px 18px;
    border-radius: var(--acc-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--acc-font);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--acc-transition);
}

.acc-filter-chip:hover {
    background: var(--acc-ink-100);
    color: var(--acc-accent);
    border-color: var(--acc-accent);
}

.acc-filter-chip.is-active {
    background: var(--acc-accent);
    color: var(--acc-white-pure);
    border-color: var(--acc-accent);
    box-shadow: 0 4px 12px rgba(164, 125, 92, 0.25);
}

.acc-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--acc-radius-full);
    background: rgba(70, 65, 56, 0.1);
    color: inherit;
    font-size: 0.6875rem;
    font-weight: 700;
}

.acc-filter-chip.is-active .acc-count-pill {
    background: rgba(255, 255, 255, 0.25);
    color: var(--acc-white-pure);
}

/* Secondary Row: Brand Chips + Search + Layout Switcher */
.acc-secondary-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.acc-brand-chips {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.acc-control-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--acc-ink-500);
    margin-right: 4px;
}

.acc-brand-chip {
    background: transparent;
    border: 1px solid var(--acc-border-subtle);
    color: var(--acc-ink-600);
    padding: 5px 12px;
    border-radius: var(--acc-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--acc-font);
    cursor: pointer;
    transition: var(--acc-transition);
}

.acc-brand-chip:hover {
    background: var(--acc-bg-subtle);
    color: var(--acc-accent);
    border-color: var(--acc-accent);
}

.acc-brand-chip.is-active {
    background: var(--acc-accent);
    color: var(--acc-white-pure);
    border-color: var(--acc-accent);
}

.acc-right-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Search Box */
.acc-search-box {
    position: relative;
    width: 240px;
}

.acc-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--acc-ink-400);
    pointer-events: none;
}

.acc-search-input {
    width: 100%;
    height: 40px;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-full);
    padding: 0 34px 0 38px;
    font-size: 0.875rem;
    color: var(--acc-ink-900);
    font-family: var(--acc-font);
    transition: var(--acc-transition);
}

.acc-search-input:focus {
    outline: none;
    border-color: var(--acc-accent);
    background: var(--acc-surface);
    box-shadow: 0 0 0 3px rgba(164, 125, 92, 0.12);
}

.acc-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--acc-ink-400);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.acc-search-clear:hover {
    color: var(--acc-accent);
}

/* Sort Select */
.acc-sort-select {
    height: 40px;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-full);
    padding: 0 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--acc-ink-700);
    font-family: var(--acc-font);
    cursor: pointer;
    transition: var(--acc-transition);
}

.acc-sort-select:focus {
    outline: none;
    border-color: var(--acc-accent);
}

/* Layout Switcher */
.acc-layout-switcher {
    display: flex;
    align-items: center;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-full);
    padding: 2px;
}

.acc-layout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--acc-ink-400);
    border-radius: var(--acc-radius-full);
    cursor: pointer;
    transition: var(--acc-transition);
}

.acc-layout-btn:hover {
    color: var(--acc-ink-800);
}

.acc-layout-btn.is-active {
    background: var(--acc-accent);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(164, 125, 92, 0.25);
}

/* Results Status Line */
.acc-results-status-line {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--acc-border-subtle);
    font-size: 0.8125rem;
    color: var(--acc-ink-400);
}

.acc-results-status-line strong {
    color: var(--acc-ink-900);
}

/* ── 6. PRODUCTS MASTER GRID (GRID VIEW & LIST VIEW) ───────── */
.acc-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    transition: var(--acc-transition);
}

.acc-product-card {
    background: var(--acc-surface-card);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--acc-shadow-xs);
    transition: var(--acc-transition);
    position: relative;
}

.acc-product-card:hover {
    transform: translateY(-6px);
    border-color: var(--acc-accent);
    box-shadow: var(--acc-shadow-hover);
}

/* Card Media */
.acc-card-media {
    position: relative;
    background: var(--acc-bg-subtle);
    padding: 30px 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border-bottom: 1px solid var(--acc-border-subtle);
    overflow: hidden;
}

.acc-media-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.acc-brand-pill {
    background: var(--acc-accent);
    color: var(--acc-white-pure);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 9px;
    border-radius: var(--acc-radius-full);
}

.acc-feature-pill {
    background: var(--acc-surface);
    color: var(--acc-ink-800);
    border: 1px solid var(--acc-border-light);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: var(--acc-radius-full);
}

.acc-card-img-wrap {
    width: 100%;
    max-width: 180px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--acc-transition);
}

.acc-product-card:hover .acc-card-img-wrap {
    transform: scale(1.06);
}

.acc-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Compare Label Overlay */
.acc-compare-label {
    position: absolute;
    bottom: 12px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--acc-border-light);
    padding: 3px 8px;
    border-radius: var(--acc-radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--acc-ink-600);
    cursor: pointer;
    user-select: none;
    transition: var(--acc-transition);
    z-index: 2;
}

.acc-compare-label:hover {
    background: var(--acc-surface);
    color: var(--acc-accent);
    border-color: var(--acc-accent);
}

.acc-compare-checkbox {
    width: 13px;
    height: 13px;
    accent-color: var(--acc-accent);
    cursor: pointer;
}

/* Card Body */
.acc-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.acc-card-meta {
    margin-bottom: 6px;
}

.acc-cat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--acc-accent);
}

.acc-card-title {
    font-size: 1.1875rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
}

.acc-card-excerpt {
    font-size: 0.875rem;
    color: var(--acc-ink-500);
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}

.acc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.acc-tag {
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    color: var(--acc-ink-700);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Card Footer Actions */
.acc-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--acc-border-subtle);
}

.acc-btn-quickview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-light);
    color: var(--acc-ink-800);
    height: 38px;
    border-radius: var(--acc-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--acc-font);
    cursor: pointer;
    transition: var(--acc-transition);
}

.acc-btn-quickview:hover {
    background: var(--acc-accent);
    color: var(--acc-white-pure);
    border-color: var(--acc-accent);
}

.acc-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--acc-ink-900);
    border: 1px solid var(--acc-ink-900);
    color: #ffffff !important;
    height: 38px;
    border-radius: var(--acc-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: var(--acc-transition);
}

.acc-btn-whatsapp:hover {
    background: var(--acc-accent);
    border-color: var(--acc-accent);
    transform: translateY(-1px);
}

/* ── 7. LIST VIEW LAYOUT (Alternative View) ────────────────── */
.acc-products-grid.acc-view-list {
    grid-template-columns: 1fr;
    gap: 20px;
}

.acc-products-grid.acc-view-list .acc-product-card {
    flex-direction: row;
    align-items: stretch;
}

.acc-products-grid.acc-view-list .acc-card-media {
    width: 240px;
    min-height: auto;
    border-bottom: none;
    border-right: 1px solid var(--acc-border-subtle);
    flex-shrink: 0;
}

.acc-products-grid.acc-view-list .acc-card-body {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 24px;
    align-items: center;
}

.acc-products-grid.acc-view-list .acc-card-footer {
    display: flex;
    flex-direction: column;
    border-top: none;
    border-left: 1px solid var(--acc-border-subtle);
    padding-top: 0;
    padding-left: 20px;
    margin-top: 0;
    height: 100%;
    justify-content: center;
}

/* Empty State */
.acc-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: var(--acc-surface-card);
    border: 1px dashed var(--acc-border-medium);
    border-radius: var(--acc-radius-lg);
    max-width: 600px;
    margin: 2rem auto 0;
}

.acc-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--acc-bg-subtle);
    color: var(--acc-ink-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.acc-empty-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    margin: 0 0 0.5rem;
}

.acc-empty-desc {
    font-size: 0.9375rem;
    color: var(--acc-ink-500);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.acc-empty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── 8. FLOATING COMPARISON DRAWER & MODAL ─────────────────── */
.acc-compare-drawer {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 990;
    transform: translateY(140%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.acc-compare-drawer.is-active {
    transform: translateY(0);
    pointer-events: auto;
}

.acc-compare-bar {
    background: rgba(55, 51, 45, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(205, 194, 184, 0.25);
    border-radius: var(--acc-radius-xl);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(55, 51, 45, 0.35);
}

.acc-compare-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.acc-compare-badge {
    background: var(--acc-accent);
    color: var(--acc-white-pure);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--acc-radius-full);
}

.acc-compare-thumbs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acc-compare-thumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--acc-white-pure);
    border: 1px solid rgba(205, 194, 184, 0.25);
    padding: 4px 10px;
    border-radius: var(--acc-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acc-compare-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.acc-compare-remove:hover {
    color: var(--acc-accent);
}

.acc-compare-count-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.acc-compare-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acc-compare-trigger {
    background: var(--acc-accent);
    color: #ffffff !important;
    padding: 9px 20px;
    font-size: 0.875rem;
    border: 1px solid var(--acc-accent);
    border-radius: var(--acc-radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--acc-transition);
}

.acc-compare-trigger:hover {
    background: var(--acc-accent-hover);
    border-color: var(--acc-accent-hover);
    transform: translateY(-1px);
}

.acc-compare-clear-link {
    background: none;
    border: none;
    color: rgba(205, 194, 184, 0.8);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.acc-compare-clear-link:hover {
    color: var(--acc-accent);
}

/* Comparison Modal */
.acc-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.acc-modal-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

.acc-modal-window {
    background: var(--acc-surface);
    border-radius: var(--acc-radius-xl);
    border: 1px solid var(--acc-border-light);
    box-shadow: var(--acc-shadow-lg);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-modal-backdrop.is-active .acc-modal-window {
    transform: scale(1);
}

.acc-modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--acc-border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.acc-modal-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acc-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    margin: 0;
}

.acc-modal-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--acc-ink-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--acc-transition);
}

.acc-modal-close-btn:hover {
    background: var(--acc-ink-900);
    color: var(--acc-white-pure);
}

.acc-modal-scrollable {
    overflow-y: auto;
    padding: 30px;
}

/* Comparison Table */
.acc-compare-table-wrap {
    overflow-x: auto;
}

.acc-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.acc-compare-table th,
.acc-compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--acc-border-subtle);
    font-size: 0.875rem;
}

.acc-compare-table th {
    background: var(--acc-bg-subtle);
    color: var(--acc-ink-900);
    font-weight: 700;
}

.acc-compare-table td {
    color: var(--acc-ink-600);
}

.acc-compare-col-header {
    text-align: center;
}

.acc-compare-img {
    width: 80px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 8px;
    display: block;
}

.acc-compare-item-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    margin: 0;
}



/* ── 10. WHY BUY GENUINE ACCESSORIES ───────────────────────── */
.acc-benefits-section {
    padding: 5rem 0;
    background: var(--acc-bg);
}

.acc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.acc-benefit-card {
    background: var(--acc-surface-card);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--acc-shadow-xs);
    transition: var(--acc-transition);
}

.acc-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--acc-accent);
    box-shadow: var(--acc-shadow-hover);
}

.acc-benefit-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--acc-radius-md);
    background: rgba(164, 125, 92, 0.1);
    border: 1px solid rgba(164, 125, 92, 0.2);
    color: var(--acc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.acc-benefit-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.acc-benefit-desc {
    font-size: 0.84375rem;
    color: var(--acc-ink-500);
    line-height: 1.6;
    margin: 0;
}

/* ── 11. FAQ ACCORDION SECTION (MATCHING CONTACT US) ───────── */
.acc-faq-section {
    padding: 5rem 0;
    background: var(--acc-bg-subtle);
    border-top: 1px solid var(--acc-border-subtle);
}

.acc-faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.acc-faq-item {
    background: var(--acc-surface-card);
    border: 1px solid var(--acc-border-light);
    border-radius: var(--acc-radius-md);
    overflow: hidden;
    box-shadow: var(--acc-shadow-xs);
    transition: var(--acc-transition);
}

.acc-faq-item:hover {
    border-color: var(--acc-accent);
}

.acc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--acc-ink-900);
    font-family: var(--acc-font);
    cursor: pointer;
    gap: 16px;
}

.acc-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acc-ink-900);
    flex-shrink: 0;
    transition: var(--acc-transition);
}

.acc-faq-item.is-open .acc-faq-icon {
    transform: rotate(45deg);
    background: var(--acc-accent);
    color: var(--acc-white-pure);
}

.acc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--acc-ink-600);
}

/* ── 12. INQUIRY & CONSULTATION HUB (SIMPLIFIED & UNIFIED) ── */
.acc-inquiry-section {
    padding: 5rem 0;
    background: var(--acc-bg);
}

.acc-inquiry-unified-card {
    background: #ffffff;
    border: 1px solid rgba(70, 65, 56, 0.12);
    border-radius: 28px;
    padding: 56px 48px;
    box-shadow: 0 10px 40px rgba(55, 51, 45, 0.05);
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.acc-inquiry-header {
    max-width: 780px;
    margin: 0 auto 40px;
}

.acc-inquiry-header .acc-card-badge {
    margin-bottom: 12px;
}

.acc-inquiry-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--acc-ink-900);
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin: 12px 0 10px;
}

.acc-inquiry-desc {
    font-size: 1.0625rem;
    color: var(--acc-ink-500);
    line-height: 1.65;
    margin: 0 auto;
}

.acc-inquiry-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
    text-align: left;
}

.acc-inquiry-box {
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-inquiry-box:hover {
    background: #ffffff;
    border-color: var(--acc-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(164, 125, 92, 0.15);
}

.acc-inquiry-box-static:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--acc-border-subtle);
    background: var(--acc-bg-subtle);
}

.acc-inquiry-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #37332d 0%, #a47d5c 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(164, 125, 92, 0.25);
}

.acc-inquiry-box-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acc-inquiry-box-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--acc-ink-400);
}

.acc-inquiry-box-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.acc-inquiry-box-sub {
    font-size: 0.8125rem;
    color: var(--acc-ink-400);
    font-weight: 500;
}

.acc-inquiry-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--acc-border-subtle);
}

.acc-inquiry-cta-row .acc-btn-primary {
    height: 52px;
    padding: 0 32px;
    font-size: 0.9375rem;
}

.acc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 28px;
    background: #ffffff;
    color: var(--acc-ink-900) !important;
    border: 1.5px solid var(--acc-border-medium);
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--acc-font);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(55, 51, 45, 0.03);
}

.acc-btn-secondary:hover {
    background: var(--acc-accent);
    color: #ffffff !important;
    border-color: var(--acc-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(164, 125, 92, 0.25);
}

/* ── 14. QUICK VIEW MODAL (DETAILS & SPECS) ────────────────── */
.acc-quickview-modal-window {
    position: relative;
    max-width: 920px;
    width: 94%;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--acc-border-light);
    box-shadow: 0 30px 80px rgba(55, 51, 45, 0.28);
    overflow: hidden;
}

/* Floating Modern Top-Right Close Button */
.acc-quickview-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 30;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    color: var(--acc-ink-900);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(55, 51, 45, 0.04);
}

.acc-quickview-close:hover {
    background: var(--acc-accent);
    color: #ffffff;
    border-color: var(--acc-accent);
    transform: rotate(90deg) scale(1.06);
    box-shadow: 0 4px 14px rgba(164, 125, 92, 0.3);
}

.acc-quickview-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 36px;
    padding: 40px;
    max-height: calc(90vh - 20px);
    overflow-y: auto;
    align-items: start;
}

.acc-quickview-media {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 0;
}

.acc-qv-img-box {
    background: linear-gradient(145deg, #f7f5f2 0%, #ede8e3 100%);
    border: 1px solid var(--acc-border-subtle);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    box-shadow: inset 0 2px 6px rgba(55, 51, 45, 0.02);
    position: relative;
    overflow: hidden;
}

.acc-qv-img {
    max-width: 100%;
    max-height: 230px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(55, 51, 45, 0.1));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-qv-img-box:hover .acc-qv-img {
    transform: scale(1.05);
}

.acc-qv-media-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
    background: var(--acc-bg-subtle);
    border-radius: 12px;
    border: 1px solid var(--acc-border-subtle);
}

.acc-qv-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--acc-ink-600);
    line-height: 1.35;
}

.acc-qv-trust-item svg {
    color: var(--acc-accent);
    flex-shrink: 0;
}

.acc-quickview-content {
    display: flex;
    flex-direction: column;
    padding-right: 16px;
}

.acc-qv-header-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.acc-qv-header-badges .acc-brand-pill {
    background: var(--acc-accent);
    color: #ffffff !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 999px;
    display: inline-block;
}

.acc-qv-header-badges .acc-feature-pill {
    background: var(--acc-bg-subtle);
    color: var(--acc-ink-800);
    border: 1px solid var(--acc-border-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    display: inline-block;
}

.acc-qv-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--acc-ink-900);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 10px;
}

.acc-qv-desc {
    font-size: 0.9375rem;
    color: var(--acc-ink-500);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 400;
}

.acc-qv-specs-section {
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.acc-qv-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.acc-qv-section-header svg {
    color: var(--acc-accent);
    flex-shrink: 0;
}

.acc-qv-section-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--acc-accent);
    margin: 0;
}

.acc-qv-specs-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.acc-qv-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--acc-border-subtle);
    gap: 16px;
}

.acc-qv-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.acc-qv-spec-key {
    font-weight: 500;
    color: var(--acc-ink-400);
    white-space: nowrap;
}

.acc-qv-spec-val {
    font-weight: 700;
    color: var(--acc-ink-900);
    text-align: right;
}

.acc-qv-compat-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--acc-bg-subtle);
    border: 1px solid var(--acc-border-subtle);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.8125rem;
    color: var(--acc-ink-600);
    line-height: 1.55;
    margin-bottom: 24px;
}

.acc-qv-compat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--acc-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--acc-accent);
    box-shadow: 0 1px 3px rgba(55, 51, 45, 0.04);
}

.acc-qv-compat-text-wrap {
    flex: 1;
}

.acc-qv-compat-text-wrap strong {
    color: var(--acc-ink-900);
    font-weight: 700;
    display: inline-block;
    margin-right: 4px;
}

.acc-qv-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}

.acc-qv-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    background: var(--acc-accent);
    color: #ffffff !important;
    border: 1.5px solid var(--acc-accent);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--acc-font);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(164, 125, 92, 0.25);
}

.acc-qv-btn-wa:hover {
    background: var(--acc-accent-hover);
    border-color: var(--acc-accent-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(164, 125, 92, 0.35);
}

.acc-qv-btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    background: #ffffff;
    color: var(--acc-ink-900) !important;
    border: 1.5px solid var(--acc-border-medium);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--acc-font);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(55, 51, 45, 0.03);
}

.acc-qv-btn-demo:hover {
    background: var(--acc-accent);
    color: #ffffff !important;
    border-color: var(--acc-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(164, 125, 92, 0.25);
}

/* ── 15. RESPONSIVE BREAKPOINTS ────────────────────────────── */
@media (max-width: 1200px) {
    .acc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .acc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .acc-hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .acc-stat-card:nth-child(2)::after {
        display: none;
    }
    .acc-matcher-grid {
        grid-template-columns: 1fr;
    }
    .acc-inquiry-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .acc-inquiry-unified-card {
        padding: 40px 28px;
    }
    .acc-quickview-grid {
        grid-template-columns: 1fr;
        padding: 32px 24px 28px;
        gap: 24px;
    }
    .acc-quickview-media {
        position: static;
    }
    .acc-qv-img-box {
        height: 240px;
    }
    .acc-quickview-content {
        padding-right: 0;
    }
    .acc-quickview-close {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    .acc-products-grid {
        grid-template-columns: 1fr;
    }
    .acc-products-grid.acc-view-list .acc-product-card {
        flex-direction: column;
    }
    .acc-products-grid.acc-view-list .acc-card-media {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--acc-border-subtle);
    }
    .acc-products-grid.acc-view-list .acc-card-body {
        grid-template-columns: 1fr;
    }
    .acc-products-grid.acc-view-list .acc-card-footer {
        border-left: none;
        border-top: 1px solid var(--acc-border-subtle);
        padding-left: 0;
        padding-top: 16px;
    }
    .acc-benefits-grid {
        grid-template-columns: 1fr;
    }
    .acc-inquiry-contact-grid {
        grid-template-columns: 1fr;
    }
    .acc-inquiry-cta-row {
        flex-direction: column;
        width: 100%;
    }
    .acc-inquiry-cta-row a {
        width: 100%;
    }
    .acc-secondary-controls-row {
        flex-direction: column;
        align-items: stretch;
    }
    .acc-right-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .acc-search-box {
        width: 100%;
    }
    .acc-compare-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        text-align: center;
    }
    .acc-compare-left {
        justify-content: center;
    }
    .acc-compare-right {
        justify-content: center;
    }
    .acc-qv-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .acc-card-footer {
        grid-template-columns: 1fr;
    }
    .acc-inquiry-unified-card {
        padding: 28px 18px;
        border-radius: 20px;
    }
}
