/* ============================================================================
 * WEF PREMIUM PRODUCT PAGE — TRUE PREMIUM STYLESHEET
 *
 * Design philosophy:
 * - Editorial typography (Inter Display + Fraunces serif)
 * - Refined warm-cream palette (instead of cold gray)
 * - Subtle, intentional micro-interactions
 * - Asymmetric/intentional spacing
 * - Premium hover states (button fill animation, image zoom, link draw)
 * - Scroll-triggered reveals
 * - Magnetic interactions
 *
 * Inspired by: Aesop, SSENSE, Apple, COS, Rapha, MR PORTER
 * ============================================================================ */

/* ============================================================
 * 0. DESIGN TOKENS
 * ============================================================ */
:root {
    /* Refined warm palette — not cold gray */
    --wefpp-bg:           #ffffff;
    --wefpp-bg-warm:      #faf8f3;       /* warm cream */
    --wefpp-bg-soft:      #f5f3ee;       /* soft cream */
    --wefpp-bg-deep:      #ebe7df;
    --wefpp-text:         #0a0a0a;       /* deep but not pure black */
    --wefpp-text-2:       #1f1f1f;
    --wefpp-text-muted:   #6a655e;       /* warm gray */
    --wefpp-text-subtle:  #8a8580;
    --wefpp-text-faint:   #b8b3ab;
    --wefpp-border:       #e8e4dd;       /* warm border */
    --wefpp-border-soft:  #f0ece4;
    --wefpp-accent:       #0a0a0a;
    --wefpp-accent-warm:  #2c1810;       /* deep oxblood/coffee */
    --wefpp-sale:         #a8001f;
    --wefpp-paypal:       #ffc439;

    /* Typography */
    --wefpp-font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    --wefpp-font-serif:   'Fraunces', 'Times New Roman', Georgia, serif;

    /* Easing curves — premium feel */
    --wefpp-ease-out:     cubic-bezier(0.22, 1, 0.36, 1);       /* Apple-like */
    --wefpp-ease-soft:    cubic-bezier(0.16, 1, 0.3, 1);        /* SSENSE-like */
    --wefpp-ease-snappy:  cubic-bezier(0.4, 0, 0.2, 1);

    /* Timing */
    --wefpp-duration-fast: 200ms;
    --wefpp-duration-mid:  400ms;
    --wefpp-duration-slow: 700ms;
    --wefpp-duration-xl:   1000ms;
}

/* ============================================================
 * 1. GLOBAL TYPOGRAPHY APPLY
 * ============================================================ */

/* Apply Inter to all WEF components */
[class*="wefpp-"] {
    font-family: var(--wefpp-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reset Elementor defaults inside our widgets */
.elementor [class*="wefpp-hero__title"],
.elementor [class*="wefpp-rel__title"],
.elementor [class*="wefpp-cat__title"],
.elementor [class*="wefpp-info__title"] {
    margin: 0;
}

/* ============================================================
 * 2. SHARED UTILITIES
 * ============================================================ */

/* Subtle eyebrow line decoration */
.wefpp-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
    vertical-align: middle;
    margin-right: 12px;
}

.wefpp-line--short { width: 24px; }

/* Animated link underline (draws on hover) */
.wefpp-link-anim {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    transition: background-size var(--wefpp-duration-mid) var(--wefpp-ease-out);
}

.wefpp-link-anim:hover {
    background-size: 0% 1px;
    background-position: 100% 100%;
}

/* Pulsing dot for delivery indicator */
.wefpp-pulse-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.wefpp-pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: wefpp-pulse 2.4s ease-out infinite;
}

@keyframes wefpp-pulse {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.6); opacity: 0; }
}

/* Scroll reveal — content visible by default. Animation only activates if JS adds .wefpp-reveal-init class. */
[data-reveal] {
    transition: opacity var(--wefpp-duration-xl) var(--wefpp-ease-soft),
                transform var(--wefpp-duration-xl) var(--wefpp-ease-soft);
}

/* JS adds this class only if it's running AND not in editor mode */
[data-reveal].wefpp-reveal-init {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}

[data-reveal].wefpp-reveal-init.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Preview message */
.wefpp-preview-message {
    padding: 64px 32px;
    background: var(--wefpp-bg-soft);
    text-align: center;
    border-radius: 4px;
    color: var(--wefpp-text-muted);
    font-size: 14px;
    letter-spacing: 0.3px;
}

/* ============================================================
 * 3. HERO — Editorial Layout
 * ============================================================ */

.wefpp-hero {
    display: grid;
    grid-template-columns: var(--wefpp-hero-image-col, 56%) 1fr;
    gap: 100px;
    align-items: start;
    color: var(--wefpp-text);
}

