:root {
    color-scheme: light;
    --grp-bg: #f5f7fa;
    --grp-surface: #ffffff;
    --grp-surface-alt: #f0f2f5;
    --grp-surface-hover: #e8ebef;
    --grp-text: #1f252e;
    --grp-muted: #5d6774;
    --grp-border: #d8dde6;
    --grp-accent: #8bc53e;
    --grp-accent-strong: #6aa12a;
    --grp-radius: 12px;
}

img,
video {
    max-width: 100%;
    height: auto;
}

input,
select,
textarea,
button {
    font: inherit;
}

.subscription-modal,
.subscription-modal-body,
.cookie-window,
.grp-cookie {
    color: var(--grp-text);
}

.subscription-modal,
.subscription-result,
.rb-subscription {
    background: var(--grp-surface);
    border: 1px solid var(--grp-border);
    border-radius: var(--grp-radius);
}

/* ── Checkout Deal Info ── */
.checkout-head {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
    height: auto !important;
    padding: 12px !important;
    background: var(--grp-surface) !important;
    border: 1px solid var(--grp-border);
    border-radius: var(--grp-radius);
    box-shadow: none !important;
}

.checkout-deal-image {
    flex-shrink: 0;
    width: 220px !important;
    height: auto !important;
    float: none !important;
    background: none !important;
}

.checkout-deal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.checkout-details {
    flex: 1;
    float: none !important;
    width: auto !important;
    padding: 4px 0 0 0 !important;
}

.checkout-details h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--grp-text);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.dealInfoPriceArea {
    font-size: 13px;
    color: var(--grp-accent-strong) !important;
}

/* ── Breadcrumbs — chevron style ── */
.breadCrumbs.bc-chevron {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
}
.breadCrumbs.bc-chevron a {
    color: #555;
    text-decoration: none;
    float: none;
}
.breadCrumbs.bc-chevron a:hover {
    color: #129ead;
}
.breadCrumbs.bc-chevron .bc-current {
    color: #999;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 350px;
}

/* Chevron between items */
.breadCrumbs.bc-chevron a + a::before,
.breadCrumbs.bc-chevron a + .bc-current::before {
    content: '\203A';
    color: #bbb;
    font-size: 16px;
    font-weight: 300;
    margin: 0 8px;
}

/* Home icon */
.breadCrumbs.bc-chevron .bc-home {
    display: inline-flex;
    align-items: center;
}
.breadCrumbs.bc-chevron .bc-home::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
