:root {
    --primary-color: #6592e6;
    --primary-hover: #2260d2;
    --secondary-color: #6888a7;
    --brand-red: #dc2626;
    --brand-dark-red: #3d0505;
    --brand-accent: #01a8ea;
    --accent-gold: #ff9900;
    --accent-yellow: #ffff00;
    --text-dark: #111827;
    --text-muted: #374151;
    --text-secondary: #4b5563;
    --bg-light: #ffffff;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Jost', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, background-position 2s ease-in-out;
}

a:hover {
    color: var(--primary-hover);
}

/* --- Typography Helpers --- */
.display-1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.1;
    font-weight: 700;
}
.display-1 > .mbr-iconfont { font-size: 3rem; }

.display-2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.15;
    font-weight: 700;
}
.display-2 > .mbr-iconfont { font-size: 2.5rem; }

.display-4 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.5;
}
.display-4 > .mbr-iconfont { font-size: 1.75rem; }

.display-5 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.6rem, 3.8vw, 2.3rem);
    line-height: 1.4;
}
.display-5 > .mbr-iconfont { font-size: 3.125rem; }

.display-7 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    line-height: 1.5;
}
.display-7 > .mbr-iconfont { font-size: 2.125rem; }

.display-8 {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Utility Text Colors */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--accent-gold) !important; }
.text-danger { color: var(--brand-red) !important; }
.text-warning { color: var(--accent-yellow) !important; }
.text-white { color: #000000 !important; }
.text-black { color: #232323 !important; }

.visiflora-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #d4457f;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    z-index: 9999;
    padding: 14px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 8px;
    background-color: #dcf4fc;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.menu-link {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.menu-link:hover {
    color: #01a8ea;
}

.nav-cta-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--brand-accent);
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(222, 119, 40, 0.2);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta-btn:hover {
    background-color: #ef9a0b;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(239, 154, 11, 0.35);
}

@media (max-width: 991px) {
    .nav-menu { display: none !important; }
}


.hero-video {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 68px;
    margin-bottom: 38px;
    padding: 50px 0 60px;
    background: radial-gradient(circle at 80% 20%, #d9a7c3 0%, #fff 100%); 
}




.content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-trust-bar {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #000;
    font-size: 1rem;
    font-weight: 600;
}

.trust-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.trust-divider {
    color: rgba(255, 255, 255, 0.3);
}

.hero-text {
    padding-left: 15px;
}

.hero-text h1 {
    color: #000;
    font-size: 2.85rem;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-text h4 {
    color: #cbd5e1;
    font-size: 1.6rem;
    line-height: 1.55;
    font-weight: 400;
}

.hero-highlight-tag {
    color: #d21b58;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    
}

.benefit-check {
    color: #d21b58;
    font-weight: 900;
    font-size: 1.25rem;
    margin-right: 14px;
    line-height: 1.2;
}

.benefit-card p {
    color: #000;
    font-size: 1.38rem;
    line-height: 1.45;
    margin: 0;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.image-inner-container {
    display: inline-block;
    position: relative;
}

.hero-product-img {
    max-width: 100%;
    width: 380px;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.55));
    transition: transform 0.4s ease-in-out;
}

.hero-product-img:hover {
    transform: translateY(-8px) scale(1.02);
}

.trust-badge-seal {
    position: absolute;
    bottom: 15px;
    right: -15px;
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    transform: rotate(10deg);
}

.trust-badge-seal span {
    font-size: 1.15rem;
}

.trust-badge-seal small {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
}

.live-viewers-tag {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.hero-cta-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.45);
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
}

.hero-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-25deg);
    animation: autoLight 3.5s linear infinite;
}

@keyframes autoLight {
    0% { left: -120%; }
    100% { left: 160%; }
}

.hero-guarantee-note {
    font-size: 0.85rem;
    color: #94a3b8 !important;
}

