:root {
    --primary: #fca311;
    --secondary: #14213d;
    /* Mantendo para elementos de destaque */
    --accent: #e5e5e5;
    --dark-bg: #ffffff;
    /* Fundo agora é branco */
    --card-bg: #ffffff;
    /* Cards brancos */
    --text-color: #1a1a1a;
    /* Texto escuro */
    --text-muted: #666666;
    /* Texto secundário cinza médio */
    --grid-line: #f0f0f0;
    /* Cor da linha da grade */
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;

    /* Padrão de Grade (Grid) */
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top Banner */
.top-banner {
    background-color: #d32f2f;
    /* Vermelho forte */
    color: #ffffff;
    text-align: center;
    padding: 0.8rem 0.5rem;
    /* Ajuste no padding lateral */
    font-weight: 700;
    font-size: 0.85rem;
    /* Fonte um pouco menor para caber */
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    /* Força ficar em uma linha */
    overflow: hidden;
    /* Garante que não quebre o layout se for muito pequeno */
    text-overflow: ellipsis;
    /* Adiciona ... se ainda assim não caber */
}

/* Header / Hero */
header {
    min-height: auto;
    /* Ajuste para não forçar 90vh com o banner */
    padding: 4rem 2rem 2rem;
    /* Mais espaço no topo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

header h1 {
    font-size: 26px;
    margin-bottom: 1.5rem;
    background: none;
    -webkit-text-fill-color: initial;
    color: #000;
    /* Texto preto sólido para contraste */
}

/* Hero Image */
.hero-image {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

header p {
    font-size: 14.4px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    /* Brilho estático / Blur */
    box-shadow: 0 0 20px rgba(252, 163, 17, 0.6),
        0 0 40px rgba(252, 163, 17, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(252, 163, 17, 0.4);
    background-color: #fff;
}

/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* Reduzi o gap também */
    background-color: #e8f5e9;
    /* Fundo verde claro */
    color: #2e7d32;
    /* Texto verde escuro */
    padding: 6px 14px;
    /* Reduzi o padding */
    border-radius: 50px;
    font-size: 0.8rem;
    /* Reduzi a fonte */
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.security-badge svg {
    fill: currentColor;
}

/* Bonus Header Styles */
.arrow-container {
    text-align: center;
    margin: 1rem 0;
}

.bouncing-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bonus-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-pre-title {
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.bonus-main-title {
    color: #ff4d4d;
    /* Red color from image */
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bonus-sub-title {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.green-highlight {
    color: #28a745;
    font-weight: 800;
}

/* Product Breakdown Section */
.product-breakdown-section {
    text-align: center;
    background: transparent;
}

.product-item {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    /* Card Style */
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.item-badge {
    display: inline-block;
    border: 2px solid #28a745;
    /* Verde */
    color: #28a745;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.item-title {
    color: var(--primary);
    /* Amarelo do site */
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.item-subtitle {
    color: #888;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.item-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.item-features-list {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
    /* Make the list visually centered */
    max-width: 100%;
}

.item-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.check-icon {
    color: #28a745;
    /* Verde */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    stroke: currentColor;
    width: 20px;
    height: 20px;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 350px;
    /* Largura de uma revista aprox */
    margin: 1rem auto;
    height: 480px;
    /* Altura suficiente para a revista */
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Mostra a revista inteira */
    background: #fff;
    /* Fundo branco para imagens com fundo transparente */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #000;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #000;
    color: var(--primary);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

/* Dots Nav */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background: var(--primary);
}

@media (max-width: 600px) {
    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }

    .carousel-container {
        max-width: 280px;
        height: 400px;
    }
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    background-color: #fafafa;
    /* Fundo levemente diferente para destacar */
    padding: 3rem 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.testimonial-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Sombra suave */
    transition: var(--transition);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Borda sutil */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Sombra suave */
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Gallery / Tech Section */
.gallery-section {
    text-align: center;
}

.magazine-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mag-item {
    width: 200px;
    height: 280px;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mag-item:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mag-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bonuses */
/* Bonuses */
.bonuses-section {
    padding: 1rem 1rem 0rem 1rem;
    /* Padding inferior zerado */
    background: transparent;
    backdrop-filter: none;
}

/* Bonus Grid Layout */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: visible;
    /* Necessário para a imagem sair do card */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 40px;
    /* Espaço para a imagem flutuante */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Remove a linha lateral antiga */
.bonus-card::before {
    display: none;
}

.bonus-image-wrapper {
    margin-top: -60px;
    /* Faz a imagem subir */
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.bonus-image-wrapper img {
    max-width: 180px;
    /* Tamanho ajustado da capa */
    height: auto;
    border-radius: 5px;
    transform: rotate(-2deg);
    /* Leve inclinação para dar estilo */
    transition: var(--transition);
}

.bonus-card:hover .bonus-image-wrapper img {
    transform: rotate(0deg) scale(1.05);
}

.bonus-badge {
    background: var(--primary);
    /* Amarelo do site */
    color: #000;
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.bonus-card h3 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.bonus-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Pricing */
/* Pricing */
.pricing-section {
    text-align: center;
    padding-top: 0;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    align-items: flex-start;
    /* Alinha cards pelo topo */
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    /* Largura limit para parecer com mobile/card */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Sombra suave padrão */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Borda sutil */
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid #28a745;
    /* Borda verde para o destaque */
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.15);
    /* Sombra verde */
    transform: scale(1.02);
    /* Levemente maior */
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fca311;
    /* Amarelo destaque */
    color: #000;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.rating {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.rating .stars {
    color: #fca311;
    /* Cor das estrelas */
}

.green-subtitle {
    color: #28a745;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.pricing-image {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: block;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 0 0 2rem 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.pricing-features li.excluded {
    color: #999;
    text-decoration: line-through;
}

.feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-icon.check {
    color: #28a745;
}

.feature-icon.cross {
    color: #fe5e54;
}

/* Vermelho suave */
.feature-icon.gift {
    color: #fca311;
}

.price-container {
    margin-bottom: 1.5rem;
}

.price-from {
    color: #888;
    font-size: 1rem;
    text-decoration: line-through;
}

.price-main {
    color: #28a745;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.save-badge {
    background: #d1fae5;
    /* Verde claro fundo */
    color: #065f46;
    /* Verde escuro texto */
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

/* Botões específicos */
.btn-price {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-basic {
    background: #e9ecef;
    color: #333;
}

.btn-complete {
    background: #28a745;
    color: #fff;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6), 0 0 40px rgba(40, 167, 69, 0.3);
}

.btn-price:hover {
    transform: translateY(-2px);
}

.btn-complete:hover {
    background: #218838;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.4);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.attention-text {
    font-size: 0.85rem;
    color: #d32f2f;
    margin-top: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.urgency-text {
    font-size: 0.85rem;
    color: #d32f2f;
    /* ou #ff4d4d */
    margin-top: 0.5rem;
    font-weight: 700;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: #888;
    gap: 5px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    fill: #999;
}

/* Guarantee */
.guarantee-section {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.guarantee-container {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badge-img {
    height: 160px;
    width: auto;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(252, 163, 17, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.guarantee-section h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

.guarantee-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.guarantee-bold {
    font-weight: 800;
    color: #000 !important;
    font-size: 1.1rem !important;
}

/* FAQ */
.faq-section {
    padding: 3rem 1rem;
    background: transparent;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #ddd;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #28a745;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    /* Vira um X */
    color: #fe5e54;
}

.faq-answer {
    margin-top: 1rem;
    color: #666;
    display: none;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.final-footer {
    background-color: #1b2028;
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.backed-text {
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 500;
}

.footer-hotmart-logo {
    height: 40px;
    width: auto;
    display: block;
}

.footer-pago-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
}

.footer-payments {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.footer-payment-img {
    max-width: 100%;
    height: auto;
    width: 350px;
}

.footer-copy {
    font-size: 0.75rem;
    color: #8899a6;
    line-height: 1.5;
    max-width: 500px;
    font-weight: 500;
}

.guarantee-badge {
    max-width: 150px;
    margin: 0 auto 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 30px;
    }

    .top-banner {
        font-size: 0.7rem;
        /* Reduz fonte no celular para caber em uma linha */
        padding: 0.8rem 0.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Upsell Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #fff;
    max-width: 450px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: #d32f2f;
    padding: 1rem;
}

.modal-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
}

.modal-body {
    padding: 2rem;
    color: #333;
}

.highlight-text {
    font-size: 1.3rem;
    color: #28a745;
    margin: 10px 0;
    font-weight: 800;
}

.upsell-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.upsell-img {
    width: 70px;
    height: auto;
}

.upsell-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    margin: 0;
}

.upsell-list li {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-upsell-yes {
    display: block;
    background: #28a745;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 1rem;
    text-decoration: none;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    transition: transform 0.2s;
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-upsell-yes:hover {
    transform: scale(1.02);
    background: #218838;
}

.btn-upsell-yes span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-upsell-no {
    background: none;
    border: none;
    color: #888;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 5px;
}

.btn-upsell-no:hover {
    color: #333;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    width: 260px;
    max-width: 90%;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #28a745;
}

.sales-notification.active {
    transform: translateY(0);
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 16px;
    height: 16px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

#notif-city {
    color: #888;
    font-weight: 600;
}

.notification-text {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 2px;
    line-height: 1.2;
}

.plan-highlight {
    color: #28a745;
    font-weight: 800;
}

.notification-time {
    font-size: 0.7rem;
    color: #999;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1rem;
    color: #999;
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 3px;
    line-height: 1;
    padding: 2px;
}

.notification-close:hover {
    color: #333;
}