:root {
    /* Premium Modern Palette - Dark Blue/Grey Theme */
    --bg-dark: #0b0f19;
    --bg-secondary: #131b2c;
    --bg-card: #1a2336;
    
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    
    --accent-blue: #3b82f6;
    --accent-glow: #60a5fa;
    --accent-orange: #f97316; /* For high conversion buttons */
    
    --border-color: #2d3748;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand, .cta-button {
    font-family: var(--font-heading);
}

/* Utility */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.small-container { max-width: 800px; }
.text-center { text-align: center; }
.strike { text-decoration: line-through; color: var(--text-muted); font-size: 0.9em; opacity: 0.7; }

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 1.8rem; font-weight: 800; letter-spacing: -1px; color: white; }
.dot { color: var(--accent-blue); }

.cart-wrapper { 
    display: flex; align-items: center; gap: 12px; cursor: pointer; 
    padding: 8px 16px; background: rgba(255,255,255,0.05); border-radius: 50px;
    border: 1px solid transparent; transition: 0.3s;
}
.cart-wrapper:hover { border-color: var(--accent-blue); background: rgba(255,255,255,0.1); }
.cart-label { font-size: 0.9rem; font-weight: 600; }
.cart-icon { position: relative; display: flex; align-items: center; }
#cart-count {
    position: absolute; top: -8px; right: -8px;
    background: var(--accent-orange); color: white;
    font-size: 0.7rem; font-weight: bold;
    width: 18px; height: 18px; display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.badge-new {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(59, 130, 246, 0.1); color: var(--accent-blue);
    padding: 6px 16px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 700; margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.pulse-dot { width: 8px; height: 8px; background: var(--accent-blue); border-radius: 50%; box-shadow: 0 0 10px var(--accent-blue); }

.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero-sub { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 35px; max-width: 90%; }

.hero-pricing-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px; border-radius: 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    max-width: 500px; margin-bottom: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.price-stack { display: flex; flex-direction: column; }
.price-stack .label { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.5px; }
.price-row { display: flex; gap: 10px; align-items: baseline; }
.highlight-price { font-size: 1.8rem; font-weight: 800; color: white; }

.cta-button {
    background: var(--accent-orange);
    color: white; border: none;
    padding: 14px 28px; border-radius: 8px;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3); }

.micro-text { font-size: 0.8rem; color: var(--text-muted); display: block; }

.hero-image-block { position: relative; }
.hero-bundle-img { width: 78%; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)); transform: rotate(-2deg); transition: 0.5s; }
.hero-bundle-img:hover { transform: rotate(0deg) scale(1.02); }

/* Value Strip */
.value-strip { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 15px 0; background: rgba(0,0,0,0.2); }
.strip-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.prop { color: var(--text-muted); font-size: 0.9rem; }
.prop strong { color: white; }

/* Showcase Section */
.showcase-section { padding: 80px 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }

.product-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--bg-card); border-radius: 12px;
    border: 1px solid var(--border-color); overflow: hidden;
    transition: 0.3s; display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--accent-blue); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* CROPPING MAGIC */
.img-box {
    height: 240px; width: 100%; overflow: hidden; position: relative; cursor: pointer;
}
.prod-img {
    width: 100%; height: 100%;
    object-fit: cover; 
    object-position: top center; 
    transition: transform 0.5s;
}
.img-box:hover .prod-img { transform: scale(1.05); }
.view-btn-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.img-box:hover .view-btn-overlay { opacity: 1; }
.overlay-btn { background: white; color: black; padding: 10px 20px; border-radius: 30px; font-weight: 700; font-size: 0.9rem; }