/* Layout swap: Image Right / Info Left */
.wefpp-hero--image_right .wefpp-hero__media { order: 2; }
.wefpp-hero--image_right .wefpp-hero__info { order: 1; }

/* MEDIA / IMAGE */
.wefpp-hero__media {
    position: relative;
}

.wefpp-hero__media--sticky {
    position: sticky;
    top: 80px;
}

.wefpp-hero__image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--wefpp-bg-soft);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.wefpp-hero__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 1.2s var(--wefpp-ease-soft);
    will-change: transform;
}

/* Image zoom on hover (premium photography feel) */
.wefpp-hero__image-wrap:hover .wefpp-hero__image[data-zoom="1"] {
    transform: scale(1.06);
}

/* Decorative corner marks (premium gallery indicator) */
.wefpp-hero__image-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--wefpp-border);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
    transition: width var(--wefpp-duration-mid) var(--wefpp-ease-out),
                height var(--wefpp-duration-mid) var(--wefpp-ease-out);
}

.wefpp-hero__image-corner--tl { top: 16px; left: 16px; border-top-width: 1px; border-left-width: 1px; }
.wefpp-hero__image-corner--tr { top: 16px; right: 16px; border-top-width: 1px; border-right-width: 1px; }
.wefpp-hero__image-corner--bl { bottom: 16px; left: 16px; border-bottom-width: 1px; border-left-width: 1px; }
.wefpp-hero__image-corner--br { bottom: 16px; right: 16px; border-bottom-width: 1px; border-right-width: 1px; }

.wefpp-hero__image-wrap:hover .wefpp-hero__image-corner {
    width: 24px;
    height: 24px;
}

/* INFO COLUMN */
.wefpp-hero__info {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.wefpp-hero__breadcrumb {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-subtle);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

/* TITLE — editorial sizing */
.wefpp-hero__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--wefpp-text);
    margin: 0 0 32px;
}

/* Title style variants */
.wefpp-tfont--serif .wefpp-hero__title {
    font-family: var(--wefpp-font-serif);
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.02;
}

.wefpp-tfont--mixed .wefpp-hero__title em,
.wefpp-tfont--mixed .wefpp-hero__title i {
    font-family: var(--wefpp-font-serif);
    font-style: italic;
    font-weight: 400;
}

/* Style variant: classic */
.wefpp-style--classic .wefpp-hero__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Style variant: minimal */
.wefpp-style--minimal .wefpp-hero__title {
    font-weight: 400;
    letter-spacing: -0.5px;
}

.wefpp-hero__short-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--wefpp-text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.wefpp-hero__short-desc p {
    margin: 0 0 12px;
}

.wefpp-hero__short-desc p:last-child {
    margin-bottom: 0;
}

/* PRICE BLOCK */
.wefpp-hero__price-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--wefpp-border);
}

.wefpp-hero__price {
    font-size: 28px;
    font-weight: 500;
    color: var(--wefpp-text);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.wefpp-hero__price .price {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.wefpp-hero__price del {
    color: var(--wefpp-text-faint);
    font-weight: 400;
    font-size: 0.75em;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.wefpp-hero__price ins {
    text-decoration: none;
}

.wefpp-hero__price ins .amount {
    color: var(--wefpp-sale);
}

.wefpp-hero__tax-text {
    font-size: 12px;
    color: var(--wefpp-text-muted);
    line-height: 1.6;
    letter-spacing: 0.1px;
}

/* DELIVERY — refined badge */
.wefpp-hero__delivery {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: var(--wefpp-text-2);
    margin-bottom: 32px;
    width: fit-content;
    letter-spacing: 0.1px;
}

/* PURCHASE BLOCK */
.wefpp-hero__purchase {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wefpp-hero__qty-block {
    margin-bottom: 8px;
}

.wefpp-hero__qty-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wefpp-text-muted);
    margin-bottom: 12px;
}

.wefpp-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--wefpp-border);
    background: var(--wefpp-bg);
    width: fit-content;
    transition: border-color var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
}

.wefpp-qty:focus-within,
.wefpp-qty:hover {
    border-color: var(--wefpp-text);
}

.wefpp-qty__btn {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--wefpp-text);
    transition: background var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wefpp-qty__btn:hover {
    background: var(--wefpp-bg-soft);
}

.wefpp-qty__input {
    width: 56px;
    height: 56px;
    border: 0;
    border-left: 1px solid var(--wefpp-border);
    border-right: 1px solid var(--wefpp-border);
    background: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--wefpp-text);
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: var(--wefpp-font-sans);
}

.wefpp-qty__input::-webkit-outer-spin-button,
.wefpp-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wefpp-qty__input:focus { outline: none; }

