:root {
    --cc-rc-safe-bottom: env(safe-area-inset-bottom, 0px);
}

html.cc-rc-lock,
html.cc-rc-lock body {
    overflow: hidden !important;
    overscroll-behavior: none;
}

.cc-rc-root {
    --cc-rc-primary: #ff6b35;
    --cc-rc-secondary: #7c3aed;
    --cc-rc-width: 470px;
    --cc-rc-blur: 18px;
    --cc-rc-radius: 24px;
    --cc-rc-bg: rgba(250, 250, 253, .88);
    --cc-rc-bg-solid: #fafafd;
    --cc-rc-surface: rgba(255, 255, 255, .48);
    --cc-rc-surface-strong: rgba(255, 255, 255, .72);
    --cc-rc-soft: rgba(17, 24, 39, .045);
    --cc-rc-line: rgba(17, 24, 39, .09);
    --cc-rc-line-strong: rgba(17, 24, 39, .14);
    --cc-rc-text: #111827;
    --cc-rc-muted: #6b7280;
    --cc-rc-success: #14a05a;
    --cc-rc-danger: #dc3d4b;
    --cc-rc-shadow: -28px 0 90px rgba(12, 16, 32, .21);
    position: fixed;
    inset: 0;
    z-index: 9999992;
    width: 0;
    height: 0;
    direction: rtl;
    font-family: inherit;
    color: var(--cc-rc-text);
    line-height: 1.6;
}

.cc-rc-root.cc-rc-theme-dark,
.cc-rc-root.cc-rc-dark {
    --cc-rc-bg: rgba(10, 13, 27, .88);
    --cc-rc-bg-solid: #0b0e1c;
    --cc-rc-surface: rgba(255, 255, 255, .055);
    --cc-rc-surface-strong: rgba(255, 255, 255, .09);
    --cc-rc-soft: rgba(255, 255, 255, .055);
    --cc-rc-line: rgba(255, 255, 255, .09);
    --cc-rc-line-strong: rgba(255, 255, 255, .16);
    --cc-rc-text: #f7f7fb;
    --cc-rc-muted: #a7adbe;
    --cc-rc-shadow: -32px 0 100px rgba(0, 0, 0, .54);
}

.cc-rc-root *,
.cc-rc-root *::before,
.cc-rc-root *::after {
    box-sizing: border-box;
}

.cc-rc-root button,
.cc-rc-root input,
.cc-rc-root a {
    font: inherit;
}

.cc-rc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 9, 18, .48);
    backdrop-filter: blur(7px) saturate(115%);
    -webkit-backdrop-filter: blur(7px) saturate(115%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .32s ease, visibility .32s ease;
}

.cc-rc-ambient {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
}

.cc-rc-ambient-one {
    right: 12vw;
    top: 9vh;
    background: var(--cc-rc-secondary);
}

.cc-rc-ambient-two {
    right: 5vw;
    bottom: 8vh;
    background: var(--cc-rc-primary);
}

.cc-rc-position-left .cc-rc-ambient-one,
.cc-rc-position-left .cc-rc-ambient-two {
    right: auto;
    left: 5vw;
}

.cc-rc-root.is-open .cc-rc-overlay,
.cc-rc-root.is-open .cc-rc-ambient {
    opacity: 1;
    visibility: visible;
}

.cc-rc-root.is-open .cc-rc-ambient { opacity: .16; }

.cc-rc-drawer {
    position: fixed;
    top: 14px;
    bottom: 14px;
    width: min(var(--cc-rc-width), calc(100vw - 22px));
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,.14), transparent 36%),
        var(--cc-rc-bg);
    border: 1px solid var(--cc-rc-line-strong);
    border-radius: var(--cc-rc-radius);
    box-shadow: var(--cc-rc-shadow), inset 0 1px 0 rgba(255,255,255,.24);
    backdrop-filter: blur(var(--cc-rc-blur)) saturate(145%);
    -webkit-backdrop-filter: blur(var(--cc-rc-blur)) saturate(145%);
    visibility: hidden;
    transition: transform .4s cubic-bezier(.2,.82,.2,1), visibility .4s ease, opacity .3s ease;
    opacity: .72;
}

.cc-rc-position-right .cc-rc-drawer {
    right: 14px;
    transform: translateX(calc(100% + 28px)) scale(.985);
}

