/* ═══════════ Gear Store Template ═══════════ */

.act-gear-store {
    --store-bg: #fff;
    --store-bg-alt: #F8FAFC;
    --store-border: #E5E7EB;
    --store-text: #1E293B;
    --store-muted: #6B7280;
    --store-amazon: #FF9900;
    --store-ink: #0F172A;
    font-family: var(--wp--preset--font-family--body, "DM Sans", sans-serif);
    color: var(--store-text);
    line-height: 1.6;
}
.act-gear-store > section {
    margin: 0 0 3rem;
}
.act-gear-store h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 8px;
    color: var(--store-ink);
}
.act-gear-store section > p {
    color: var(--store-muted);
    font-size: 15px;
    margin: 0 0 1.5rem;
    max-width: 760px;
}

/* ═══ Hero ═══ */
.act-store-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.act-store-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,153,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14,116,144,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.act-store-hero__inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.act-store-hero__eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FCD34D;
    margin-bottom: 12px;
    font-weight: 600;
}
.act-store-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin: 0 0 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.act-store-hero__lede {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #CBD5E1;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.act-store-hero__notice {
    background: rgba(217,119,6,0.15);
    border: 1px solid rgba(252,211,77,0.3);
    color: #FDE68A;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.act-store-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #94A3B8;
}
.act-store-hero__stats strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ═══ Expertise / trust section ═══ */
.act-store-expertise {
    background: var(--store-bg-alt);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}
.act-store-expertise__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.act-store-expertise__card {
    background: #fff;
    border: 1px solid var(--store-border);
    border-radius: 12px;
    padding: 1.5rem;
}
.act-store-expertise__icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.act-store-expertise__card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--store-ink);
}
.act-store-expertise__card p {
    margin: 0;
    font-size: 14px;
    color: var(--store-muted);
    line-height: 1.55;
}

/* ═══ Category navigation cards ═══ */
.act-store-cats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 1.5rem;
}
.act-store-cat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--store-border);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: var(--store-text);
    transition: all .15s ease;
}
.act-store-cat-card:hover {
    border-color: var(--store-amazon);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    color: var(--store-text);
}
.act-store-cat-card__icon {
    font-size: 32px;
    margin-bottom: 10px;
}
.act-store-cat-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: var(--store-ink);
}
.act-store-cat-card p {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--store-muted);
    line-height: 1.5;
    flex: 1;
}
.act-store-cat-card__count {
    display: inline-block;
    padding: 3px 10px;
    background: var(--store-bg-alt);
    border-radius: 12px;
    font-size: 11px;
    color: var(--store-muted);
    font-weight: 600;
    align-self: flex-start;
}

/* ═══ Essential section ═══ */
.act-store-essential h2 {
    color: #B91C1C;
}

/* ═══ Category sections in full catalog ═══ */
.act-store-cat-section {
    background: var(--store-bg);
    border: 1px solid var(--store-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    scroll-margin-top: 80px;
}
.act-store-cat-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--store-border);
}
.act-store-cat-header__icon {
    font-size: 40px;
    flex-shrink: 0;
}
.act-store-cat-header h3 {
    margin: 0 0 4px;
    font-size: 22px;
    color: var(--store-ink);
}
.act-store-cat-header p {
    margin: 0;
    color: var(--store-muted);
    font-size: 14px;
    line-height: 1.55;
}

/* ═══ FAQ ═══ */
.act-store-faq details {
    background: #fff;
    border: 1px solid var(--store-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .15s;
}
.act-store-faq details[open] {
    border-color: var(--store-amazon);
    background: var(--store-bg-alt);
}
.act-store-faq summary {
    font-weight: 600;
    color: var(--store-ink);
    font-size: 15px;
    list-style: none;
    position: relative;
    padding-right: 24px;
}
.act-store-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: var(--store-amazon);
    font-weight: 700;
    transition: transform .15s;
}
.act-store-faq details[open] summary::after { content: '−'; }
.act-store-faq summary::-webkit-details-marker { display: none; }
.act-store-faq details p {
    margin: 12px 0 0;
    color: var(--store-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ═══ Affiliate disclosure ═══ */
.act-store-disclosure {
    background: var(--store-bg-alt);
    border-left: 4px solid var(--store-amazon);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    font-size: 13px;
}
.act-store-disclosure h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--store-ink);
}
.act-store-disclosure p {
    margin: 0 0 8px;
    line-height: 1.6;
    color: #374151;
}
.act-store-disclosure p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
    .act-store-hero { padding: 2rem 1.25rem; }
    .act-store-cat-header { flex-direction: column; align-items: flex-start; }
}