/* CART BUTTON — magnetic + fill animation */
.wefpp-btn-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 64px;
    padding: 0 32px;
    background: var(--wefpp-text);
    color: #fafaf8;
    border: 0;
    border-radius: 2px;
    font-family: var(--wefpp-font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: color var(--wefpp-duration-mid) var(--wefpp-ease-out),
                transform var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
    will-change: transform;
}

/* Fill animation — circle expands from cursor */
.wefpp-btn-cart::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fafaf8;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s var(--wefpp-ease-soft);
    z-index: 0;
    border-radius: inherit;
}

.wefpp-btn-cart:hover::after {
    transform: scaleY(1);
    transform-origin: top;
}

.wefpp-btn-cart:hover {
    color: var(--wefpp-text);
}

.wefpp-btn-cart__text,
.wefpp-btn-cart__icon {
    position: relative;
    z-index: 1;
    transition: transform var(--wefpp-duration-mid) var(--wefpp-ease-out);
}

.wefpp-btn-cart:hover .wefpp-btn-cart__icon {
    transform: translateX(4px);
}

.wefpp-btn-cart__icon {
    display: inline-flex;
    align-items: center;
}

.wefpp-btn-cart.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

/* PAYPAL BUTTON — refined */
.wefpp-btn-paypal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 56px;
    background: var(--wefpp-paypal);
    color: #2c2e2f;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: background var(--wefpp-duration-fast) var(--wefpp-ease-snappy),
                transform var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
}

.wefpp-btn-paypal:hover {
    background: #f0b020;
    transform: translateY(-1px);
}

.wefpp-paypal-mit,
.wefpp-paypal-zahlen {
    font-size: 14px;
    font-weight: 500;
    color: #2c2e2f;
}

.wefpp-paypal-logo {
    height: 22px;
    width: auto;
}

.wefpp-more-link {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    color: var(--wefpp-text-muted);
    margin: 8px auto 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: center;
}

.wefpp-hero__sku {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--wefpp-border);
    font-size: 12px;
    color: var(--wefpp-text-muted);
    letter-spacing: 0.5px;
    display: flex;
    gap: 8px;
}

.wefpp-meta-label {
    color: var(--wefpp-text-faint);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============================================================
 * 4. PRODUCT INFO — Inhalt + Accordions
 * ============================================================ */

.wefpp-info {
    color: var(--wefpp-text);
}

.wefpp-info__inhalt {
    padding: 56px 0;
    border-bottom: 1px solid var(--wefpp-border);
}

.wefpp-info__label {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-subtle);
    margin-bottom: 24px;
}

.wefpp-info__title {
    font-family: var(--wefpp-font-serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--wefpp-text);
    margin: 0 0 32px;
}

.wefpp-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wefpp-info__list li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    color: var(--wefpp-text-2);
    line-height: 1.6;
    padding: 14px 0;
    border-bottom: 1px solid var(--wefpp-border-soft);
    gap: 16px;
}

.wefpp-info__list li:last-child {
    border-bottom: 0;
}

.wefpp-info__list-marker {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--wefpp-text);
    border-radius: 50%;
    margin-top: 11px;
}

/* Accordions */
.wefpp-acc-list {
    border-bottom: 1px solid var(--wefpp-border);
}

.wefpp-acc {
    border-top: 1px solid var(--wefpp-border);
}

.wefpp-acc__btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 28px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--wefpp-font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--wefpp-text);
    text-align: left;
    letter-spacing: -0.1px;
    transition: color var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
}

.wefpp-acc__btn:hover {
    color: var(--wefpp-text-muted);
}

