/**
 * Floating Mini-Cart
 *
 * Fixed-position cart icon — top-right, below the sticky header.
 * Brand colors: dark green tone (#233C26) background, yellow (#FFAE40) badge.
 *
 * Desktop: 64×64 px circle, 28 px icon.
 * Mobile:  56×56 px circle, 24 px icon.
 * Both exceed the 44×44 minimum touch target (SC 2.5.5).
 *
 * WCAG 2.1 AA:
 *   - White icon on #233C26 = 12.02:1 contrast ratio ✅
 *   - Black text on #FFAE40 badge = 11.38:1 contrast ratio ✅
 *   - Focus ring: 2px solid #567915, 2px offset — 3:1+ against backgrounds ✅
 *   - prefers-reduced-motion: animations disabled ✅
 */

/* ─────────────────────────────────────────────────────────────────────────────
   CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */
.plgc-mini-cart {
    position: fixed;
    /* 103px header + 65px clear gap below nav */
    top: 168px;
    right: 24px;
    z-index: 9999;
    transition: opacity 250ms ease-in-out, transform 250ms ease-in-out;
}

/* WP admin bar shifts the sticky header down 32px */
body.admin-bar .plgc-mini-cart {
    top: 200px;
}

.plgc-mini-cart--hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LINK (the clickable circle)
   ───────────────────────────────────────────────────────────────────────────── */
.plgc-mini-cart__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #233C26;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.12);
    transition: background-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}

.plgc-mini-cart__link:hover {
    background-color: #2D5032;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.plgc-mini-cart__link:focus-visible {
    outline: 2px solid #567915;
    outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ICON
   ───────────────────────────────────────────────────────────────────────────── */
.plgc-mini-cart__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   COUNT BADGE
   ───────────────────────────────────────────────────────────────────────────── */
.plgc-mini-cart__count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    background-color: #FFAE40;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PULSE ANIMATION — on AJAX cart update
   ───────────────────────────────────────────────────────────────────────────── */
.plgc-mini-cart--pulse .plgc-mini-cart__link {
    animation: plgc-cart-pulse 400ms ease-out;
}

@keyframes plgc-cart-pulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .plgc-mini-cart {
        top: 140px;
        right: 20px;
    }
    body.admin-bar .plgc-mini-cart {
        top: 172px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .plgc-mini-cart {
        top: 110px;
        right: 16px;
    }
    body.admin-bar .plgc-mini-cart {
        /* WP mobile admin bar is 46px */
        top: 156px;
    }

    /* Slightly smaller on mobile — still well above 44px minimum */
    .plgc-mini-cart__link {
        width: 56px;
        height: 56px;
    }

    .plgc-mini-cart__icon {
        width: 24px;
        height: 24px;
    }

    .plgc-mini-cart__count {
        min-width: 22px;
        height: 22px;
        padding: 0 5px;
        border-radius: 11px;
        font-size: 0.75rem;
        line-height: 22px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .plgc-mini-cart {
        transition: none;
    }
    .plgc-mini-cart--pulse .plgc-mini-cart__link {
        animation: none;
    }
}
