/* Flipkart Mobile-First Style Theme */
:root {
    --fk-blue: #2874f0;
    --fk-yellow: #ffc200;
    --fk-orange: #fb641b;
    --fk-btn-yellow: #ff9f00;
    --fk-bg: #f1f3f6;
    --text-dark: #212121;
    --text-muted: #878787;
    --border-color: #e0e0e0;
    --success-green: #388e3c;
    --error-red: #d32f2f;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.1);
    --shadow-md: 0 2px 4px 0 rgba(0,0,0,.08);
    --shadow-lg: 0 4px 16px 0 rgba(0,0,0,.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #e4e7ec; /* Desktop background */
    color: var(--text-dark);
    line-height: 1.4;
    display: flex;
    justify-content: center;
}

/* Centered Mobile Container Wrapper */
.app-wrapper {
    width: 100%;
    max-width: 480px; /* Mobile viewport limit */
    min-height: 100vh;
    background-color: var(--fk-bg);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header Component */
.fk-header {
    background-color: var(--fk-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    box-shadow: var(--shadow-sm);
}

.header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.brand-title {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.brand-explore {
    font-size: 9px;
    font-weight: 500;
    font-style: italic;
    display: flex;
    align-items: center;
    color: #f0f0f0;
    margin-top: 2px;
}

.plus-text {
    color: var(--fk-yellow);
    font-weight: 700;
    margin: 0 2px;
}

.plus-star {
    width: 8px;
    height: 8px;
}

.search-container {
    flex-grow: 1;
    position: relative;
}

.search-form {
    display: flex;
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    height: 32px;
}

.search-form input {
    flex-grow: 1;
    border: none;
    padding: 0 10px;
    font-size: 12px;
    color: #000;
}

.search-btn {
    background: none;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Suggestion dropdown on mobile */
.search-suggestions {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: 2px;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 110;
}

.suggestion-item {
    padding: 10px 12px;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-link {
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    flex-direction: column;
}

.cart-icon-container {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--fk-orange);
    color: #fff;
    border-radius: 50%;
    padding: 1px 4px;
    font-size: 8px;
    font-weight: bold;
}

/* Hero Carousel */
.banner-carousel {
    position: relative;
    height: 150px;
    overflow: hidden;
    margin-bottom: 8px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Daily Deals Widget */
.deals-container {
    background-color: #fff;
    padding: 12px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.deals-header h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Urgency Timer Clock */
.timer-container {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--error-red);
    font-weight: 700;
}

.timer-box {
    background-color: var(--error-red);
    color: #fff;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 11px;
}

.deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.product-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.product-card .img-wrapper {
    height: 120px;
    width: 100%;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-card .title {
    font-size: 12px;
    font-weight: 500;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 4px;
}

.rating-badge {
    background-color: var(--success-green);
    color: #fff;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.star-icon.filled { color: #fff; font-size: 8px; }

.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.price { font-size: 13px; font-weight: 700; color: #111; }
.old-price { color: var(--text-muted); text-decoration: line-through; font-size: 11px; }
.discount { color: var(--success-green); font-size: 11px; font-weight: 700; }

/* PRODUCT DETAILS PAGE */
.product-detail-layout {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.gallery-main {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.gallery-main img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-info {
    padding: 16px;
}

.product-info-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.detail-price-box {
    margin: 12px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.detail-price { font-size: 20px; font-weight: 700; color: #111; }
.detail-old-price { text-decoration: line-through; color: var(--text-muted); font-size: 13px; }
.detail-discount { color: var(--success-green); font-weight: 700; font-size: 13px; }

.variant-box {
    margin-bottom: 16px;
}

.variant-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.variant-options {
    display: flex;
    gap: 8px;
}

.variant-btn {
    border: 1px solid var(--border-color);
    background-color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 2px;
}

.variant-btn.active {
    border-color: var(--fk-blue);
    color: var(--fk-blue);
    background-color: rgba(40,116,240,0.05);
    font-weight: 700;
}

.assured-tag {
    height: 18px;
}

/* Specs layout on details */
.specs-box {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.specs-box h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid #f9f9f9;
}

.specs-table td.spec-name {
    width: 35%;
    color: var(--text-muted);
}

.specs-table td.spec-val {
    color: var(--text-dark);
    font-weight: 500;
}

/* Sticky Bottom Action Bar */
.sticky-actions-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 90;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.sticky-add-cart { background-color: #fff; color: var(--text-dark); border-top: 1px solid var(--border-color); }
.sticky-buy-now { background-color: var(--fk-orange); }

/* ADDRESS & CART PAGES (PROGRESS BAR) */
.checkout-progress {
    display: flex;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    height: 48px;
    align-items: center;
    padding: 0 12px;
}

.progress-step {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    position: relative;
    font-weight: 500;
}

.progress-step.active {
    color: var(--fk-blue);
    font-weight: 700;
}

.progress-step.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--fk-blue);
}

/* Form inputs styling */
.address-form-container {
    background-color: #fff;
    padding: 16px;
    margin-top: 8px;
}

.form-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.shipping-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 2px;
}

.address-type-row {
    display: flex;
    gap: 16px;
    margin: 8px 0;
}

.address-type-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    cursor: pointer;
}

.form-submit-btn {
    background-color: var(--fk-orange);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 2px;
    font-size: 13px;
    margin-top: 12px;
    box-shadow: var(--shadow-sm);
}

/* CART & DONATION SECTION */
.cart-address-summary {
    background-color: #fff;
    padding: 12px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.donation-card {
    background-color: #fff;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid rgba(40,116,240,0.15);
    border-radius: 4px;
}

.donation-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--fk-blue);
    margin-bottom: 6px;
}

.donation-card p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.donation-options {
    display: flex;
    gap: 8px;
}

.donation-opt {
    border: 1px solid var(--border-color);
    background-color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
    cursor: pointer;
}

.donation-opt.active {
    background-color: var(--fk-blue);
    color: #fff;
    border-color: var(--fk-blue);
}

/* Price summary */
.price-summary-card {
    background-color: #fff;
    padding: 16px;
    margin-top: 8px;
    font-size: 12px;
}

.price-summary-card h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary-row.total-amount {
    border-top: 1px dashed var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
}

.summary-row .green-text {
    color: var(--success-green);
    font-weight: 700;
}

/* PAYMENT PAGE */
.payment-header {
    background-color: #fff;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.payment-options-list {
    display: flex;
    flex-direction: column;
}

.payment-option-item {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
    cursor: pointer;
}

.payment-option-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
}

.payment-option-label img {
    height: 18px;
}

.payment-option-badge {
    background-color: #f1f3f6;
    color: var(--text-muted);
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: auto;
}

.payment-details-pane {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    display: none;
}

.payment-option-item.selected .payment-details-pane {
    display: block;
}

.payment-submit-btn {
    background-color: var(--fk-orange);
    color: #fff;
    width: 100%;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-radius: 2px;
    margin-top: 10px;
}

.qr-code-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 10px 0;
}

.qr-img {
    border: 1px solid var(--border-color);
    padding: 4px;
    background-color: #fff;
    width: 150px;
    height: 150px;
}

/* Fake Processing loader Overlay */
.redirect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 500;
    padding: 24px;
}

.redirect-overlay.open {
    display: flex;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--fk-blue);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal Failed / Success Dialog Box */
.dialog-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 600;
    padding: 24px;
}

.dialog-modal.open {
    display: flex;
}

.dialog-content {
    background-color: #fff;
    width: 100%;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.dialog-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.dialog-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dialog-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dialog-btn {
    background-color: var(--fk-blue);
    color: #fff;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
}

/* Footer elements */
.fk-footer {
    display: none !important;
}

/* Toast alert notices */
.toast-container {
    position: absolute;
    bottom: 60px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 300;
}

.toast {
    background-color: var(--text-dark);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(10px);
    animation: toast-in 0.3s forwards, toast-out 0.3s 2.7s forwards;
}

@keyframes toast-in { to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(-10px); } }

/* =============================================
   REDESIGNED CHECKOUT FLOW (dhamaka-offer style)
   ============================================= */

/* New Stepper Progress Bar */
.stepper-bar {
    background: #fff;
    padding: 18px 20px;
    margin: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stepper-step {
    display: flex;
    align-items: center;
    gap: 0;
}

.stepper-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #d0d5dd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #98a2b3;
    background: #fff;
    flex-shrink: 0;
}

.stepper-circle.done {
    background: #fff;
    border-color: var(--fk-blue);
    color: var(--fk-blue);
}

.stepper-circle.active {
    background: var(--fk-blue);
    border-color: var(--fk-blue);
    color: #fff;
}

.stepper-line {
    width: 60px;
    height: 2px;
    background: #d0d5dd;
    margin: 0 4px;
}

.stepper-line.done {
    background: var(--fk-blue);
}

.stepper-label {
    font-size: 11px;
    font-weight: 600;
    color: #98a2b3;
    margin-top: 4px;
    text-align: center;
}

.stepper-label.active {
    color: var(--text-dark);
    font-weight: 700;
}

.stepper-label.done {
    color: var(--fk-blue);
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Checkout Card Container */
.ck-card {
    background: #fff;
    margin: 8px 12px;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.ck-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

/* Floating label inputs */
.ck-input-group {
    position: relative;
    margin-bottom: 14px;
}

.ck-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Roboto', sans-serif;
}

.ck-input:focus {
    border-color: var(--fk-blue);
}

.ck-input::placeholder {
    color: #98a2b3;
    font-size: 14px;
}

.ck-row {
    display: flex;
    gap: 10px;
}

.ck-row .ck-input-group {
    flex: 1;
}

.ck-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: var(--text-dark);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    font-family: 'Roboto', sans-serif;
}

.ck-select-label {
    font-size: 11px;
    color: #98a2b3;
    margin-bottom: 4px;
    display: block;
}

/* Sticky Bottom Bar */
.ck-sticky-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 90;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
    border-top: 1px solid #e0e0e0;
}

.ck-sticky-price {
    display: flex;
    flex-direction: column;
}

.ck-sticky-price .mrp {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.ck-sticky-price .selling {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
}

.ck-sticky-btn {
    background: #fb641b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(251, 100, 27, 0.2);
    transition: transform 0.15s;
}

.ck-sticky-btn:active {
    transform: scale(0.97);
}

/* Delivered To Card */
.ck-address-card {
    border: 1px dashed var(--fk-blue);
    border-radius: 8px;
    padding: 12px 14px;
    background: rgba(40, 116, 240, 0.03);
}

.ck-address-card .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.ck-address-card .addr {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
    line-height: 1.4;
}

/* Product Summary Card */
.ck-product-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ck-product-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid #f0f0f0;
    padding: 6px;
    background: #fff;
    flex-shrink: 0;
}

.ck-product-info {
    flex: 1;
}

.ck-product-info .title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ck-assured-badge {
    display: inline-block;
    margin-top: 6px;
}

.ck-assured-badge img {
    height: 18px;
}

.ck-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.ck-qty-badge {
    background: #f1f3f6;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.ck-discount-badge {
    background: rgba(56, 142, 60, 0.1);
    color: var(--success-green);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.ck-mrp {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
}

.ck-sell-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

/* Price Details Card */
.ck-price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.ck-price-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 4px;
    font-weight: 800;
    font-size: 15px;
}

.ck-green {
    color: var(--success-green);
    font-weight: 700;
}

/* Savings Banner */
.ck-savings-banner {
    background: rgba(56, 142, 60, 0.08);
    border: 1px solid rgba(56, 142, 60, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--success-green);
    text-align: center;
}

/* Trust Badge */
.ck-trust-badge {
    background: #fff;
    margin: 8px 12px;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ck-trust-badge .shield {
    width: 36px;
    height: 36px;
    background: #f1f3f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ck-trust-badge .shield svg {
    width: 20px;
    height: 20px;
    fill: #667085;
}

.ck-trust-badge p {
    font-size: 12px;
    font-weight: 600;
    color: #475467;
    line-height: 1.4;
}

/* Payment Method Cards */
.ck-pay-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.ck-pay-option:hover {
    border-color: var(--fk-blue);
    box-shadow: 0 2px 8px rgba(40, 116, 240, 0.1);
}

.ck-pay-option:active {
    transform: scale(0.99);
}

.ck-pay-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.ck-pay-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ck-pay-text {
    flex: 1;
}

.ck-pay-text .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.ck-pay-text .desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
}

.ck-pay-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(40, 116, 240, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ck-pay-arrow svg {
    width: 14px;
    height: 14px;
    fill: var(--fk-blue);
}

/* UPI Promo Banner */
.ck-upi-promo {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    margin-bottom: 14px;
    border: 1px dashed #f59e0b;
}

.ck-upi-promo p {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
}

.ck-upi-promo span {
    font-size: 16px;
    color: #dc2626;
    font-weight: 800;
}

/* Payment logos footer */
.ck-payment-logos {
    background: #fff;
    margin: 8px 12px;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ck-payment-logos img {
    height: 22px;
    opacity: 0.7;
}

/* Page background for checkout pages */
.ck-page-bg {
    background: #eef2f7 !important;
}