.wefpp-acc__icon {
    display: inline-flex;
    color: var(--wefpp-text);
    margin-right: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.wefpp-acc__title {
    flex: 1;
}

/* Animated +/- icon (premium) */
.wefpp-acc__plus {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.wefpp-acc__plus-h,
.wefpp-acc__plus-v {
    position: absolute;
    background: var(--wefpp-text);
    transition: transform var(--wefpp-duration-mid) var(--wefpp-ease-out),
                opacity var(--wefpp-duration-mid) var(--wefpp-ease-out);
}

.wefpp-acc__plus-h {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.wefpp-acc__plus-v {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.wefpp-acc.is-open .wefpp-acc__plus-v {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.wefpp-acc__panel {
    overflow: hidden;
}

.wefpp-acc__panel-inner {
    padding: 0 0 28px 36px;
    font-size: 14px;
    color: var(--wefpp-text-2);
    line-height: 1.7;
    max-width: 640px;
}

.wefpp-acc__panel-inner p {
    margin: 0 0 12px;
}

.wefpp-acc__panel-inner p:last-child {
    margin-bottom: 0;
}

/* ============================================================
 * 5. TRUST BADGES — Editorial divided layout
 * ============================================================ */

.wefpp-trust {
    padding: 64px 0;
}

.wefpp-trust__eyebrow {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-subtle);
    margin-bottom: 32px;
}

.wefpp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.wefpp-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px 24px 0;
    transition: opacity var(--wefpp-duration-mid) var(--wefpp-ease-snappy);
}

.wefpp-trust--divided .wefpp-trust-item {
    border-right: 1px solid var(--wefpp-border);
}

.wefpp-trust--divided .wefpp-trust-item:last-child {
    border-right: 0;
}

.wefpp-trust--cards .wefpp-trust-item {
    padding: 28px;
    background: var(--wefpp-bg-soft);
    border-radius: 4px;
    margin-right: 16px;
}

.wefpp-trust--cards .wefpp-trust-item:last-child { margin-right: 0; }

.wefpp-trust-align--center .wefpp-trust-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
}

.wefpp-trust__icon {
    flex-shrink: 0;
    color: var(--wefpp-text);
    line-height: 1;
}

.wefpp-trust__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.wefpp-trust__title {
    font-size: 13px;
    font-weight: 500;
    color: var(--wefpp-text);
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: -0.1px;
}

.wefpp-trust__subtitle {
    font-size: 12px;
    color: var(--wefpp-text-muted);
    line-height: 1.5;
    letter-spacing: 0.1px;
}

/* ============================================================
 * 6. RELATED PRODUCTS — Editorial cards with hover reveal
 * ============================================================ */

.wefpp-rel {
    padding: 80px 0;
}

.wefpp-rel__header {
    margin-bottom: 56px;
    max-width: 720px;
}

.wefpp-rel__eyebrow {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-subtle);
    margin-bottom: 16px;
}

.wefpp-rel__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.2px;
    color: var(--wefpp-text);
    margin: 0;
}

.wefpp-rel-title--serif .wefpp-rel__title {
    font-family: var(--wefpp-font-serif);
    font-weight: 400;
    letter-spacing: -1px;
}

.wefpp-rel-title--mixed .wefpp-rel__title em,
.wefpp-rel-title--mixed .wefpp-rel__title i {
    font-family: var(--wefpp-font-serif);
    font-style: italic;
    font-weight: 400;
}

.wefpp-rel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 56px;
}

.wefpp-rel-card {
    display: flex;
    flex-direction: column;
    /* Stagger reveal */
    transition: transform var(--wefpp-duration-mid) var(--wefpp-ease-soft);
}

.wefpp-rel-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wefpp-rel-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--wefpp-bg-soft);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wefpp-rel-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity var(--wefpp-duration-mid) var(--wefpp-ease-out),
                transform 1s var(--wefpp-ease-soft);
}

.wefpp-rel-card__img--main {
    position: relative;
}

.wefpp-rel-card__img--hover {
    position: absolute;
    inset: 32px;
    opacity: 0;
}

.wefpp-rel-card__link:hover .wefpp-rel-card__img--main {
    opacity: 0;
    transform: scale(1.05);
}

.wefpp-rel-card__link:hover .wefpp-rel-card__img--hover {
    opacity: 1;
}

/* If no hover image, just zoom main */
.wefpp-rel-card__link:not(:has(.wefpp-rel-card__img--hover)):hover .wefpp-rel-card__img--main {
    opacity: 1;
    transform: scale(1.06);
}

/* Badge */
.wefpp-rel-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    background: var(--wefpp-text);
    color: #fafaf8;
}

.wefpp-rel-card__badge--sale {
    background: var(--wefpp-sale);
}

.wefpp-rel-card__badge--new {
    background: var(--wefpp-text);
}

/* Meta */
.wefpp-rel-card__meta {
    padding: 0 4px;
}

.wefpp-rel-card__title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.1px;
    color: var(--wefpp-text);
    margin: 0 0 6px;
}

.wefpp-rel-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
}

.wefpp-rel-card__title a:hover {
    color: var(--wefpp-text-muted);
}

.wefpp-rel-card__price {
    font-size: 13px;
    font-weight: 500;
    color: var(--wefpp-text);
    letter-spacing: -0.1px;
}

.wefpp-rel-card__price del {
    color: var(--wefpp-text-faint);
    margin-right: 6px;
    font-weight: 400;
}

.wefpp-rel-card__price ins {
    text-decoration: none;
    color: var(--wefpp-sale);
}

/* ============================================================
 * 7. CATEGORY SHOWCASE — Premium card with arrow
 * ============================================================ */

.wefpp-cat {
    padding: 80px 0;
}

.wefpp-cat__header {
    margin-bottom: 56px;
    max-width: 720px;
}

.wefpp-cat__eyebrow {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-subtle);
    margin-bottom: 16px;
}