@media (max-width: 991px) {
    .trust-divider {
        display: none;
    }
    .hero-trust-bar {
        gap: 8px !important;
        font-size: 0.8rem;
        border-radius: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 767px) {
    .hero-video {
        min-height: auto;
        padding: 25px 0 35px;
        margin-top: 60px;
    }

    .hero-text h1 {
        font-size: 1.95rem !important;
        line-height: 1.25;
        text-align: center;
    }

    .hero-text h4 {
        font-size: 1.05rem !important;
        text-align: center;
    }

    .hero-product-img {
        width: 260px !important;
    }

    .trust-badge-seal {
        width: 80px;
        height: 80px;
        bottom: 5px;
        right: 0px;
    }

    .trust-badge-seal span {
        font-size: 1rem;
    }

    .trust-badge-seal small {
        font-size: 0.52rem;
    }

    .benefit-card {
        padding: 12px;
    }

    .benefit-card p {
        font-size: 0.92rem !important;
        text-align: left;
    }

    .hero-cta-btn {
        font-size: 0.95rem !important;
        padding: 14px 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem !important;
    }

    .hero-product-img {
        width: 220px !important;
    }
}

.cid-trimorin-product {
    padding: 80px 0;
    background: #ffffff;
}

.cid-trimorin-product .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cid-trimorin-product .text-wrapper {
    max-width: 720px;
}

.cid-trimorin-product .image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-animate {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-animate:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 55px rgba(0,0,0,0.12) !important;
}

.simple-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background: #28a745;
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.simple-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(40, 167, 69, 0.4);
}

.premium-title-box,
.cid-uiqzvBZJLN .title-box,
.cid-ukJMqCUtnY .title {
    position: relative;
    overflow: hidden;
    max-width: 980px;
    margin: 50px auto;
    padding: 28px 40px;
    text-align: center;
    background: radial-gradient(circle at 12% 0%, #b8103b 0%, #b8103b 40%, #000 100%);
    border: 1px solid rgba(148,163,184,0.55);
    border-radius: 30px 10px 24px 14px;
    box-shadow: 0 0 0 1px rgba(15,23,42,0.7), 0 18px 40px rgba(0,0,0,0.75);
}

.premium-title-box::before,
.cid-uiqzvBZJLN .title-box::before,
.cid-ukJMqCUtnY .title::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.22) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 100%, rgba(52,211,153,0.20) 0%, transparent 65%);
    opacity: 0.8;
    mix-blend-mode: screen;
}

.premium-title-box h3,
.cid-uiqzvBZJLN .mbr-section-title,
.cid-ukJMqCUtnY .mbr-section-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 0 18px rgba(190,242,100,0.55);
}

.trust-card {
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: #ffffff;
    padding: 25px 15px;
    height: 100%;
    transition: transform 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.cid-ukc4wRHbTT .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.cid-ukc4wRHbTT .icon-box {
    background: #20803f;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
}

.cid-ukc4wRHbTT .step-number {
    color: #ffffff !important;
    font-weight: 800;
}

.counter-container ul {
    list-style: none;
    padding-left: 0;
}

.counter-container ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.counter-container ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.rh1-review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.rh1-review-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
}

.rh1-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-right: 10px;
}

.rh1-verified {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-section{
    background:#fff;
    padding-bottom:60px;
}

/* TOP BANNER */

.offer-banner{
    background:#d34486;
    text-align:center;
    color:#fff;
    padding:20px 15px 0;
}

.offer-banner h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:0;
}

.offer-banner h3{
    color:#ffd53d;
    font-size:32px;
    font-weight:800;
}

.offer-date{
    font-size:20px;
    font-weight:700;
}

.offer-date span{
    color:#ffd53d;
    text-decoration:underline;
}

.countdown{
    font-size:70px;
    font-weight:800;
    margin:20px 0;
}

.stock-bar{
    background:#6b1138;
    padding:12px;
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:15px;
    font-weight:700;
}

/* SHIPPING BANNER */

.shipping-banner{
    max-width:850px;
    margin:25px auto 40px;
    border:3px solid #f5a623;
    border-radius:15px;
    padding:15px 25px;
    display:flex;
    align-items:center;
    gap:20px;
}

.shipping-icon{
    font-size:50px;
}

.shipping-banner strong{
    font-size:30px;
    color:#f5a623;
}

.shipping-banner p{
    margin:0;
}

/* CARDS */

.offer-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:center;
}

.offer-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    border:3px solid #6670df;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.card-top{
    background:#7d2be6;
    color:#fff;
    padding:14px;
    font-weight:800;
    text-align:center;
    font-size:22px;
}

.card-content{
    padding:20px;
    text-align:center;
}

.offer-card h3{
    font-size:38px;
    font-weight:600;
    color:#000;
    margin-bottom:5px;
}

.supply{
    font-size:20px;
    color:#333;
}