.cc-rc-position-left .cc-rc-drawer {
    left: 14px;
    transform: translateX(calc(-100% - 28px)) scale(.985);
}

.cc-rc-root.is-open .cc-rc-drawer {
    transform: translateX(0) scale(1);
    visibility: visible;
    opacity: 1;
}

.cc-rc-content {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--cc-rc-line-strong) transparent;
}

.cc-rc-content::-webkit-scrollbar { width: 5px; }
.cc-rc-content::-webkit-scrollbar-thumb { background: var(--cc-rc-line-strong); border-radius: 10px; }

.cc-rc-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--cc-rc-line);
    background: linear-gradient(180deg, var(--cc-rc-bg-solid), rgba(250,250,253,.78));
    backdrop-filter: blur(calc(var(--cc-rc-blur) + 4px));
    -webkit-backdrop-filter: blur(calc(var(--cc-rc-blur) + 4px));
}

.cc-rc-theme-dark .cc-rc-header,
.cc-rc-dark .cc-rc-header {
    background: linear-gradient(180deg, #0b0e1c, rgba(11,14,28,.77));
}

.cc-rc-header-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.cc-rc-eyebrow {
    color: var(--cc-rc-primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .7px;
    direction: ltr;
    text-align: right;
}

.cc-rc-header strong {
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -.2px;
}

.cc-rc-header small {
    color: var(--cc-rc-muted);
    font-size: 11px;
}

.cc-rc-close {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--cc-rc-text);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.cc-rc-close:hover {
    background: var(--cc-rc-soft);
    transform: rotate(8deg);
}

.cc-rc-modules {
    padding-bottom: calc(8px + var(--cc-rc-safe-bottom));
}

.cc-rc-module {
    position: relative;
}

.cc-rc-module + .cc-rc-module {
    border-top: 1px solid var(--cc-rc-line);
}

.cc-rc-progress-wrap {
    padding: 17px 22px 18px;
    background:
        radial-gradient(circle at 86% 0, color-mix(in srgb, var(--cc-rc-primary) 14%, transparent), transparent 45%),
        transparent;
}

.cc-rc-progress-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cc-rc-progress-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    font-size: 18px;
}

.cc-rc-progress-copy > div {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.cc-rc-progress-copy strong {
    font-size: 12px;
    line-height: 1.7;
}

.cc-rc-progress-copy small {
    color: var(--cc-rc-muted);
    font-size: 10px;
}

.cc-rc-progress {
    height: 6px;
    overflow: hidden;
    border-radius: 99px;
    background: var(--cc-rc-soft);
}

.cc-rc-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cc-rc-primary), var(--cc-rc-secondary));
    box-shadow: 0 0 22px color-mix(in srgb, var(--cc-rc-primary) 55%, transparent);
    transition: width .45s cubic-bezier(.2,.8,.2,1);
}

.cc-rc-campaign {
    --cccp-campaign: #7c3aed;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin: 18px 20px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--cccp-campaign) 28%, var(--cc-rc-line));
    border-radius: calc(var(--cc-rc-radius) - 5px);
    background:
        linear-gradient(125deg, color-mix(in srgb, var(--cccp-campaign) 17%, var(--cc-rc-surface)), var(--cc-rc-surface));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.17), 0 16px 35px color-mix(in srgb, var(--cccp-campaign) 12%, transparent);
}

.cc-rc-campaign-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    left: -35px;
    top: -45px;
    border-radius: 50%;
    background: var(--cccp-campaign);
    filter: blur(48px);
    opacity: .25;
    pointer-events: none;
}

.cc-rc-campaign > div {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: grid;
    gap: 3px;
}

.cc-rc-campaign small {
    color: color-mix(in srgb, var(--cccp-campaign) 72%, var(--cc-rc-text));
    font-size: 10px;
    font-weight: 800;
}

.cc-rc-campaign strong { font-size: 14px; }
.cc-rc-campaign p { margin: 2px 0 0; color: var(--cc-rc-muted); font-size: 10px; line-height: 1.8; }

.cc-rc-copy-coupon {
    position: relative;
    z-index: 1;
    min-width: 88px;
    padding: 10px 12px;
    border: 1px dashed color-mix(in srgb, var(--cccp-campaign) 55%, var(--cc-rc-line));
    border-radius: 13px;
    background: rgba(255,255,255,.06);
    color: var(--cc-rc-text);
    cursor: pointer;
    display: grid;
    gap: 1px;
    text-align: center;
}