.wefpp-cat__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.2px;
    color: var(--wefpp-text);
    margin: 0;
}

.wefpp-cat-title--serif .wefpp-cat__title {
    font-family: var(--wefpp-font-serif);
    font-weight: 400;
    letter-spacing: -1px;
}

.wefpp-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.wefpp-cat-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform var(--wefpp-duration-mid) var(--wefpp-ease-soft);
}

.wefpp-cat-card:hover {
    transform: translateY(-4px);
}

.wefpp-cat-card__visual {
    position: relative;
    aspect-ratio: 5 / 4;
    background: var(--wefpp-bg-soft);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    margin-bottom: 20px;
}

.wefpp-cat-card__img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 1s var(--wefpp-ease-soft);
}

.wefpp-cat-card:hover .wefpp-cat-card__img {
    transform: scale(1.06);
}

/* Hover overlay - subtle darken */
.wefpp-cat-card__hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.04) 100%);
    opacity: 0;
    transition: opacity var(--wefpp-duration-mid) var(--wefpp-ease-snappy);
    pointer-events: none;
}

.wefpp-cat-card:hover .wefpp-cat-card__hover-overlay {
    opacity: 1;
}

.wefpp-cat-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.wefpp-cat-card__text {
    flex: 1;
}

.wefpp-cat-card__label {
    font-size: 16px;
    font-weight: 500;
    color: var(--wefpp-text);
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
}

.wefpp-cat-card__subtitle {
    font-size: 12px;
    color: var(--wefpp-text-muted);
    letter-spacing: 0.1px;
    line-height: 1.4;
}

.wefpp-cat-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--wefpp-border);
    border-radius: 50%;
    color: var(--wefpp-text);
    flex-shrink: 0;
    transition: background var(--wefpp-duration-mid) var(--wefpp-ease-out),
                color var(--wefpp-duration-mid) var(--wefpp-ease-out),
                border-color var(--wefpp-duration-mid) var(--wefpp-ease-out);
    overflow: hidden;
}

.wefpp-cat-card:hover .wefpp-cat-card__arrow {
    background: var(--wefpp-text);
    color: #fafaf8;
    border-color: var(--wefpp-text);
}

.wefpp-cat-card__arrow svg {
    transition: transform var(--wefpp-duration-mid) var(--wefpp-ease-out);
}

.wefpp-cat-card:hover .wefpp-cat-card__arrow svg {
    transform: translateX(2px);
}

/* ============================================================
 * 8. PRODUCT GALLERY
 * ============================================================ */

.wefpp-gal {
    position: relative;
}

.wefpp-gal__main-wrap {
    position: relative;
}

.wefpp-gal__main {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--wefpp-bg-soft);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.wefpp-gal__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    transition: opacity var(--wefpp-duration-mid) var(--wefpp-ease-out),
                transform var(--wefpp-duration-mid) var(--wefpp-ease-out);
    cursor: zoom-in;
}

.wefpp-gal__img.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

/* Counter overlay */
.wefpp-gal__count {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 11px;
    color: var(--wefpp-text-muted);
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
    background: rgba(255,255,255,0.6);
    padding: 6px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

/* Counter position modifiers */
.wefpp-gal-count--br .wefpp-gal__count { bottom: 24px; right: 24px; left: auto; top: auto; transform: none; }
.wefpp-gal-count--bl .wefpp-gal__count { bottom: 24px; left: 24px; right: auto; top: auto; transform: none; }
.wefpp-gal-count--tr .wefpp-gal__count { top: 24px; right: 24px; left: auto; bottom: auto; transform: none; }
.wefpp-gal-count--tl .wefpp-gal__count { top: 24px; left: 24px; right: auto; bottom: auto; transform: none; }
.wefpp-gal-count--bc .wefpp-gal__count { bottom: 24px; left: 50%; right: auto; top: auto; transform: translateX(-50%); }

/* Nav arrows */
.wefpp-gal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wefpp-text);
    transition: all var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
    z-index: 2;
    backdrop-filter: blur(8px);
    opacity: 0;
}

.wefpp-gal:hover .wefpp-gal__nav {
    opacity: 1;
}

.wefpp-gal__nav:hover {
    background: var(--wefpp-text);
    color: #fafaf8;
}

.wefpp-gal__nav--prev { left: 16px; }
.wefpp-gal__nav--next { right: 16px; }

/* Dots indicator */
.wefpp-gal__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.wefpp-gal__dot {
    width: 24px;
    height: 2px;
    background: var(--wefpp-border);
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background var(--wefpp-duration-fast) var(--wefpp-ease-snappy),
                width var(--wefpp-duration-mid) var(--wefpp-ease-out);
}

