/* Package 94 — PDP progressive disclosure + intelligence depth */

.product-trust-strip {
    display: grid;
    gap: var(--space-md);
    margin-block: var(--stack-gap);
    padding: 1rem 1.25rem;
    border: 1px solid color-mix(in srgb, var(--green-600) 18%, transparent);
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, var(--surface-botanical-soft) 0%, var(--neutral-0) 100%);
    box-shadow: var(--shadow-card);
}

.product-trust-strip__group {
    display: grid;
    gap: 0.5rem;
}

.product-trust-strip__label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    font-size: var(--font-size-body-sm);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--green-800);
}

.product-trust-strip__icon {
    width: 1rem;
    height: 1rem;
    color: var(--green-700);
}

.product-trust-strip__pills {
    margin: 0;
}

.pdp-intelligence-depth {
    margin-block: var(--stack-gap);
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid color-mix(in srgb, var(--brown-500) 10%, transparent);
    border-radius: var(--radius-feature);
    background: color-mix(in srgb, var(--neutral-50) 80%, var(--surface-earth-soft));
}

.pdp-intelligence-depth__header {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--brown-500) 10%, transparent);
}

.pdp-intelligence-depth__mark {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
    color: var(--brown-600);
}

.pdp-intelligence-depth__header h2 {
    margin: 0 0 0.35rem;
    font-size: var(--font-size-h2);
    color: var(--brown-700);
}

.pdp-intelligence-depth__intro {
    margin: 0;
    color: var(--neutral-600);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    max-width: var(--content-width-reading);
}

.pdp-intelligence-depth__stack {
    display: grid;
    gap: 0.65rem;
}

.pdp-disclosure {
    border: 1px solid color-mix(in srgb, var(--brown-500) 10%, transparent);
    border-radius: var(--radius-control);
    background: var(--neutral-0);
    box-shadow: var(--elevation-1);
}

.pdp-disclosure--specs {
    border-left: 3px solid var(--brown-500);
}

.pdp-disclosure--nutrition {
    border-left: 3px solid var(--green-600);
}

.pdp-disclosure--editorial {
    border-left: 3px solid color-mix(in srgb, var(--color-mauve, #9c829f) 80%, var(--brown-400));
}

.pdp-disclosure__summary {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    list-style: none;
    font-weight: var(--font-weight-bold);
    color: var(--brown-700);
}

.pdp-disclosure__summary::-webkit-details-marker {
    display: none;
}

.pdp-disclosure__topic-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 1.1rem;
    color: var(--green-700);
}

.pdp-disclosure--specs .pdp-disclosure__topic-icon {
    color: var(--brown-600);
}

.pdp-disclosure--editorial .pdp-disclosure__topic-icon {
    color: color-mix(in srgb, var(--color-mauve, #9c829f) 85%, var(--brown-600));
}

.pdp-disclosure__chevron {
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    flex: 0 0 1rem;
    color: var(--neutral-500);
    transition: transform var(--motion-medium) var(--motion-ease);
}

.pdp-disclosure[open] > .pdp-disclosure__summary .pdp-disclosure__chevron {
    transform: rotate(180deg);
}

.pdp-disclosure__title {
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-heading);
}

.pdp-disclosure__body {
    padding: 0 1rem 1rem;
    border-top: 1px solid color-mix(in srgb, var(--brown-500) 8%, transparent);
}

.pdp-disclosure__body .entity-section,
.pdp-disclosure__body .product-editorial-review,
.pdp-disclosure__body .entity-fact-groups {
    margin: 0;
    padding: 0.85rem 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.entity-fact-groups--depth {
    display: grid;
    gap: 1rem;
}

.entity-fact-groups__block h3 {
    margin: 0 0 0.5rem;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
    color: var(--brown-700);
}

@media (min-width: 64rem) {
    .pdp-disclosure--specs[open],
    .pdp-disclosure--nutrition[open] {
        /* Desktop may keep disclosures expanded when user opens them */
    }
}

@media (prefers-reduced-motion: reduce) {
    .pdp-disclosure__chevron {
        transition: none;
    }
}
