:root {
    /* Boa Pizza Colors */
    --primary-red: #dc3545;
    --red-dark: #b02a37;
    --primary-yellow: #ffc107;
    --yellow-dark: #e0a800;
    --primary-green: #198754;
    --green-light: #3ed661;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --border-color: #e9ecef;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
    color: var(--text-dark);
    line-height: 1.6;
}

.checkout-container {
    min-height: 100vh;
}

/* Header */
.checkout-header {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-banner {
    width: 100%;
    height: auto;
    display: block;
}

.checkout-header .header-content {
    display: none;
}

.checkout-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.header-content {
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.back-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.back-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.header-logo {
    margin-bottom: 15px;
}

.header-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    object-fit: cover;
}

.checkout-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

/* Trust Bar Carousel */
.trust-bar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow);
    overflow: hidden;
}

.trust-carousel {
    width: 100%;
    overflow: hidden;
}

.trust-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-item i {
    color: var(--primary-green);
    font-size: 20px;
}

/* Main Content */
.checkout-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

/* Order Summary */
.order-summary {
    width: 100%;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.35);
    border-radius: 16px;
    overflow: hidden;
}

.order-summary .summary-header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	padding: 15px;
	background: #fef2f2;
	border-radius: 16px 16px 0 0;
}

.order-summary h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0;
	color: var(--primary-red);
	text-align: center;
}

.summary-content {
	overflow: visible;
	padding: 0 0 20px 0;
}

.product-card {
	background: var(--white);
	border-radius: 0;
	padding: 20px;
	box-shadow: none !important;
	display: flex;
	gap: 15px;
	margin-bottom: 0;
	animation: slideInLeft 0.6s ease-out 0.5s both;
	border: none;
	border-bottom: 1px solid var(--light-gray);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.product-img {
    flex-shrink: 0;
}

.product-img img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.prices {
    display: flex;
    gap: 10px;
    align-items: center;
}

.old-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.new-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-green);
}

/* Offer Box */
.offer-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 2px solid var(--primary-yellow);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    animation: slideInLeft 0.6s ease-out 0.6s both;
}

.offer-badge {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    display: inline-block;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.offer-row .strike {
    text-decoration: line-through;
    color: var(--gray);
}

.offer-row .highlight {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

.savings-label {
    font-weight: 600;
}

.savings {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
}

/* Countdown */
.countdown-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 10px 18px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    animation: slideInLeft 0.6s ease-out 0.7s both;
}

.countdown-inline {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2px;
}

.countdown-inline #countdown-minutes,
.countdown-inline #countdown-seconds {
    display: inline-block;
    min-width: 22px;
    font-size: 18px;
    font-weight: 800;
}

/* Reviews Section */
.reviews-section {
	background: var(--white);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3), 0 0 0 2px rgba(255, 165, 0, 0.1);
	margin-bottom: 20px;
	animation: slideInLeft 0.6s ease-out 0.8s both;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: var(--primary-yellow);
}

.stars i {
    font-size: 16px;
}

.rating-number {
    font-size: 20px;
    font-weight: 800;
}

.reviews-count {
    color: var(--gray);
    font-size: 14px;
}

.testimonials {
    position: relative;
    min-height: 80px;
}

.testimonials-carousel {
	width: 100%;
	overflow: hidden;
}

.testimonials-track {
	display: flex;
	gap: 20px;
	animation: scrollTestimonials 40s linear infinite;
	width: fit-content;
}

@keyframes scrollTestimonials {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.testimonial-card {
	background: var(--white);
	border-radius: 12px;
	padding: 15px;
	min-width: 400px;
	max-width: 400px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	text-align: left;
	box-shadow: 0 2px 15px rgba(255, 165, 0, 0.25), 0 0 0 1px rgba(255, 165, 0, 0.1);
	flex-shrink: 0;
	gap: 15px;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #10b981;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	flex-shrink: 0;
}

.testimonial-wrapper {
	flex: 1;
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.testimonial-user {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.testimonial-user h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
}

.testimonial-user span {
	font-size: 13px;
	color: var(--gray);
}

.testimonial-rating {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.testimonial-rating > span {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
}

.testimonial-stars {
	color: #ffc107;
	font-size: 14px;
}

.testimonial-wrapper p {
	font-size: 13px;
	color: var(--dark-gray);
	line-height: 1.5;
	margin: 0;
}

.testimonial-image {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: 8px;
	overflow: hidden;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Benefits List */
.benefits-list {
	background: var(--white);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3), 0 0 0 2px rgba(255, 165, 0, 0.1);
	animation: slideInLeft 0.6s ease-out 0.9s both;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 600;
}

.benefit i {
    color: var(--primary-green);
    font-size: 20px;
    width: 28px;
}

/* Order Totals */
.order-totals {
    margin-top: 0;
    padding: 0 15px 15px 15px;
    border-radius: 0 0 16px 16px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-top: none;
    box-shadow: none !important;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
}

.total-label {
    color: var(--text-dark);
    font-weight: 500;
}

.total-value {
    color: var(--text-dark);
    font-weight: 600;
}

.total-value.free-shipping {
    color: var(--primary-green);
    font-weight: 700;
}

.total-row.grand-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--light-gray);
}

.grand-total .total-label {
    font-size: 18px;
    font-weight: 700;
}

.grand-total-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

/* Steps Progress */
.steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.4;
    transition: all 0.3s;
}