.product-img{
    max-width:260px;
    width:100%;
    display:block;
    margin:auto;
}

.old-price{
    color:#d60000;
    font-size:38px;
    font-weight:900;
    text-decoration:line-through;
}

.main-price{
    font-size:95px;
    font-weight:900;
    color:#00bf63;
    line-height:1;
    -webkit-text-stroke:2px #000;
    text-shadow:4px 4px 0 #000;
}

.per-bottle{
    display:inline-block;
    position:relative;
    overflow:hidden;

    padding:10px 28px;
    margin-top:12px;

    border:2px solid rgba(255,255,255,.8);
    border-radius:50px;

    background:linear-gradient(
        135deg,
        #00c853,
        #2ecc71,
        #00e676
    );

    color:#fff;
    font-size:18px;
    font-weight:800;
    letter-spacing:.5px;

    text-shadow:
        0 1px 2px rgba(0,0,0,.5);

    box-shadow:
        0 0 10px rgba(0,255,120,.5),
        0 0 20px rgba(0,255,120,.3),
        inset 0 1px 0 rgba(255,255,255,.5);

    animation:pulseGlow 2s infinite ease-in-out;
}


.per-bottle::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );

    transform:skewX(-25deg);

    animation:shine 3s infinite;
}

@keyframes shine{
    0%{
        left:-120%;
    }
    100%{
        left:160%;
    }
}

@keyframes pulseGlow{
    0%,100%{
        box-shadow:
            0 0 10px rgba(0,255,120,.5),
            0 0 20px rgba(0,255,120,.3);
    }

    50%{
        box-shadow:
            0 0 20px rgba(0,255,120,.9),
            0 0 40px rgba(0,255,120,.6);
    }
}

.shipping-cost,
.free-shipping{
    margin-top:15px;
    font-weight:900;
    font-size:22px;
	color:#000;
}

.benefits{
    list-style:none;
    padding:0;
    margin:25px 0;
	color:#000;
}
.benefits-6-bottle{
    list-style:none;
    padding:0;
    margin:25px 0;
	color:#fff;
}
.benefits li{
    margin:15px 0;
    font-weight:800;
    font-size:18px;
}
.benefits-6-bottle li{
    margin:15px 0;
    font-weight:800;
    font-size:18px;
}
.buy-btn{
    display:block;
    width:100%;
    padding:18px;
    background:#e5e5e5;
    color:#000;
    text-decoration:none;
    font-size:22px;
    font-weight:900;
    border-radius:8px;
}

.payment-strip{
    width:200px;
    display:block;
    margin:20px auto;
}

.total{
    font-size:22px;
    font-weight:800;
	color:#000;
}

/* CENTER CARD */

.featured{
    background:linear-gradient(
        180deg,
        #ff008e 0%,
        #a200dc 45%,
        #7700c8 100%
    );
    color:#fff;
    transform:scale(1.06);
    z-index:5;
}

.best-value{
    background:#ff008e;
    color:#fff;
    text-align:center;
    padding:14px;
    font-size:26px;
    font-weight:900;
}

.featured h3{
    color:#42f06b;
    text-shadow:2px 2px 0 rgba(0,0,0,.4);
}

.featured .supply{
    color:#fff;
}

.featured-btn{
    background:#10c85d;
    color:#fff;
}

.featured-footer{
    font-size:24px;
    font-weight:800;
    margin-top:10px;
}

@media(max-width:992px){

    .offer-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }

    .offer-banner h2{
        font-size:30px;
    }

    .offer-banner h3{
        font-size:24px;
    }

    .main-price{
        font-size:70px;
    }

    .offer-card h3{
        font-size:42px;
    }

    .shipping-banner{
        flex-direction:column;
        text-align:center;
    }
}

