/* CSS Variables & Design System */
:root {
    --primary: #0C2955;
    --primary-light: #1e40af;
    --accent: #DC2626;
    --accent-hover: #b91c1c;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --gradient-hero: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;

    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1rem 3rem;
    border-radius: 50px;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: center;
}

/* Hero */
.hero {
    padding: var(--spacing-lg) 0;
    background: var(--gradient-hero);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.highlight {
    color: var(--primary);
    border-bottom: 3px solid rgba(220, 38, 38, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-video-card {
    border-radius: var(--radius-md);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: 0.3s;
    background: black;
    aspect-ratio: 9/16;
    max-width: 300px;
    margin: auto;
}

.hero-video-card:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Client Videos */
.client-videos-section {
    padding: var(--spacing-lg) 0;
    background: white;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.video-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 9/16;
}

/* Builder */
.builder-section {
    padding: var(--spacing-lg) 0;
    background: var(--primary);
    color: white;
}

.builder-section .section-title {
    color: white;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.builder-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2rem;
}

.builder-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.step-card {
    background: white;
    color: var(--text-main);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.step-num {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Form Fields */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.input-field {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: inherit;
}

.size-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.size-option {
    flex: 1;
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-card {
    border: 2px solid #e2e8f0;
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: 0.2s;
    position: relative;
}

.size-option input:checked+.size-card {
    border-color: var(--primary);
    background: #eff6ff;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
}

.btn-outline {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
    color: var(--text-muted);
    width: 100%;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    transition: 0.2s;
    border-radius: var(--radius-sm);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
}

.summary-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    color: var(--text-main);
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}

/* Box Section */
.box-section {
    padding: var(--spacing-lg) 0;
}

.box-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.box-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.dot.blue {
    background: #2563EB;
}

.dot.yellow {
    background: #EAB308;
}

.dot.green {
    background: #22c55e;
}

.free-shipping-badge {
    display: inline-block;
    background: #22c55e;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Features, How it Works, Testimonials, FAQ */
.features-section,
.how-it-works-section,
.testimonials-section,
.faq-section {
    padding: var(--spacing-lg) 0;
}

.how-it-works-section {
    background: #f8fafc;
}

.features-grid,
.steps-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card,
.step-item,
.testimonial-card {
    text-align: center;
}

.feature-icon,
.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}

.bg-yellow-light {
    background: #FEF3C7;
    color: #D97706;
}

.bg-blue-light {
    background: #DBEAFE;
    color: #2563EB;
}

.bg-red-light {
    background: #FEE2E2;
    color: #DC2626;
}

.step-circle {
    background: var(--accent);
    color: white;
}

.step-circle.blue {
    background: #2563EB;
}

.step-circle.yellow {
    background: #EAB308;
}

.testimonial-card,
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: #f8fafc;
}

.stars {
    color: #EAB308;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #f1f5f9;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-payment {
    text-align: center;
    margin: 2rem 0;
    border-top: 1px solid #cbd5e1;
    padding-top: 2rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Header Actions */
.header-content {
    justify-content: space-between;
    align-items: center;
}

.cart-trigger {
    position: relative;
    cursor: pointer;
    color: var(--primary);
    margin-right: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.cart-overlay.open {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* (After some lines...) */

/* Modal Backdrop */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 2rem 0;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1rem;
}

.item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.item-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.item-price {
    font-weight: bold;
    color: var(--primary);
}

.remove-item {
    color: var(--accent);
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary);
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    /* Changed from center to allow top alignment for scrolling */
    overflow-y: auto;
    /* Enable vertical scrolling */
    padding: 2rem 0;
    /* Add vertical padding */
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 400px;
    width: 90%;
    margin: auto;
    /* Center horizontally */
    animation: slideDown 0.3s;
    position: relative;
    /* Context for children */
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.active {
    display: flex;
}

/* Responsive */
@media(max-width: 992px) {

    .hero-content,
    .builder-grid,
    .box-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-video-card {
        margin: 2rem auto;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media(max-width: 600px) {
    .hero-title {
        font-size: 2rem;
        /* Slightly smaller for better fit */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .size-options {
        flex-direction: column;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 cols, better for scanning */
        gap: 0.5rem;
        /* Tighter gap */
    }

    /* Mobile First Inputs */
    input,
    select,
    textarea {
        font-size: 16px !important;
        /* Prevents iOS Zoom */
    }

    /* Bigger Buttons for Touch */
    .btn {
        padding: 1rem 2rem;
        min-height: 48px;
        /* Standard Touch Target */
    }

    /* Bottom Sheet Modal Style for Mobile */
    .modal {
        align-items: flex-end;
        /* Align to bottom */
        padding: 0;
        overflow: hidden;
        /* Fix background scroll bleeding */
    }

    .modal-content {
        width: 100%;
        max-width: none;
        border-radius: 20px 20px 0 0;
        /* Rounded top only */
        margin: 0;
        padding: 1.5rem;
        animation: slideUp 0.3s ease-out;
        max-height: 85vh;
        /* Limit height */
        overflow-y: auto;
        /* Internal scrolling */
        display: flex;
        flex-direction: column;
    }

    /* Mobile Toast Positioning */
    .toast-container {
        top: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        align-items: stretch;
    }

    .toast {
        min-width: 0;
        /* Allow shrinking */
        width: 100%;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    /* Builder Mobile Optimization */
    .builder-container {
        padding: 1rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .size-card {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .badge {
        position: static;
        margin-left: 10px;
    }
}

/* Global Keyframes (Moved out of Media Query for Safari Safety) */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Helper for Scroll Locking */
body.no-scroll {
    overflow: hidden;
}

/* Social Trust Section */
.trust-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.trust-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #1a237e;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.trust-logo-circle img {
    max-width: 100%;
    object-fit: contain;
}

.trust-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.trust-stats {
    margin-bottom: 2rem;
}

.trust-stats h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.trust-stats p {
    color: #6b7280;
    font-size: 0.9rem;
}

.btn-instagram {
    background: #1a237e;
    /* Matches Screenshot Navy Blue */
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: transform 0.2s;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    background: #151b60;
}

.trust-badge-green {
    background: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.trust-cnpj-box {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
}

.trust-cnpj-box h4 {
    color: #1e40af;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.cnpj-text {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-verified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #16a34a;
    /* Green check color */
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Green Info Banner */
.green-msg-banner {
    background-color: #16a34a;
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem auto 2rem;
    max-width: 800px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* New Order Bump Design */
.bump-card {
    border: 2px dashed #000080;
    /* Dark blue dashed border */
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    font-family: 'Inter', sans-serif;
}

.bump-header {
    background-color: #000060;
    /* Deep Blue */
    color: white;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.bump-body {
    padding: 1.5rem;
    background: white;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bump-checkbox-wrapper {
    padding-top: 0.5rem;
}

.bump-content {
    flex: 1;
}

.bump-row-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.bump-image {
    width: 60px;
    height: auto;
}

.bump-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.bump-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bump-price-new {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
}

.bump-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}

.bump-off {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.9rem;
}

.bump-desc {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bump-btn {
    background-color: #F97316;
    /* Orange */
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    font-size: 1rem;
}

.bump-btn:hover {
    background-color: #ea580c;
}

/* Custom Big Radio Circle for Bump */
.custom-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #000080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    /* Fixed missing position for pseudo-element */
}

/* Hidden real input */
#order-bump-check {
    display: none;
}

/* Checked state logic handled via JS toggling class or just strict label sibling stuff */
input:checked+.custom-radio::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #000080;
    border-radius: 50%;
    display: block;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    /* Hidden by default */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
    display: none;
    /* Only show on mobile */
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-weight: 800;
    color: #0C2955;
    font-size: 1.2rem;
}

.sticky-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.8rem;
}

.sticky-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
    text-align: center;
    border-radius: 50px;
    background: var(--accent);
    border: none;
    color: white;
    font-weight: 700;
}

/* Urgency Bar */
.urgency-bar {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1000;
    position: relative;
    width: 100%;
}

/* High-Converting Order Bump */
@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(234, 179, 8, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
}

.bump-card {
    background: #FEFCE8;
    /* Light Yellow */
    border: 2px dashed #EAB308;
    /* Darker Yellow Border */
    border-radius: var(--radius-md);
    padding: 0;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: pulse-yellow 2s infinite;
}

.bump-header {
    background: #EAB308;
    color: #422006;
    padding: 0.5rem 1rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bump-body {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.bump-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bump-checkbox-wrapper input {
    width: 20px;
    height: 20px;
    accent-color: #EAB308;
    cursor: pointer;
}

.bump-content {
    flex: 1;
}

.bump-title {
    font-size: 1rem;
    color: #422006;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.bump-price-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.2rem;
}

.bump-price-new {
    color: #166534;
    /* Green */
    font-weight: 800;
    font-size: 1.1rem;
}

.bump-price-old {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.bump-off {
    background: #DC2626;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.bump-desc {
    font-size: 0.85rem;
    color: #854D0E;
    line-height: 1.3;
}

.bump-btn {
    background: none;
    border: none;
    color: #EAB308;
    text-decoration: underline;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    font-weight: 600;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease-out;
    min-width: 300px;
    border-left: 4px solid #3b82f6;
    /* Default Blue */
}

.toast.error {
    border-left-color: #ef4444;
    /* Red */
}

.toast.success {
    border-left-color: #22c55e;
    /* Green */
}

.toast-message {
    font-size: 0.9rem;
    color: #1f2937;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}