/* ============================================================================
   Batch 2A — Cart reset buttons + signed-in footer
   ========================================================================== */

/* Top X-style button next to cart title */
.cpp-cartpage__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.cpp-cart-reset-top {
    margin: 0;
}
.cpp-cart-reset-top__btn {
    background: transparent;
    border: 2px solid #c61b6f;
    color: #c61b6f;
    padding: 0.45rem 0.9rem;
    font: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s, color 0.15s;
}
.cpp-cart-reset-top__btn:hover {
    background: #c61b6f;
    color: #fff;
}
.cpp-cart-reset-top__btn:focus {
    outline: 3px solid #ffd000;
    outline-offset: 2px;
}
.cpp-cart-reset-top__lbl {
    font-size: 0.78rem;
}

/* Bottom subtle link */
.cpp-cart-reset-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #ccc;
    text-align: right;
}
.cpp-cart-reset-bottom form {
    margin: 0;
    display: inline;
}
.cpp-cart-reset-bottom__link {
    background: none;
    border: none;
    color: #888;
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0.3rem 0;
}
.cpp-cart-reset-bottom__link:hover {
    color: #c61b6f;
}

/* Signed-in footer enhancements */
.cpp-footer__greeting {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    color: #ffd000;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}
.cpp-footer__signed-in-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: rgba(255, 250, 240, 0.6);
    margin-left: 0.5rem;
}
.cpp-footer__signed-in-line a {
    color: rgba(255, 250, 240, 0.8);
    text-decoration: underline;
}
.cpp-footer__signed-in-line a:hover {
    color: #ffd000;
}