.card-details { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.card-details h3 { font-size: 1.1rem; margin-bottom: 8px; line-height: 1.4; }
.card-price { color: var(--accent-blue); font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }
.original-price-small { text-decoration: line-through; color: var(--text-muted); font-size: 0.8rem; margin-right: 8px; font-weight: 400; }

.add-btn {
    width: 100%; background: transparent; border: 1px solid var(--border-color);
    color: white; padding: 12px; border-radius: 6px; cursor: pointer;
    font-weight: 600; font-family: var(--font-body); transition: 0.3s;
    margin-top: auto;
}
.add-btn:hover { background: var(--accent-blue); border-color: var(--accent-blue); }

/* Reviews */
.reviews-section { padding: 80px 0; background: var(--bg-secondary); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background: var(--bg-dark); padding: 30px; border-radius: 12px; border: 1px solid var(--border-color); }
.stars { color: #fbbf24; margin-bottom: 15px; letter-spacing: 2px; }
.review-card p { font-size: 0.95rem; color: #cbd5e1; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.reviewer-meta strong { display: block; font-size: 0.9rem; }
.reviewer-meta span { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ SECTION */
.faq-section { padding: 100px 0; background: var(--bg-dark); }
.accordion-wrapper { border-top: 1px solid var(--border-color); }
.accordion-item { border-bottom: 1px solid var(--border-color); }

.accordion-btn {
    width: 100%;
    background: transparent; border: none;
    text-align: left; padding: 25px 0;
    color: white; font-size: 1.1rem; font-weight: 600; font-family: var(--font-body);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: color 0.3s;
}
.accordion-btn:hover { color: var(--accent-blue); }
.accordion-btn .icon { font-size: 1.5rem; color: var(--accent-blue); transition: transform 0.3s; }
.accordion-btn.active .icon { transform: rotate(45deg); }

.panel {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
    padding: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
}
.panel p { padding-bottom: 25px; }
.panel code { background: #2d3748; padding: 2px 6px; border-radius: 4px; color: var(--accent-glow); font-family: monospace; }


/* Final CTA */
.final-cta-section { padding: 100px 0; }
.final-cta-grid { display: flex; align-items: center; gap: 50px; background: linear-gradient(135deg, #1e293b, #0f172a); padding: 50px; border-radius: 24px; border: 1px solid var(--border-color); }
.final-image-container img { width: 100%; max-width: 400px; display: block; }
.final-content h2 { font-size: 2.5rem; margin-bottom: 15px; }
.pricing-card { background: rgba(0,0,0,0.3); padding: 20px; border-radius: 12px; margin: 30px 0; border: 1px solid rgba(255,255,255,0.05); }
.pc-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 1.1rem; }
.pc-row.highlight { color: white; font-weight: bold; font-size: 1.4rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; margin-top: 10px; }
.final-price { color: var(--accent-glow); }
.savings-tag { background: rgba(59, 130, 246, 0.2); color: var(--accent-glow); display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; margin-top: 5px; }
.cta-large { width: 100%; justify-content: center; font-size: 1.2rem; padding: 18px; }

/* Footer */
footer { border-top: 1px solid var(--border-color); padding: 60px 0; margin-top: 50px; background: #050508; text-align: center; }
.footer-links { margin: 20px 0; }
.footer-links a { color: var(--text-muted); text-decoration: none; margin: 0 12px; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: white; }
.copyright { color: #475569; font-size: 0.8rem; }

/* Cart Sidebar */
.cart-sidebar {
    position: fixed; top: 0; right: -400px; width: 380px; height: 100%;
    background: #0f172a; z-index: 1001; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.6); display: flex; flex-direction: column;
    border-left: 1px solid var(--border-color);
}
.cart-sidebar.active { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); z-index: 1000; opacity: 0; pointer-events: none; transition: 0.3s; }
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: #1e293b; }
.close-cart { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.cart-items { flex-grow: 1; overflow-y: auto; padding: 20px; }

.cart-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.cart-item h4 { font-size: 0.9rem; margin-bottom: 4px; max-width: 200px; }
.item-price { font-weight: bold; color: var(--accent-glow); }
.remove-btn { color: #ef4444; font-size: 0.75rem; cursor: pointer; text-decoration: underline; margin-top: 5px; display: inline-block; }

.cart-footer { padding: 25px; border-top: 1px solid var(--border-color); background: #1e293b; }
#bundle-activated-message {
    background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399; padding: 10px; border-radius: 6px; text-align: center;
    margin-bottom: 15px; font-weight: bold; font-size: 0.9rem; display: none;
}
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
.checkout-button { width: 100%; background: var(--accent-blue); color: white; border: none; padding: 16px; border-radius: 8px; font-weight: 700; cursor: pointer; display: flex; justify-content: center; gap: 10px; align-items: center; font-size: 1rem; transition: 0.3s; }
.checkout-button:hover { background: #2563eb; }
.secure-text { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; background-color: rgba(0,0,0,0.9); }
.modal-container { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; padding: 20px; }
.modal-content { max-width: 90%; max-height: 90vh; border-radius: 8px; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.close-modal { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; z-index: 2001; }

/* Mobile */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-block { order: -1; padding: 0 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-pricing-box { flex-direction: column; align-items: flex-start; }
    .cta-button { width: 100%; justify-content: center; }
    .final-cta-grid { flex-direction: column; padding: 30px; }
    .cart-sidebar { width: 100%; }
}
/* Update for Hotmart Version */
.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    text-decoration: none;
}

.included-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}