@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    color-scheme: light;
    --body-bg: #f4f6f9;
    --surface-bg: #ffffff;
    --surface-border: rgba(31, 41, 55, 0.08);
    --surface-shadow: rgba(15, 23, 42, 0.08);
    --primary: #7c73e6;
    --primary-dark: #6a5af9;
    --primary-soft: rgba(124, 115, 230, 0.12);
    --success: #00c853;
    --success-dark: #00b44a;
    --text-base: #1f2937;
    --text-muted: #6b7280;
    --card-radius: 14px;
    --card-radius-lg: 18px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top center, rgba(124, 115, 230, 0.12), transparent 33%), var(--body-bg);
    color: var(--text-base);
}

html,
body {
    min-height: 100%;
}

footer,
.card,
.navbar,
.list-group-item {
    border-radius: 1rem;
}

header {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

header .navbar-brand {
    letter-spacing: 0.03em;
}

.card {
    border: 1px solid var(--surface-border);
    box-shadow: 0 25px 50px var(--surface-shadow);
    background: var(--surface-bg);
}

.card-hero,
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--surface-border);
}

.checkout-info-banner {
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #4b6bff, #8046ff);
    box-shadow: 0 28px 50px rgba(75, 107, 255, 0.18);
}

.checkout-info-banner-body {
    padding: 2rem;
}

