/**
 * Sitewide cart drawer + header cart control.
 * Header button matches TripWays Theme .tripways-theme-toggle (44px circular).
 */

/* Header cart (next to dark/light toggle) */
.tripways-header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 50%;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.tripways-header-cart:focus-visible {
    outline: 2px solid var(--wp--preset--color--primary, #2563eb);
    outline-offset: 2px;
}
.tripways-header-cart__icon {
    display: block;
    line-height: 0;
}
.tripways-header-cart__icon svg {
    display: block;
}
.tripways-header-cart__badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.02em;
    box-sizing: border-box;
    pointer-events: none;
}
.tripways-header-cart__badge[hidden] {
    display: none !important;
}

/* Tour cart panel (same shell as the retired cashback drawer; z-index below #wpadminbar 99999) */
.tripways-tour-cart-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99910;
    width: 100%;
    pointer-events: none;
    font-size: 14px;
}
.tripways-tour-cart-panel__toggle {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    border: 0;
    background: #0f172a;
    color: #fff;
    border-radius: 10px 0 0 10px;
    padding: 10px 10px 10px 12px;
    display: none;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 99920;
    pointer-events: auto;
    max-width: min(120px, 36vw);
    text-align: left;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 700;
}
.tripways-tour-cart-panel--has-edge .tripways-tour-cart-panel__toggle {
    display: inline-flex;
}
.tripways-tour-cart-panel.is-open .tripways-tour-cart-panel__toggle {
    z-index: 99880;
}
.tripways-tour-cart-panel__toggle-label {
    display: block;
}
.tripways-tour-cart-panel__toggle-badge {
    flex-shrink: 0;
    min-width: 28px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    box-sizing: border-box;
}
.tripways-tour-cart-panel__toggle-icon {
    display: block;
}
.tripways-tour-cart-panel__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease;
    z-index: 99890;
    pointer-events: none;
}
.tripways-tour-cart-panel__body {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(420px, 38vw);
    min-width: 320px;
    max-height: 100vh;
    max-height: 100dvh;
    background: #fafbfc;
    border-left: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: -12px 0 36px rgba(15, 23, 42, 0.16);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 99900;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
body.admin-bar .tripways-tour-cart-panel__body {
    top: 32px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
}
body.admin-bar .tripways-tour-cart-panel__toggle {
    top: calc(32px + (100vh - 32px) * 0.45);
    transform: translateY(-50%);
}
@media screen and (max-width: 782px) {
    body.admin-bar .tripways-tour-cart-panel__body {
        top: 46px;
        max-height: calc(100vh - 46px);
        max-height: calc(100dvh - 46px);
    }
    body.admin-bar .tripways-tour-cart-panel__toggle {
        top: calc(46px + (100vh - 46px) * 0.45);
    }
}
.tripways-tour-cart-panel.is-open .tripways-tour-cart-panel__body {
    transform: translateX(0);
}
.tripways-tour-cart-panel.is-open .tripways-tour-cart-panel__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.tripways-tour-cart-panel__head {
    padding: 16px 16px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}
.tripways-tour-cart-panel__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.tripways-tour-cart-panel__close {
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
    padding: 0 0 0 8px;
}
.tripways-tour-cart-panel__content {
    padding: 16px 16px 12px;
    overflow: auto;
    flex: 1 1 auto;
}
.tripways-tour-cart-panel__lead {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
}
.tripways-tour-cart-panel__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}
.tripways-tour-cart-panel__thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
    background: #f0f0f1;
}
.tripways-tour-cart-panel__copy {
    min-width: 0;
    flex: 1 1 auto;
}
.tripways-tour-cart-panel__item-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 4px;
    color: #0f172a;
}
.tripways-tour-cart-panel__meta {
    font-size: 13px;
    color: #64748b;
}
.tripways-tour-cart-panel__total {
    margin-top: 6px;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
}
.tripways-tour-cart-panel__discard {
    display: inline-flex;
    margin: 0 0 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tripways-tour-cart-panel__discard:hover {
    color: #0f172a;
}
.tripways-tour-cart-panel__footer {
    padding: 12px 16px 16px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}
.tripways-tour-cart-panel__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    border: 0;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}
.tripways-tour-cart-panel__cta--primary {
    background: #0a7d43;
    color: #fff;
}
.tripways-tour-cart-panel__cta--primary:hover {
    background: #086637;
}

@media (max-width: 980px) {
    .tripways-tour-cart-panel.is-open .tripways-tour-cart-panel__toggle {
        z-index: 99880;
    }
    .tripways-tour-cart-panel__body {
        width: 100%;
        min-width: 0;
        border-left: 0;
    }
}