.cc-rc-copy-coupon span { font-weight: 900; direction: ltr; font-size: 12px; }
.cc-rc-copy-coupon small { font-size: 9px; }

.cc-rc-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    background:
        radial-gradient(circle at 8% 50%, color-mix(in srgb, var(--cc-rc-secondary) 18%, transparent), transparent 36%),
        transparent;
}

.cc-rc-timer > div:first-child {
    position: relative;
    padding-right: 16px;
    display: grid;
    gap: 1px;
}

.cc-rc-timer-live {
    position: absolute;
    right: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cc-rc-danger);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--cc-rc-danger) 18%, transparent);
    animation: cccpLive 1.4s ease infinite;
}

.cc-rc-timer small { color: var(--cc-rc-muted); font-size: 9px; }
.cc-rc-timer strong { font-size: 13px; }
.cc-rc-timer p { margin: 0; color: var(--cc-rc-primary); font-size: 10px; font-weight: 800; }

.cc-rc-countdown {
    direction: ltr;
    display: flex;
    align-items: center;
    gap: 5px;
    font-variant-numeric: tabular-nums;
}

.cc-rc-countdown span {
    min-width: 42px;
    padding: 8px 9px;
    border-bottom: 2px solid var(--cc-rc-primary);
    background: var(--cc-rc-soft);
    color: var(--cc-rc-text);
    text-align: center;
    font-size: 15px;
    font-weight: 900;
}

.cc-rc-countdown b { color: var(--cc-rc-muted); }

.cc-rc-items {
    padding: 3px 22px;
}

.cc-rc-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 30px;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cc-rc-line);
}

.cc-rc-item:last-child { border-bottom: 0; }

.cc-rc-item-image {
    position: relative;
    width: 76px;
    height: 76px;
    display: block;
    overflow: hidden;
    border-radius: calc(var(--cc-rc-radius) - 10px);
    background: var(--cc-rc-soft);
    border: 1px solid var(--cc-rc-line);
}

.cc-rc-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.cc-rc-gift-badge {
    position: absolute;
    right: 5px;
    bottom: 5px;
    padding: 2px 7px;
    border-radius: 7px;
    background: var(--cc-rc-success);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}

.cc-rc-item-main {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 6px;
}

.cc-rc-item-title {
    color: var(--cc-rc-text) !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.65;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-rc-item-meta {
    color: var(--cc-rc-muted);
    font-size: 9px;
}

.cc-rc-item-meta dl,
.cc-rc-item-meta p { margin: 0; }

.cc-rc-offer-badge {
    width: max-content;
    max-width: 100%;
    color: var(--cc-rc-primary);
    font-size: 9px;
    font-weight: 900;
}

.cc-rc-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cc-rc-item-price {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 900;
}

.cc-rc-item-price del { opacity: .48; font-size: 9px; }
.cc-rc-item-price ins { text-decoration: none; }

.cc-rc-qty {
    direction: ltr;
    display: inline-flex;
    align-items: center;
    height: 32px;
    border-bottom: 1px solid var(--cc-rc-line-strong);
}

.cc-rc-qty button {
    width: 28px;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--cc-rc-text);
    cursor: pointer;
    font-size: 16px;
}

.cc-rc-qty input {
    width: 34px !important;
    min-width: 34px !important;
    height: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    background: transparent !important;
    color: var(--cc-rc-text) !important;
    text-align: center;
    font-size: 11px;
    appearance: textfield;
}

.cc-rc-qty input::-webkit-outer-spin-button,
.cc-rc-qty input::-webkit-inner-spin-button { appearance: none; margin: 0; }

.cc-rc-remove {
    width: 30px;
    height: 30px;
    align-self: start;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--cc-rc-muted);
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.cc-rc-remove:hover { color: var(--cc-rc-danger); background: color-mix(in srgb, var(--cc-rc-danger) 9%, transparent); }
.cc-rc-remove svg { width: 18px; height: 18px; }

.cc-rc-gift-label { color: var(--cc-rc-success); font-size: 10px; font-weight: 900; }

.cc-rc-related {
    padding: 20px 0 21px;
    background: linear-gradient(180deg, transparent, var(--cc-rc-soft), transparent);
}

.cc-rc-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding: 0 22px 14px;
}

