/* Oishya — Currency suggestion banner */

.oishya-currency-prompt {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999990; /* below WC notices (1000000) but above most content */
    background: #f4ede1;
    color: #2b2b2b;
    border-top: 1px solid #e5dcc8;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.25s ease-out;
    font-family: Graphik, sans-serif;
}

.oishya-currency-prompt.is-open {
    transform: translateY(0);
}

.oishya-currency-prompt__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 14px 56px 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.oishya-currency-prompt__msg {
    margin: 0;
    flex: 1 1 280px;
    font-size: 15px;
    line-height: 1.4;
}

.oishya-currency-prompt__msg strong {
    font-weight: 600;
}

.oishya-currency-prompt__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.oishya-currency-prompt__accept,
.oishya-currency-prompt__stay {
    appearance: none;
    border: 1px solid #2b2b2b;
    background: transparent;
    color: #2b2b2b;
    padding: 8px 18px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0;
    line-height: 1.2;
    transition: background-color 0.15s, color 0.15s;
}

.oishya-currency-prompt__accept {
    background: #2b2b2b;
    color: #fffcfa;
}

.oishya-currency-prompt__accept:hover,
.oishya-currency-prompt__accept:focus {
    background: #1a1a1a;
}

.oishya-currency-prompt__stay:hover,
.oishya-currency-prompt__stay:focus {
    background: #2b2b2b;
    color: #fffcfa;
}

.oishya-currency-prompt__close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    appearance: none;
    border: 0;
    background: transparent;
    color: #2b2b2b;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
    opacity: 0.6;
}

.oishya-currency-prompt__close:hover,
.oishya-currency-prompt__close:focus {
    opacity: 1;
}

@media (max-width: 600px) {
    .oishya-currency-prompt__inner {
        padding: 12px 44px 12px 16px;
        gap: 10px;
    }
    .oishya-currency-prompt__msg {
        flex: 1 1 100%;
        font-size: 14px;
    }
    .oishya-currency-prompt__actions {
        width: 100%;
    }
    .oishya-currency-prompt__accept,
    .oishya-currency-prompt__stay {
        flex: 1;
        padding: 10px 12px;
    }
    .oishya-currency-prompt__close {
        top: 12px;
        right: 12px;
        transform: none;
    }
}