.section-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.section-card-header {
    padding: 1.2rem 1.5rem;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-card-body {
    padding: 1.5rem;
}

.product-highlight {
    background: rgba(56, 92, 255, 0.05);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.order-bump-card {
    border-radius: 1.5rem;
    padding: 1.25rem;
    background: rgba(245, 247, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    cursor: pointer;
}

.order-bump-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(55, 81, 255, 0.2);
}

.order-bump-card input[type="checkbox"] + .form-check-label {
    cursor: pointer;
}

.checkout-hero {
    background: linear-gradient(135deg, #4e57ff, #8b42ff);
    color: #fff;
    border: none;
}

.checkout-hero .checkout-hero-body {
    padding: 2rem 2.5rem;
}

.checkout-hero .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #f8fafc;
}

.checkout-hero h1,
.checkout-hero h2,
.checkout-hero h3,
.checkout-hero p {
    color: #f8fafc;
}

.checkout-summary {
    position: sticky;
    top: 1.5rem;
}

.checkout-summary .section-card {
    border-radius: 1.5rem;
}

.checkout-summary .section-card-body {
    padding: 1.5rem;
}

.checkout-note {
    background: rgba(55, 81, 255, 0.08);
    border: 1px solid rgba(55, 81, 255, 0.16);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
}

@media (max-width: 1199.98px) {
    .checkout-summary {
        position: static;
    }
}

.btn-primary {
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    box-shadow: 0 18px 30px rgba(56, 92, 255, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #2c4ae5, #1f3db8);
    border-color: transparent;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: rgba(55, 81, 255, 0.25);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff;
    background: var(--primary);
    border-color: transparent;
}

.btn-outline-secondary {
    color: #475569;
    background: transparent;
    border-color: rgba(148, 163, 184, 0.25);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    color: #fff;
    background: #475569;
    border-color: transparent;
}

.btn-secondary {
    background: #f8fafc;
    border-color: transparent;
    color: #334155;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #e2e8f0;
}

.btn-link {
    color: var(--primary);
}

.btn-link:hover,
.btn-link:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

.form-control,
.form-select,
textarea.form-control {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 1rem;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(55, 81, 255, 0.15);
}

.form-label {
    font-weight: 600;
}

.alert {
    border-radius: 1rem;
}

.alert-info {
    background: rgba(56, 92, 255, 0.12);
    border-color: rgba(56, 92, 255, 0.25);
    color: #1e293b;
}

.list-group-item {
    border: 1px solid var(--surface-border);
    margin-bottom: 0.5rem;
    background: #fff;
}

.list-group-item.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 16px 28px rgba(55, 81, 255, 0.14);
}

.list-group-item:hover {
    background: rgba(55, 81, 255, 0.06);
    color: var(--text-base);
}

.sidebar {
    min-height: calc(100vh - 72px);
    padding-top: 1rem;
}

.admin-action-group {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.admin-action-group .btn {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #fff;
}

footer {
    background: transparent;
}

.table {
    border-radius: 1rem;
    overflow: hidden;
}

.table-responsive {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
}

.table thead th {
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.table-hover tbody tr:hover {
    background: rgba(55, 81, 255, 0.06);
}

.badge-soft {
    background: var(--primary-soft);
    color: var(--primary);
}

.small-text-muted {
    color: var(--text-muted);
}

.dashboard-metric {
    background: linear-gradient(135deg, rgba(55, 81, 255, 0.12), rgba(255, 255, 255, 0));
    border: 1px solid rgba(55, 81, 255, 0.14);
}

.dashboard-action-card {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
}

.dashboard-action-card .card-body {
    min-height: 190px;
}

.checkout-panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.4rem 1rem 1.6rem;
    background: var(--body-bg);
}

.checkout-topbar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.checkout-topbar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

.checkout-topbar-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef2ff;
    color: #2563eb;
    font-size: 1rem;
}

/* Mobile adjustments for topbar */
@media (max-width: 576px) {
    .checkout-topbar {
        padding: 0.75rem 0.85rem;
    }
    .checkout-topbar-title {
        font-size: 0.85rem;
    }
    .checkout-topbar-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.checkout-banner {
    padding: 1.1rem;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
}

.checkout-trust {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.checkout-kicker {
    color: #4338ca;
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.checkout-trust h1 {
    margin: 0.2rem 0 0.35rem;
    color: #111827;
    font-size: 1.2rem;
    line-height: 1.25;
    font-weight: 850;
}

.checkout-trust p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.45;
}

.checkout-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.checkout-trust-badges span {
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3;
    padding: 0.32rem 0.62rem;
    font-size: 0.75rem;
    font-weight: 750;
}

.urgency-text {
    margin: 0 0 0.6rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #334155;
}

.urgency-counter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-width: 182px;
    padding: 0.75rem 0.95rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #c7d2fe;
    color: #4338ca;
    font-weight: 700;
    font-size: 0.85rem;
}

.urgency-counter span {
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.72rem;
    color: #4f46e5;
}

.urgency-counter strong {
    font-size: 1.45rem;
    line-height: 1.1;
}

.checkout-card {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-card:hover {
    transform: translateY(-1px);
}

.checkout-card-header {
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 700;
    font-size: 0.96rem;
}

.checkout-card-body {
    padding: 1rem;
}

.card-header-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e0e7ff;
    color: #4338ca;
    font-size: 1rem;
}

.product-info-card {
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-info-header {
    padding: 0.92rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #eef2ff;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.96rem;
    border-bottom: 1px solid #dbeafe;
}

.product-info-subtitle {
    display: block;
    margin-top: 0.1rem;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 500;
}

.product-info-status {
    flex-shrink: 0;
    border-radius: 999px;
    background: #dcfce7;
    color: #047857;
    padding: 0.3rem 0.62rem;
    font-size: 0.75rem;
    font-weight: 850;
    text-transform: uppercase;
}

.product-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: #ffffff;
    display: grid;
    place-items: center;
}

.product-info-icon-symbol {
    font-size: 16px;
    color: #4338ca;
}

.product-info-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.product-image {
    width: 88px;
    height: 110px;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    flex-shrink: 0;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    padding: 0.25rem;
    overflow: hidden;
}

.product-copy {
    flex: 1;
    min-width: 0;
}

.product-title {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.35rem;
}

.product-description {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 0.9rem;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.product-old-price {
    font-size: 0.82rem;
    color: #dc2626;
    font-weight: 750;
}

.product-old-price-value {
    text-decoration: line-through;
}

.product-price-prefix {
    font-size: 0.82rem;
    color: #6b7280;
}

.product-current-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #00a650;
    line-height: 1.1;
}

.product-savings {
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    padding: 0.24rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 850;
}

.product-delivery-note {
    margin-top: 0.7rem;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 650;
}

.price-old {
    color: #dc2626;
    text-decoration: line-through;
    font-size: 0.82rem;
    font-weight: 700;
}

.price-current {
    color: var(--success);
    font-size: 1.18rem;
    font-weight: 850;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.form-control {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 0.88rem 0.95rem;
    min-height: 44px;
    font-size: 0.95rem;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.bump-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bump-section-subtitle {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 0.15rem;
}

.bump-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 0.95rem;
    background: #ffffff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bump-card > .d-flex {
    min-width: 0;
}

.bump-card:hover {
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.bump-card.active {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.08);
}

.bump-thumb {
    width: 78px;
    height: 78px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--primary);
    flex-shrink: 0;
}

.bump-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 0.35rem;
}

.bump-info {
    flex: 1;
    min-width: 0;
}

.bump-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 0.22rem 0.52rem;
    margin-bottom: 0.35rem;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bump-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.bump-desc {
    font-size: 0.88rem;
    color: #6b7280;
    margin-bottom: 0.55rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bump-price {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.bump-savings {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.5rem;
    background: #fff7ed;
    color: #c2410c;
    font-size: 0.78rem;
    font-weight: 800;
}

.add-bump-btn {
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-weight: 700;
    padding: 0.7rem 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    min-width: 148px;
    white-space: nowrap;
}

.add-bump-btn:hover {
    background: #f8fafc;
}

.add-bump-btn.remove {
    color: var(--success);
    border-color: var(--success);
    background: #f0fdf4;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.cart-item-row:last-child {
    margin-bottom: 0;
}

.cart-bumps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.92rem;
}

.cart-summary {
    display: grid;
    gap: 0.85rem;
}

.cart-main-item,
.cart-extra-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
    background: #ffffff;
}

.cart-main-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.cart-extra-item {
    background: #f8fafc;
}

.cart-item-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.35rem;
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    background: #eef2ff;
    color: #4338ca;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.cart-item-badge.extra {
    background: #ecfdf5;
    color: #047857;
}

.cart-item-meta,
.cart-empty-extra {
    color: #64748b;
    font-size: 0.86rem;
}

.cart-empty-extra {
    padding: 0.2rem 0;
}

.cart-item-price {
    color: #047857;
    font-weight: 850;
    white-space: nowrap;
}

.cart-totals {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.8rem;
    display: grid;
    gap: 0.45rem;
}

.cart-total-line,
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cart-total-line {
    color: #64748b;
    font-size: 0.92rem;
}

.cart-total-line strong {
    color: #111827;
}

.cart-total {
    font-weight: 700;
    color: #064e3b;
    margin-top: 0.25rem;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: #f0fdf4;
}

.cart-total span:last-child {
    color: #047857;
    font-size: 1.12rem;
    font-weight: 850;
}

.cart-trust-note {
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
    padding: 0.7rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 650;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.payment-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    background: #ffffff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 110px;
}

.payment-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.payment-card.active {
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
    position: relative;
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.12);
}