.cc-rc-section-head > div { display: grid; gap: 2px; }
.cc-rc-section-head small { color: var(--cc-rc-primary); font-size: 9px; font-weight: 900; }
.cc-rc-section-head strong { font-size: 13px; }
.cc-rc-section-head > span { color: var(--cc-rc-muted); font-size: 9px; }

.cc-rc-related-list {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    padding: 0 22px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.cc-rc-related-list::-webkit-scrollbar { display: none; }

.cc-rc-related-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid var(--cc-rc-line);
    border-radius: calc(var(--cc-rc-radius) - 7px);
    background: var(--cc-rc-surface);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
    transition: transform .22s ease, border-color .22s ease;
}

.cc-rc-related-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--cc-rc-primary) 42%, var(--cc-rc-line));
}

.cc-rc-related-image {
    position: relative;
    display: block;
    height: 104px;
    background: var(--cc-rc-soft);
}

.cc-rc-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.cc-rc-related-discount {
    position: absolute;
    top: 7px;
    right: 7px;
    min-width: 30px;
    padding: 3px 6px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cc-rc-primary), #ff3d6e);
    color: #fff;
    text-align: center;
    font-size: 9px;
    font-weight: 900;
}

.cc-rc-related-body { padding: 9px 10px 10px; }

.cc-rc-related-title {
    min-height: 39px;
    color: var(--cc-rc-text) !important;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-rc-social-proof {
    min-height: 15px;
    display: flex;
    gap: 5px;
    margin: 4px 0;
    color: var(--cc-rc-muted);
    font-size: 7px;
}

.cc-rc-social-proof span + span::before { content: '•'; margin-left: 5px; }

.cc-rc-related-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    margin-top: 4px;
}

.cc-rc-related-bottom > span {
    min-width: 0;
    color: var(--cc-rc-text);
    font-size: 9px;
    font-weight: 900;
}

.cc-rc-related-bottom del { display: none; }
.cc-rc-related-bottom ins { text-decoration: none; }

.cc-rc-related-add {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-rc-primary), var(--cc-rc-secondary));
    color: #fff;
    cursor: pointer;
    font-size: 19px;
    line-height: 1;
    box-shadow: 0 7px 18px color-mix(in srgb, var(--cc-rc-primary) 28%, transparent);
}

.cc-rc-related-add.is-loading { opacity: .5; pointer-events: none; transform: rotate(45deg); }
.cc-rc-related-choose { color: var(--cc-rc-primary) !important; font-size: 9px; font-weight: 900; text-decoration: none !important; }

.cc-rc-quick-order {
    padding: 16px 22px;
}

.cc-rc-quick-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 2px 0;
    border: 0;
    background: transparent;
    color: var(--cc-rc-text);
    cursor: pointer;
    text-align: right;
}

.cc-rc-quick-toggle > span { display: grid; gap: 1px; }
.cc-rc-quick-toggle small { color: var(--cc-rc-muted); font-size: 9px; }
.cc-rc-quick-toggle strong { font-size: 13px; }
.cc-rc-quick-toggle b { font-size: 25px; font-weight: 300; color: var(--cc-rc-primary); }

.cc-rc-quick-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    padding-top: 16px;
}

.cc-rc-quick-form[hidden] { display: none !important; }
.cc-rc-quick-form .cc-rc-field:last-of-type { grid-column: 1 / -1; }

.cc-rc-field { display: grid; gap: 5px; }
.cc-rc-field label { color: var(--cc-rc-muted); font-size: 9px; }
.cc-rc-field label small { opacity: .8; }

.cc-rc-field input {
    width: 100%;
    height: 43px;
    padding: 0 12px;
    border: 1px solid var(--cc-rc-line) !important;
    border-radius: 11px !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: var(--cc-rc-surface) !important;
    color: var(--cc-rc-text) !important;
    font-size: 11px !important;
}

.cc-rc-field input:focus { border-color: var(--cc-rc-primary) !important; }

.cc-rc-quick-form > button {
    grid-column: 1 / -1;
    min-height: 45px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cc-rc-primary), var(--cc-rc-secondary));
    color: #fff;
    cursor: pointer;
    font-weight: 900;
}

.cc-rc-quick-form > button:disabled { opacity: .58; }
.cc-rc-quick-form > p { grid-column: 1 / -1; margin: 0; color: var(--cc-rc-muted); font-size: 8px; text-align: center; }

