/* ==========================================================================
   1. GLOBAL STYLES, VARIABLES & BASE RESET
   ========================================================================== */
:root {
    --primary-color: #6592e6;
    --primary-hover: #2260d2;
    --secondary-color: #2c0303;
    --brand-red: #310303;
    --brand-dark-red: #3d0505;
    --accent-gold: #ff9900;
    --accent-yellow: #ffff00;
    --text-dark: #111827;
    --text-muted: #374151;
    --bg-light: #ffffff;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Jost', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    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);
}

/* ==========================================================================
   2. TYPOGRAPHY & RESPONSIVE DISPLAY CLASSES
   ========================================================================== */
.display-1 {
    font-family: 'Jost', sans-serif;
    font-size: 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: 2rem;
    line-height: 1.1;
    font-weight: 700;
}
.display-2 > .mbr-iconfont { font-size: 2.5rem; }

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

.display-5 {
    font-family: 'Jost', sans-serif;
    font-size: 2.3rem;
    line-height: 1.5;
}
.display-5 > .mbr-iconfont { font-size: 3.125rem; }

.display-7 {
    font-family: 'Jost', sans-serif;
    font-size: 1.7rem;
    line-height: 1.5;
}
.display-7 > .mbr-iconfont { font-size: 2.125rem; }

@media (max-width: 992px) {
    .display-1 { font-size: 1.92rem; }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: calc(1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.1 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-2 {
        font-size: calc(1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
        font-size: calc(1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
        font-size: calc(1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-7 {
        font-size: calc(1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* Base Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--accent-gold) !important; }
.text-danger { color: var(--accent-yellow) !important; }
.text-white { color: #ffffff !important; }
.text-black { color: #232323 !important; }

/* ==========================================================================
   3. NAVIGATION BAR
   ========================================================================== */
.lipojaro-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    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: 1px solid #efd735;
	border-radius: 8px;
	background-color: #8e1309;
}

.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: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.menu-link:hover {
    color: #fef9c3;
}

.nav-cta-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: #de7728;
    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; }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-video {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 650px;
    overflow: hidden;
    margin-top: 68px;
    background: #111827;
}

.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0) 75%
    );
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
    padding-left: 20px;
}

.hero-text h1 {
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-text h4 {
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .hero-video {
        height: 100vh;
        min-height: 550px;
        margin-top: 60px;
    }
    .bg-image { object-position: 65% center; }
    .overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.6));
    }
    .content {
        justify-content: center;
        text-align: center;
        padding: 0 15px;
    }
    .hero-text { padding-left: 0; }
}

/* ==========================================================================
   5. PRODUCT & CONTENT SECTIONS
   ========================================================================== */
.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 Highlight Title Box Component */
.premium-title-box,
.cid-uiqzvBZJLN .title-box,
.cid-ukJMqCUtnY .title {
    position: relative;
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto 30px auto;
    padding: 28px 40px;
    text-align: center;
    background: radial-gradient(circle at 12% 0%, #2c0303 0%, #2c0303 40%, #020617 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);
    margin-bottom: 30px; 
}

.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: #fef9c3 !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 Badges Grid */
.trust-card {
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    background: #ffffff;
    padding: 25px 15px;
    height: 100%;
    transition: transform 0.9s ease;
}

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

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

/* Step By Step List Matrix */
.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;
}

/* Benefits Checkmarks List */
.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;
}

/* Real Reviews Cards */
.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;
}

/* ==========================================================================
   6. PRICING & BOTTLES SECTION
   ========================================================================== */
.bottles-section {
    padding-bottom: 40px;
}

.bottles-header {
    background: var(--brand-red);
    color: #ffffff;
    text-align: center;
    padding: 3rem 1rem 5rem 1rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
	margin-bottom: 06.5rem;
}

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

.bottles-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    opacity: 0.9;
}

.pricing-container {
    max-width: 1200px;
    margin: -40px auto 0 auto;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background: linear-gradient(180deg, #180000 0%, var(--brand-dark-red) 40%, #7d0e0e 100%);
    border: 2px solid #5a0000;
    border-radius: 24px;
    flex: 1;
    max-width: 380px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #200000 0%, #4a0606 40%, #8f0d0e 100%);
    border: 3px solid var(--accent-gold);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.popular, .ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #000000;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 900;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.price {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    margin: 15px 0;
}

.price .currency {
    font-size: 40px;
    vertical-align: top;
}

.btn-add, .btn.yellow, .btn.blue {
    display: block;
    background: linear-gradient(180deg, #ffca00 0%, #ff9900 100%);
    color: #000000 !important;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 14px 20px;
    border-radius: 12px;
    margin: 20px 0 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-add:hover, .btn.yellow:hover, .btn.blue:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.save-badge {
    position: absolute;
    right: 15px;
    top: 25px;
    width: 75px;
    height: 75px;
    background: #d71919;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.1;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.badge-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.badge-pill {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.badge-green { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.badge-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.badge-red { background: rgba(239, 68, 68, 0.2); color: #f87171; }

@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card, .pricing-card.featured {
        width: 100%;
        max-width: 420px;
        transform: none !important;
    }
}

/* ==========================================================================
   7. GUARANTEE, FAQ & FOOTER
   ========================================================================== */
#money-back-guarantee {
    background: radial-gradient(circle at 12% 0%, #2c0303 0%, #2c0303 40%, #5d932d 100%);
    padding: 60px 0;
    color: #ffffff;
}

.cid-uiBzoX4Giw .cardfaq {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
    padding: 10px 20px;
}

.cid-uiBzoX4Giw .panel-title-edit {
    font-size: 1.1rem;
    color: #111827;
}

#content13-1s {
    background-color: #1e293b;
    padding: 40px 0;
}

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

#content13-1s li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

#content13-1s li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

#footer3-1v {
    background-color: #0f172a;
    padding: 40px 0;
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}

.foot-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

/* ==========================================================================
   8. FIXED WIDGETS & OVERLAYS
   ========================================================================== */
.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%, #2c0303 50%, #061924 100%);
    padding: 10px 20px 10px 12px;
    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);
}

@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: 15px;
        right: 50%;
        transform: translateX(50%);
        animation: none;
        width: 90%;
        max-width: 380px;
    }
    .custom-3d-btn { width: 100%; justify-content: center; }
    .text-recessed-container { font-size: 15px; }
}
/* Glassmorphism Capsule Menu */
.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);
}