.step-indicator.active,
.step-indicator.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.step-indicator.active .step-number,
.step-indicator.completed .step-number {
    background: var(--primary-red);
    color: var(--white);
}

.step-text {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--gray);
}

.step-indicator.active .step-text,
.step-indicator.completed .step-text {
    color: var(--text-dark);
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--light-gray);
    max-width: 60px;
    border-radius: 2px;
    transition: all 0.3s;
}

.step-line.completed {
    background: var(--primary-red);
}

/* Checkout Steps Container */
.checkout-steps-container {
	background: var(--white);
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3), 0 0 0 2px rgba(255, 165, 0, 0.1);
	animation: slideInRight 0.6s ease-out 0.5s both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.checkout-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.checkout-step.active {
    display: block;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Forms */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select {
	padding: 14px 16px;
	border: 2px solid var(--border-color);
	border-radius: 12px;
	font-size: 16px;
	transition: all 0.3s;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(255, 165, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary-red);
	box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.2), 0 4px 20px rgba(255, 165, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group.small input {
    text-align: center;
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-dark) 100%);
	color: var(--white);
	border: none;
	padding: 18px 30px;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 165, 0, 0.5);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--dark-gray);
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--border-color);
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.form-buttons .btn-primary,
.form-buttons .btn-secondary {
    flex: 1;
}

.btn-copy {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.btn-copy:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

.btn-copy.copied {
    background: var(--primary-green);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.payment-method {
	background: var(--white);
	border: 2px solid var(--border-color);
	border-radius: 14px;
	padding: 18px;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 2px 10px rgba(255, 165, 0, 0.15);
}

.payment-method:hover {
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.payment-method.active {
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

.payment-method:hover {
    border-color: var(--primary-red);
    background: rgba(220, 53, 69, 0.03);
}

.payment-method.active {
    border-color: var(--primary-red);
    background: rgba(220, 53, 69, 0.05);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.payment-method.active .payment-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-light) 100%);
}

.payment-info {
    flex: 1;
}

.payment-name {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.payment-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    background: rgba(25, 135, 84, 0.1);
    padding: 3px 10px;
    border-radius: 8px;
}

.payment-check {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s;
}

.payment-method.active .payment-check {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* Payment Content */
.payment-content {
    display: none;
}

.payment-content.active {
    display: block;
}

/* Pix Container */
.pix-container {
    background: linear-gradient(180deg, rgba(25, 135, 84, 0.05) 0%, var(--white) 100%);
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}

.pix-qr-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    min-height: 200px;
}

#qrCodeImage {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background-color: #fff;
}

#qrCodeImage img {
    max-width: 100%;
    max-height: 100%;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: var(--white);
    border: 2px dashed var(--primary-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.qr-placeholder i {
    font-size: 60px;
    color: var(--primary-green);
}

.qr-placeholder p {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    font-weight: 600;
}

.pix-code-wrapper {
    margin-bottom: 20px;
}

.pix-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.pix-code-box {
    background: #f0fdf4;
    border: 2px dashed #22c55e;
    padding: 15px;
    border-radius: 10px;
    word-break: break-all;
    font-size: 13px;
    font-family: monospace;
    color: #166534;
    /* Truncate text */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Fix scroll issues */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Make sure the whole step 3 fits on screen */
.pix-container {
    overflow-x: hidden;
}

#paymentSteps {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.pix-instructions h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pix-instructions ol {
    padding-left: 20px;
}

.pix-instructions li {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

/* Success Content */
.success-content {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 80px;
    color: var(--primary-green);
    margin-bottom: 20px;
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.success-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.success-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 12px;
    background: var(--light-gray);
    border-radius: 12px;
}

.success-item i {
    color: var(--primary-green);
    font-size: 22px;
}

/* Progress Bar */
.progress-bar-container {
    margin-top: 30px;
}

.progress-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--green-light) 100%);
    width: 25%;
    transition: width 1s ease-out;
    animation: progressGrow 3s ease-out forwards;
}

@keyframes progressGrow {
    0% { width: 0%; }
    100% { width: 100%; }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.progress-step i {
    font-size: 28px;
    color: var(--border-color);
    transition: all 0.5s;
}

.progress-step.active i,
.progress-step.completed i {
    color: var(--primary-green);
}

.progress-step span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
}

.progress-step.active span,
.progress-step.completed span {
    color: var(--primary-green);
}

/* Live Notification */
.live-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-notification.hidden {
    display: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.notification-text p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.notification-time {
    font-size: 12px;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 600px) {
    .checkout-header h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 14px;
    }

    .checkout-main {
        padding: 20px 15px;
    }

    .checkout-steps-container {
        padding: 20px;
    }

    .step-text {
        font-size: 10px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .live-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    /* Make step progress responsive */
    #paymentSteps {
        flex-wrap: nowrap;
        padding: 15px 5px !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #paymentSteps .payment-step-item {
        min-width: 55px;
        flex-shrink: 0;
    }

    #paymentSteps .payment-step-line {
        min-width: 20px;
        margin: 16px 4px 0 !important;
        flex-shrink: 0;
    }

    #paymentSteps .payment-step-circle {
        width: 36px !important;
        height: 36px !important;
    }

    #paymentSteps .payment-step-text {
        font-size: 10px !important;
    }

    /* Make sure content doesn't overflow */
    .checkout-main {
        padding: 20px 10px;
        overflow-x: hidden;
    }

    .pix-container {
        padding: 15px;
        overflow-x: hidden;
    }

    #paymentSteps {
        padding: 10px 5px !important;
    }
}