.cc-rc-summary {
    padding: 20px 22px calc(24px + var(--cc-rc-safe-bottom));
}

.cc-rc-summary-row,
.cc-rc-summary-saving {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cc-rc-summary-row span { font-size: 12px; }
.cc-rc-summary-row strong { font-size: 17px; }
.cc-rc-summary-saving { margin-top: 8px; color: var(--cc-rc-success); font-size: 10px; }
.cc-rc-summary > small { display: block; margin-top: 7px; color: var(--cc-rc-muted); font-size: 9px; }

.cc-rc-summary-actions {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 9px;
    margin-top: 16px;
}

.cc-rc-continue,
.cc-rc-checkout {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 900;
}

.cc-rc-continue {
    border: 1px solid var(--cc-rc-line-strong);
    background: transparent;
    color: var(--cc-rc-text);
    cursor: pointer;
}

.cc-rc-checkout {
    border: 0;
    background: linear-gradient(112deg, var(--cc-rc-primary), var(--cc-rc-secondary));
    color: #fff !important;
    box-shadow: 0 14px 30px color-mix(in srgb, var(--cc-rc-primary) 28%, transparent);
}

.cc-rc-view-cart {
    display: block;
    margin-top: 12px;
    color: var(--cc-rc-muted) !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 9px;
}

.cc-rc-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 13px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--cc-rc-line);
    color: var(--cc-rc-muted);
    font-size: 8px;
}

.cc-rc-trust-row span::before { content: '✓'; margin-left: 4px; color: var(--cc-rc-success); }

.cc-rc-empty,
.cc-rc-success {
    min-height: calc(100% - 92px);
    padding: 70px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cc-rc-empty-orbit {
    position: relative;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid var(--cc-rc-line);
    border-radius: 50%;
}

.cc-rc-empty-orbit::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--cc-rc-primary) 24%, transparent), transparent 70%);
    filter: blur(7px);
}

.cc-rc-empty-orbit span { position: relative; font-size: 42px; }
.cc-rc-empty strong,
.cc-rc-success strong { font-size: 17px; }
.cc-rc-empty p,
.cc-rc-success p { max-width: 310px; margin: 8px 0 20px; color: var(--cc-rc-muted); font-size: 11px; line-height: 1.9; }

.cc-rc-empty button,
.cc-rc-success a {
    min-width: 160px;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: var(--cc-rc-primary);
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
}

.cc-rc-success-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--cc-rc-success) 13%, transparent);
    color: var(--cc-rc-success);
    font-size: 34px;
    box-shadow: 0 0 42px color-mix(in srgb, var(--cc-rc-success) 18%, transparent);
}

.cc-rc-launcher {
    position: fixed;
    top: var(--cc-rc-launcher-top, auto);
    right: var(--cc-rc-launcher-right, auto);
    bottom: var(--cc-rc-launcher-bottom, 22px);
    left: var(--cc-rc-launcher-left, auto);
    width: var(--cc-rc-launcher-size-desktop, 61px);
    height: var(--cc-rc-launcher-size-desktop, 61px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: var(--cc-rc-launcher-radius, 19px);
    background: linear-gradient(145deg, var(--cc-rc-primary), var(--cc-rc-secondary));
    color: #fff;
    box-shadow: 0 18px 42px color-mix(in srgb, var(--cc-rc-primary) 35%, rgba(0,0,0,.12)), inset 0 1px 0 rgba(255,255,255,.35);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease;
}

.cc-rc-launcher:hover { transform: translateY(-4px); }
.cc-rc-launcher.is-bump { animation: cccpBump .42s cubic-bezier(.2,.8,.2,1); }

.cc-rc-launcher-glow {
    position: absolute;
    inset: -12px;
    border-radius: 26px;
    background: var(--cc-rc-primary);
    filter: blur(24px);
    opacity: .2;
    pointer-events: none;
}

.cc-rc-launcher-icon { position: relative; width: 27px; height: 27px; display: block; }
.cc-rc-launcher-icon svg { width: 100%; height: 100%; }

.cc-rc-launcher-count {
    position: absolute;
    top: -7px;
    left: -6px;
    min-width: 24px;
    height: 24px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 99px;
    background: #17191f;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.cc-rc-toast {
    position: fixed;
    left: 50%;
    bottom: calc(26px + var(--cc-rc-safe-bottom));
    min-width: 230px;
    max-width: min(90vw, 430px);
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: rgba(17, 20, 31, .91);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.27);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 18px);
    transition: .25s ease;
}

