/* ============================================================
   Starbucks Secret Menu — "Barista Label" Style
   Goal: Make WPRM cards in the Starbucks category look like 
   the iconic thermal cup stickers.
   ============================================================ */

.ttb-starbucks-label {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important; /* Labels are sharp-edged */
    padding: 1.5rem !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05) !important;
    position: relative;
    font-family: 'Courier New', Courier, monospace !important; /* Thermal printer vibe */
    color: #1a1a1a !important;
    max-width: 450px;
    margin: 2.5rem auto !important;
}

/* The blue thermal "ink" look for some elements */
.ttb-starbucks-label .wprm-recipe-name {
    font-family: 'Courier New', Courier, monospace !important;
    text-transform: uppercase;
    font-weight: 900 !important;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 0.5rem;
    color: #000 !important;
}

.ttb-starbucks-label .wprm-recipe-header {
    border-bottom: 1px solid #000 !important;
    color: #000 !important;
    font-size: 12px !important;
}

/* The "Show Your Barista" Button */
.ttb-barista-view-trigger {
    display: block;
    width: 100%;
    background: #00704a !important; /* Starbucks Green */
    color: #fff !important;
    text-align: center;
    padding: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    border: none;
    font-family: "Schibsted Grotesk", sans-serif;
}

.ttb-barista-view-trigger:hover {
    background: #00593b !important;
}

/* Barista View Modal */
#ttb-barista-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #fff;
    z-index: 99999;
    padding: 2rem;
    overflow-y: auto;
}

#ttb-barista-modal.is-active {
    display: block;
}

.ttb-barista-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.ttb-barista-modal__content h2 {
    color: #00704a;
    margin-bottom: 1rem;
}

.ttb-barista-modal__instructions {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
}