.wefpp-gal__dot.is-active {
    background: var(--wefpp-text);
    width: 36px;
}

.wefpp-gal__dot:hover {
    background: var(--wefpp-text-muted);
}

/* Thumbnail strip */
.wefpp-gal__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.wefpp-gal__thumb {
    width: 64px;
    height: 64px;
    border: 1px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    background: var(--wefpp-bg-soft);
    padding: 0;
    transition: border-color var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
}

.wefpp-gal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    box-sizing: border-box;
}

.wefpp-gal__thumb:hover { border-color: var(--wefpp-border); }
.wefpp-gal__thumb.is-active { border-color: var(--wefpp-text); }

/* Side thumbs */
.wefpp-gal-thumbs--left {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
}

.wefpp-gal-thumbs--left .wefpp-gal__thumbs {
    flex-direction: column;
    margin-top: 0;
    order: -1;
}

/* Lightbox/Zoom Modal */
.wefpp-gal__lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--wefpp-duration-mid) var(--wefpp-ease-out);
    backdrop-filter: blur(20px);
}

.wefpp-gal__lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.wefpp-gal__lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.96);
    transition: transform var(--wefpp-duration-mid) var(--wefpp-ease-out);
}

.wefpp-gal__lightbox.is-open img {
    transform: scale(1);
}

.wefpp-gal__lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 0;
    border-radius: 50%;
    color: #fafaf8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--wefpp-duration-fast) var(--wefpp-ease-snappy);
}

.wefpp-gal__lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

/* ============================================================
 * 9. RESPONSIVE
 * ============================================================ */

@media (max-width: 1200px) {
    .wefpp-hero { gap: 64px; grid-template-columns: var(--wefpp-hero-image-col, 56%) 1fr; }
    .wefpp-hero__title { font-size: 56px; }
    .wefpp-hero__image-wrap { padding: 64px; }
    .wefpp-rel-grid,
    .wefpp-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .wefpp-hero {
        grid-template-columns: var(--wefpp-hero-image-col, 50%) 1fr;
        gap: 48px;
    }

    .wefpp-hero__title { font-size: 44px; letter-spacing: -1px; }
    .wefpp-hero__image-wrap { padding: 48px; }
    .wefpp-rel__title,
    .wefpp-cat__title { font-size: 36px; }
    .wefpp-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wefpp-trust--divided .wefpp-trust-item:nth-child(2) { border-right: 0; }
    .wefpp-rel-grid,
    .wefpp-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; row-gap: 40px; }
    .wefpp-info__title { font-size: 28px; }
}

@media (max-width: 767px) {
    .wefpp-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wefpp-hero__media--sticky {
        position: static;
    }

    .wefpp-hero__title {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .wefpp-hero__short-desc { font-size: 15px; }

    .wefpp-hero__price { font-size: 24px; }

    .wefpp-hero__image-wrap { padding: 32px; aspect-ratio: 1 / 1; }

    .wefpp-btn-cart { height: 56px; font-size: 12px; letter-spacing: 1.2px; }

    .wefpp-trust-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wefpp-trust--divided .wefpp-trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--wefpp-border);
        padding: 20px 0;
    }
    .wefpp-trust--divided .wefpp-trust-item:last-child { border-bottom: 0; }

    .wefpp-trust--cards .wefpp-trust-item { margin-right: 0; margin-bottom: 12px; }

    .wefpp-rel { padding: 56px 0; }
    .wefpp-cat { padding: 56px 0; }

    .wefpp-rel__title,
    .wefpp-cat__title {
        font-size: 28px;
        letter-spacing: -0.6px;
    }

    .wefpp-rel__header,
    .wefpp-cat__header { margin-bottom: 32px; }

    .wefpp-rel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 12px;
        row-gap: 32px;
    }

    .wefpp-cat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wefpp-rel-card__img-wrap,
    .wefpp-cat-card__visual {
        padding: 16px;
    }

    .wefpp-info__title { font-size: 24px; }
    .wefpp-info__list li { font-size: 15px; padding: 12px 0; }

    .wefpp-acc__btn { padding: 24px 0; font-size: 15px; }
    .wefpp-acc__panel-inner { padding: 0 0 24px 32px; }

    .wefpp-gal__main { padding: 32px; }
    .wefpp-gal__nav { width: 40px; height: 40px; opacity: 1; }
    .wefpp-gal__nav--prev { left: 8px; }
    .wefpp-gal__nav--next { right: 8px; }
}

/* ============================================================
 * 10. PRINT
 * ============================================================ */
@media print {
    .wefpp-btn-cart, .wefpp-btn-paypal, .wefpp-gal__nav, .wefpp-gal__dots {
        display: none !important;
    }
}