.cc-rc-toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cc-rc-toast.is-error { background: rgba(157, 35, 47, .94); }

.cc-rc-loading {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: color-mix(in srgb, var(--cc-rc-bg) 70%, transparent);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: .18s ease;
}

.cc-rc-root.is-loading .cc-rc-loading { opacity: 1; visibility: visible; }
.cc-rc-loading span { width: 7px; height: 7px; border-radius: 50%; background: var(--cc-rc-primary); animation: ccRcPulse .85s infinite alternate; }
.cc-rc-loading span:nth-child(2) { animation-delay: .15s; }
.cc-rc-loading span:nth-child(3) { animation-delay: .3s; }

.cc-rc-fly-image {
    position: fixed !important;
    z-index: 9999999 !important;
    margin: 0 !important;
    border-radius: 16px !important;
    object-fit: cover !important;
    pointer-events: none !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.24) !important;
    transform-origin: center !important;
    transition: transform .7s cubic-bezier(.18,.72,.19,1), opacity .7s ease !important;
}

.cc-rc-hide-launcher-desktop .cc-rc-launcher { display: none; }

@keyframes ccRcPulse { to { transform: translateY(-8px); opacity: .4; } }
@keyframes cccpLive { 50% { transform: scale(.72); opacity: .55; } }
@keyframes cccpBump { 45% { transform: scale(1.18) rotate(-4deg); } }

@media (max-width: 782px) {
    .cc-rc-hide-launcher-desktop .cc-rc-launcher { display: grid; }
    .cc-rc-hide-launcher-mobile .cc-rc-launcher { display: none; }
}

@media (max-width: 560px) {
    .cc-rc-drawer {
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        border-width: 0;
        border-radius: 0;
    }
    .cc-rc-position-right .cc-rc-drawer { right: 0; }
    .cc-rc-position-left .cc-rc-drawer { left: 0; }
    .cc-rc-header { min-height: 82px; padding: 15px 17px; }
    .cc-rc-items { padding-inline: 17px; }
    .cc-rc-item { grid-template-columns: 69px minmax(0,1fr) 27px; gap: 10px; }
    .cc-rc-item-image { width: 69px; height: 69px; }
    .cc-rc-progress-wrap,
    .cc-rc-timer,
    .cc-rc-quick-order,
    .cc-rc-summary { padding-inline: 17px; }
    .cc-rc-campaign { margin-inline: 15px; }
    .cc-rc-section-head { padding-inline: 17px; }
    .cc-rc-related-list { padding-inline: 17px; }
    .cc-rc-related-card { flex-basis: 142px; }
    .cc-rc-summary-actions { grid-template-columns: .8fr 1.2fr; }
    .cc-rc-launcher { width: 56px; height: 56px; border-radius: 18px; }
    .cc-rc-toast { bottom: calc(18px + var(--cc-rc-safe-bottom)); }
}