.bonuses-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.bonuses-header {
    background: linear-gradient(135deg, #DF7F07 0%, #327139 100%);
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

.bonuses-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonuses-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.text-yellow {
    color: #fbbf24;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #fbbf24;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;          
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
}

.bonus-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    display: flex;
    flex-direction: column;    
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    border-color: #DF7F07;
}

.bonus-image {
    position: relative;
    height: auto;
    min-height: 180px;
    overflow: visible;
    text-align: center;
    margin: 15px 0 5px;
}

.bonus-image img {
    max-width: 60%;      
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.bonus-book {
    transition: transform 0.3s ease;
}

.bonus-item:hover .bonus-book {
    transform: scale(1.05);
}

.digital-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--secondary-color, #327139);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bonus-content {
    padding: 1.25rem;       
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.bonus-number {
    color: #10b981;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-name {
    color: #DF7F07;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-value {
    color: #fbbf24;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-description {
    color: var(--text-secondary, #475569);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;        
}

@media (max-width: 991px) {
    .bonuses-grid {
        grid-template-columns: 1fr;  
        gap: 2rem;
    }

    .bonus-image img {
        max-width: 40%;
    }
}

#money-back-guarantee {
    background: radial-gradient(circle at 12% 0%, #120852 0%, #120852 40%, #5d932d 100%);
    padding: 60px 0;
    color: #ffffff;
}

.cid-uiBzoX4Giw .cardfaq {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cid-uiBzoX4Giw .cardfaq:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.cid-uiBzoX4Giw .panel-title-edit {
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.cid-uiBzoX4Giw .cardfaq:hover .panel-title-edit {
    color: #2563eb;
}

.cid-uiBzoX4Giw .card-headerfaq a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    gap: 15px;
}

.cid-uiBzoX4Giw .sign {
    color: #2563eb;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cid-uiBzoX4Giw .panel-body {
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid #f1f5f9;
}

#content13-1s {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#content13-1s ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#content13-1s li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
    transition: transform 0.2s ease;
}

#content13-1s li:hover {
    transform: translateX(4px);
}

#content13-1s li::before {
    content: "➔";
    color: #f59e0b; 
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    top: 2px;
}

#content13-1s a {
    color: #f8fafc !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

#content13-1s a:hover {
    color: #f59e0b !important;
}

#footer3-1v {
    background-color: #090d16;
    padding: 50px 0 30px 0;
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.7;
    border-top: 1px solid #1e293b;
}

.foot-menu {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin: 0 auto 24px auto;
    list-style: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.foot-menu-item {
    margin: 0;
}

.foot-menu-item a {
    display: inline-block;
    padding: 8px 18px;
    color: #e2e8f0 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.foot-menu-item a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cid-uiBzoX4Giw .cardfaq {
        padding: 14px 18px;
    }

    .cid-uiBzoX4Giw .panel-title-edit {
        font-size: 1.05rem;
    }

    #content13-1s {
        padding: 35px 0;
    }

    #content13-1s li {
        margin-bottom: 12px;
    }

    .foot-menu {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
    }
}

.sliding-sidebar-cta-right {
    position: fixed;
    top: 85%;
    right: 0;
    z-index: 9999;
    display: flex;
    padding: 10px;
    animation: infiniteSideSlide 8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    transition: transform 0.3s ease-out;
}

.sliding-sidebar-cta-right:hover {
    animation-play-state: paused;
    transform: translateY(-50%) translateX(0);
}

.custom-3d-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #101a2b 0%, #120852 50%, #061924 100%);
    padding: 2px 5px 2px 3px;
    border-radius: 60px;
    text-decoration: none !important;
    border: 1px solid #1a2027;
    animation: autoGlowPulse 3s ease-in-out infinite;
}

.text-recessed-container {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 40px;
    background: #ef9a0b;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
}

.cta-product-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(255,255,255,.35);
    background: #fff;
    flex-shrink: 0;
}

@keyframes infiniteSideSlide {
    0%, 100% { transform: translateY(-50%) translateX(calc(100% - 70px)); }
    10%, 40% { transform: translateY(-50%) translateX(0%); }
    50%, 90% { transform: translateY(-50%) translateX(calc(100% - 70px)); }
}

@keyframes autoGlowPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(126, 184, 70, 0.4); }
    50% { box-shadow: 0 0 25px rgba(126, 184, 70, 0.8); }
}

@media (max-width: 768px) {
    .sliding-sidebar-cta-right {
        top: auto;
        bottom: 12px;
        right: 50%;
        transform: translateX(50%);
        animation: none;
        width: 90%;
        max-width: 380px;
        padding: 0;
    }
    
    .sliding-sidebar-cta-right:hover {
        transform: translateX(50%);
    }

    .custom-3d-btn { 
        width: 100%; 
        justify-content: center; 
    }
    
    .text-recessed-container { 
        font-size: 15px; 
        text-align: center;
        flex-grow: 1;
    }

    .cta-product-img {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
}