.payment-card.active::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0ea5e9;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.payment-card-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
}

.payment-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.payment-icon-box.pix-icon {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.payment-icon-box.card-icon {
    background: #eff6ff;
    border: 1px solid #dbeafe;
}

.payment-icon,
.payment-icon-box svg {
    width: 32px;
    height: 32px;
    display: block;
}

.payment-card strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
    color: #111827;
    letter-spacing: 0.01em;
    font-weight: 700;
}

.payment-card-note {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.4;
}

.payment-alert {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid #c7d2fe;
    background: #f8fafc;
    color: #1e293b;
    font-size: 0.92rem;
    line-height: 1.5;
}

.btn-pay {
    width: 100%;
    background: var(--success);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.22);
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.98rem;
    min-height: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-pay:hover,
.btn-pay:focus {
    background: var(--success-dark);
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(16, 185, 129, 0.28);
}

.checkout-actions .btn {
    min-height: 48px;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 14px;
}

.checkout-actions .btn-lg {
    min-height: 48px;
}

.checkout-actions .btn-outline-secondary {
    color: #334155;
    background: #ffffff;
    border-color: #d1d5db;
}


.security-grid {
    display: grid;
    gap: 1rem;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    background: #f4f6f9;
    color: var(--text-base);
    font-size: 0.88rem;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .checkout-panel {
        padding: 1rem 0.85rem 1.4rem;
    }

    .checkout-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-banner {
        padding: 0.9rem 0.95rem;
    }

    .checkout-trust {
        grid-template-columns: 1fr;
    }

    .checkout-trust h1 {
        font-size: 1.05rem;
    }

    .checkout-trust-badges span {
        font-size: 0.72rem;
    }

    .urgency-counter {
        width: 100%;
        min-width: 0;
    }

    .checkout-card {
        border-radius: 16px;
    }

    .checkout-card-header {
        font-size: 0.95rem;
    }

    .product-info-body {
        flex-wrap: wrap;
        gap: 0.85rem;
        padding: 0.95rem;
    }

    .product-info-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-image {
        width: 82px;
        height: 98px;
    }

    .product-title {
        font-size: 0.98rem;
    }

    .product-description {
        font-size: 0.88rem;
        margin-bottom: 0.75rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 1rem 1rem;
    }

    .payment-card-content {
        gap: 0.75rem;
        align-items: flex-start;
    }

    .payment-icon-box {
        width: 48px;
        height: 48px;
    }

    .payment-icon,
    .payment-icon-box svg {
        width: 28px;
        height: 28px;
    }

    .cart-item-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .bump-card {
        flex-direction: column;
        align-items: stretch;
    }

    .bump-card > .d-flex {
        align-items: flex-start !important;
    }

    .bump-thumb {
        width: 74px;
        height: 74px;
    }

    .add-bump-btn {
        width: 100%;
        text-align: center;
    }
}

.status-pill {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .sidebar {
        min-height: auto;
    }
}