@media (max-width: 390px) {
    .cc-rc-quick-form { grid-template-columns: 1fr; }
    .cc-rc-quick-form .cc-rc-field:last-of-type,
    .cc-rc-quick-form > button,
    .cc-rc-quick-form > p { grid-column: auto; }
    .cc-rc-campaign { grid-template-columns: 1fr; }
    .cc-rc-copy-coupon { width: 100%; grid-template-columns: 1fr auto; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    .cc-rc-root *,
    .cc-rc-root *::before,
    .cc-rc-root *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}


/* Cart Plus 1.1 launcher styles and premium actions */
.cc-rc-launcher-style-glass .cc-rc-launcher { background: color-mix(in srgb, var(--cc-rc-bg) 62%, transparent); backdrop-filter: blur(18px) saturate(155%); -webkit-backdrop-filter: blur(18px) saturate(155%); color: var(--cc-rc-primary); border-color: color-mix(in srgb, var(--cc-rc-primary) 28%, rgba(255,255,255,.45)); }
.cc-rc-launcher-style-minimal .cc-rc-launcher { background: var(--cc-rc-bg-solid); color: var(--cc-rc-primary); border-color: var(--cc-rc-line-strong); box-shadow: 0 12px 32px rgba(17,24,39,.15); }
.cc-rc-preset-minimal_light { --cc-rc-blur: 8px; }
.cc-rc-preset-dark_neon .cc-rc-drawer { box-shadow: 0 0 70px color-mix(in srgb, var(--cc-rc-secondary) 25%, transparent), var(--cc-rc-shadow); }
.cc-rc-continue, .cc-rc-checkout { position: relative; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.cc-rc-continue:hover, .cc-rc-checkout:hover { transform: translateY(-2px); }
.cc-rc-continue { gap: 8px; background: linear-gradient(145deg, var(--cc-rc-surface-strong), var(--cc-rc-surface)); box-shadow: inset 0 1px 0 rgba(255,255,255,.24); }
.cc-rc-checkout { justify-content: space-between; padding: 7px 14px 7px 10px; background: linear-gradient(115deg, var(--cc-rc-primary), color-mix(in srgb, var(--cc-rc-primary) 55%, var(--cc-rc-secondary)), var(--cc-rc-secondary)); box-shadow: 0 16px 34px color-mix(in srgb, var(--cc-rc-primary) 32%, transparent), inset 0 1px 0 rgba(255,255,255,.35); }
.cc-rc-checkout::before { content:''; position:absolute; inset:0; background:linear-gradient(110deg, transparent 20%, rgba(255,255,255,.24) 45%, transparent 70%); transform:translateX(-120%); transition:transform .55s ease; }
.cc-rc-checkout:hover::before { transform:translateX(120%); }
.cc-rc-btn-copy { position:relative; display:grid; gap:1px; text-align:right; }
.cc-rc-btn-copy small { font-size:7px; opacity:.78; font-weight:600; }
.cc-rc-btn-copy strong { font-size:11px; }
.cc-rc-btn-icon { position:relative; width:27px; height:27px; display:grid; place-items:center; flex:0 0 auto; border-radius:9px; background:rgba(255,255,255,.17); font-size:14px; }
.cc-rc-view-cart { min-height:52px; padding:9px 12px; display:grid; grid-template-columns:34px minmax(0,1fr) 22px; align-items:center; gap:9px; border:1px solid var(--cc-rc-line); border-radius:13px; background:var(--cc-rc-surface); text-align:right; transition:.22s ease; }
.cc-rc-view-cart:hover { color:var(--cc-rc-text)!important; border-color:color-mix(in srgb, var(--cc-rc-primary) 35%, var(--cc-rc-line)); transform:translateY(-1px); }
.cc-rc-view-cart-icon { width:34px; height:34px; display:grid; place-items:center; border-radius:10px; background:color-mix(in srgb, var(--cc-rc-primary) 12%, var(--cc-rc-surface)); color:var(--cc-rc-primary); font-size:16px; }
.cc-rc-view-cart span:nth-child(2) { display:grid; gap:2px; }
.cc-rc-view-cart strong { color:var(--cc-rc-text); font-size:10px; }
.cc-rc-view-cart small { color:var(--cc-rc-muted); font-size:8px; }
.cc-rc-view-cart b { color:var(--cc-rc-primary); font-size:15px; }
@media (max-width:782px) {
  .cc-rc-launcher { top:var(--cc-rc-launcher-mobile-top, auto); right:var(--cc-rc-launcher-mobile-right, auto); bottom:var(--cc-rc-launcher-mobile-bottom, 18px); left:var(--cc-rc-launcher-mobile-left, auto); width:var(--cc-rc-launcher-size-mobile,56px); height:var(--cc-rc-launcher-size-mobile,56px); }
}
@media (max-width:560px) {
  .cc-rc-mobile-bottom_sheet .cc-rc-drawer { top:auto; bottom:0; height:min(88vh,760px); border-radius:26px 26px 0 0; border-width:1px 1px 0; transform:translateY(calc(100% + 24px)) scale(.99); }
  .cc-rc-mobile-bottom_sheet.is-open .cc-rc-drawer { transform:translateY(0) scale(1); }
  .cc-rc-mobile-bottom_sheet .cc-rc-header::before { content:''; position:absolute; top:8px; left:50%; width:44px; height:4px; border-radius:99px; background:var(--cc-rc-line-strong); transform:translateX(-50%); }
  .cc-rc-summary-actions { grid-template-columns:.68fr 1.32fr; }
}