/* ============================================================
 * 11. REDUCED MOTION (accessibility)
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
 * 12. RATING (added v1.1.0 — Hero merge)
 * ============================================================ */
.wefpp-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.wefpp-rating__stars {
    display: inline-flex;
    gap: 2px;
    color: #e8e4dd;
}

.wefpp-rating__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.wefpp-rating__star--active {
    color: #0a0a0a;
}

.wefpp-rating__star--half {
    color: #0a0a0a;
}

.wefpp-rating__count {
    font-size: 13px;
    color: var(--wefpp-text-muted);
    text-decoration: none;
    transition: color var(--wefpp-duration-mid) var(--wefpp-ease-snappy);
}

.wefpp-rating__count:hover {
    color: var(--wefpp-text);
}

/* ============================================================
 * 13. STOCK INDICATOR (added v1.1.0 — Hero merge)
 * ============================================================ */
.wefpp-stock {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.wefpp-stock__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.wefpp-stock--in {
    color: #1f7a3f;
}

.wefpp-stock--low {
    color: #9a6311;
}

.wefpp-stock--out {
    color: #a8001f;
}

/* ============================================================
 * 14. VARIATIONS FORM (added v1.1.0 — Hero merge)
 * ============================================================ */
.wefpp-var {
    display: block;
    margin-bottom: 24px;
}

.wefpp-var__row {
    display: block;
}

.wefpp-var__row + .wefpp-var__row {
    margin-top: 12px;
}

.wefpp-var__label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wefpp-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.wefpp-var__select {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--wefpp-text);
    background: #fafaf8;
    border: 1px solid var(--wefpp-border);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230a0a0a' stroke-width='1.25' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    transition: border-color var(--wefpp-duration-mid) var(--wefpp-ease-snappy);
}

.wefpp-var__select:hover,
.wefpp-var__select:focus {
    border-color: var(--wefpp-text);
    outline: none;
}

.wefpp-var__reset {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--wefpp-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.wefpp-var__reset:hover {
    color: var(--wefpp-text);
}

/* WooCommerce variation form integration — keep our flat row look while using .variations table */
.wefpp-var .variations {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.wefpp-var .variations th,
.wefpp-var .variations td {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    vertical-align: top;
}

.wefpp-var .variations tr {
    display: block;
    margin-bottom: 12px;
}

.wefpp-var .variations tr:last-child {
    margin-bottom: 0;
}

.wefpp-var .variations th {
    display: block;
}

.wefpp-var .variations td.value {
    display: block;
    margin-top: 0;
}

/* WooCommerce single_variation block (price/availability shown after variation selected) */
.wefpp-var .single_variation {
    margin-top: 16px;
}

.wefpp-var .single_variation .price,
.wefpp-var .single_variation-add-to-cart {
    margin-bottom: 0;
}

.wefpp-var .stock {
    font-size: 13px;
    color: var(--wefpp-text-muted);
    margin-top: 8px;
}

.wefpp-var .stock.in-stock {
    color: #1f7a3f;
}

.wefpp-var .stock.out-of-stock {
    color: #a8001f;
}

.wefpp-var .woocommerce-variation-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--wefpp-text);
    margin-top: 12px;
}

/* ============================================================
 * 15. PREMIUM REVIEWS — Style C (added v1.2.0)
 * ============================================================ */
.wefpp-rev {
    color: var(--wefpp-text);
}

.wefpp-rev__header {
    margin-bottom: 56px;
}

.wefpp-rev__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-muted);
    margin-bottom: 16px;
}

.wefpp-rev__title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--wefpp-text);
}

.wefpp-rev-title--serif .wefpp-rev__title {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    letter-spacing: -1.2px;
}

/* Top container: summary + featured */
.wefpp-rev__top {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    background: #fafaf8;
    border-radius: 4px;
    padding: 48px;
}

/* Summary (left) */
.wefpp-rev__summary {
    border-right: 1px solid var(--wefpp-border);
    padding-right: 32px;
}

.wefpp-rev__avg {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    color: var(--wefpp-text);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.wefpp-rev__avg-stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 12px;
}

.wefpp-rev__avg-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-muted);
}

.wefpp-rev__distribution {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
}

.wefpp-rev__bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--wefpp-text-muted);
    font-variant-numeric: tabular-nums;
}

.wefpp-rev__bar-num {
    width: 12px;
    text-align: center;
}

.wefpp-rev__bar {
    flex: 1;
    height: 4px;
    background: #f0ece4;
    border-radius: 2px;
    overflow: hidden;
}

.wefpp-rev__bar-fill {
    display: block;
    height: 100%;
    background: var(--wefpp-text);
    border-radius: 2px;
    transition: width 0.6s var(--wefpp-ease-snappy);
}

.wefpp-rev__bar-pct {
    width: 32px;
    text-align: right;
}

/* Featured quote (right) */
.wefpp-rev__featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wefpp-rev__featured-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-muted);
    margin-bottom: 16px;
}

.wefpp-rev__featured-stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 16px;
}

.wefpp-rev__featured-quote {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: var(--wefpp-text);
    margin: 0 0 24px;
}

.wefpp-rev__featured-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--wefpp-text);
}

.wefpp-rev__featured-sub {
    font-size: 12px;
    color: var(--wefpp-text-muted);
    margin-top: 2px;
}

/* Empty state */
.wefpp-rev__empty {
    padding: 48px;
    text-align: center;
    color: var(--wefpp-text-muted);
    background: #fafaf8;
    border-radius: 4px;
    font-size: 14px;
}

/* Reviews list (below top) */
.wefpp-rev__list {
    margin-top: 64px;
}

.wefpp-rev__item {
    padding: 32px 0;
    border-bottom: 1px solid var(--wefpp-border);
}

.wefpp-rev__item:last-child {
    border-bottom: 0;
}

.wefpp-rev__item .wefpp-rev-stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 12px;
}

.wefpp-rev__item-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--wefpp-text);
    margin: 0 0 12px;
}

.wefpp-rev__item-meta {
    font-size: 12px;
    color: var(--wefpp-text-muted);
    letter-spacing: 0.3px;
}

.wefpp-rev__item-author {
    color: var(--wefpp-text);
    font-weight: 500;
}

/* Review form wrapper */
.wefpp-rev__form-wrap {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--wefpp-border);
}

/* Stars (shared) */
.wefpp-rev-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: #e8e4dd;
}

.wefpp-rev-star--active,
.wefpp-rev-star--half {
    color: var(--wefpp-text);
}

/* ============================================================
 * 16. PREMIUM DESCRIPTION — Style B Spec Sheet (added v1.2.0)
 * ============================================================ */
.wefpp-desc {
    color: var(--wefpp-text);
}

.wefpp-desc__header {
    margin-bottom: 56px;
}

.wefpp-desc__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-muted);
    margin-bottom: 16px;
}

.wefpp-desc__title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--wefpp-text);
}

.wefpp-desc-title--serif .wefpp-desc__title {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    letter-spacing: -1.2px;
}

/* Intro */
.wefpp-desc__intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--wefpp-text);
    max-width: 720px;
    margin-bottom: 48px;
}

.wefpp-desc__intro p {
    margin: 0 0 1em;
}

.wefpp-desc__intro p:last-child {
    margin-bottom: 0;
}

/* Spec sheet container */
.wefpp-desc__specs {
    background: #fafaf8;
    border-radius: 4px;
    overflow: hidden;
}

.wefpp-desc__spec-head {
    padding: 16px 32px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wefpp-text-muted);
    border-bottom: 1px solid var(--wefpp-border);
}

.wefpp-desc__spec-list {
    display: flex;
    flex-direction: column;
}

.wefpp-desc__spec-row {
    display: flex;
    align-items: baseline;
    padding: 20px 32px;
    border-bottom: 1px solid var(--wefpp-border);
    transition: background-color var(--wefpp-duration-mid) var(--wefpp-ease-snappy);
}

.wefpp-desc__spec-row:last-child {
    border-bottom: 0;
}

.wefpp-desc__spec-row:hover {
    background-color: #f5f3ee;
}

.wefpp-desc__spec-label {
    flex: 0 0 220px;
    font-size: 13px;
    color: var(--wefpp-text-muted);
}

.wefpp-desc__spec-value {
    flex: 1;
    font-size: 14px;
    color: var(--wefpp-text);
}

/* ============================================================
 * 17. RESPONSIVE — Reviews + Description (v1.2.0)
 * ============================================================ */
@media (max-width: 1024px) {
    .wefpp-rev__top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    .wefpp-rev__summary {
        border-right: 0;
        border-bottom: 1px solid var(--wefpp-border);
        padding-right: 0;
        padding-bottom: 32px;
    }
    .wefpp-rev__title,
    .wefpp-desc__title { font-size: 36px; }
}

@media (max-width: 767px) {
    .wefpp-rev__top { padding: 24px; }
    .wefpp-rev__avg { font-size: 48px; }
    .wefpp-rev__featured-quote { font-size: 18px; }

    .wefpp-desc__spec-row {
        flex-direction: column;
        gap: 4px;
        padding: 16px 20px;
    }
    .wefpp-desc__spec-label {
        flex: 0 0 auto;
    }
    .wefpp-desc__spec-head {
        padding: 12px 20px;
    }

    .wefpp-rev__title,
    .wefpp-desc__title { font-size: 28px; }
}
