/*
Theme Name: Lofent Alkaline E-commerce
Theme URI: https://lofentindia.com
Author: Lofent India
Author URI: https://lofentindia.com
Description: Premium WordPress and WooCommerce theme for Lofent Alkaline Water Bottle e-commerce. 29% Blue, 20% Green, 51% Professional.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lofent-ecom
Tags: e-commerce, custom-colors, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
:root {
    --clr-bg: #F9FAFB;
    --clr-white: #FFFFFF;
    --clr-text: #1F2937;
    --clr-text-muted: #6B7280;
    --clr-border: #E5E7EB;
    --clr-blue: #0284C7;
    --clr-blue-light: #E0F2FE;
    --clr-blue-dark: #0369A1;
    --clr-green: #10B981;
    --clr-green-light: #D1FAE5;
    --clr-green-dark: #059669;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.1);
    --transition: all .3s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text);
}
a { text-decoration: none; color: var(--clr-blue); transition: var(--transition); }
a:hover { color: var(--clr-blue-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-family: var(--font-head);
    font-weight: 600; font-size: 15px; border: none; cursor: pointer;
    transition: var(--transition); text-decoration: none;
}
.btn-blue { background: var(--clr-blue); color: #fff; box-shadow: 0 4px 14px rgba(2,132,199,.3); }
.btn-blue:hover { background: var(--clr-blue-dark); transform: translateY(-2px); color: #fff; }
.btn-green { background: var(--clr-green); color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,.3); }
.btn-green:hover { background: var(--clr-green-dark); transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; color: var(--clr-text); border: 2px solid var(--clr-border); }
.btn-outline:hover { border-color: var(--clr-blue); color: var(--clr-blue); }

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announce-bar {
    background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-green) 100%);
    color: #fff; text-align: center; padding: 8px 20px; font-size: 13px; font-weight: 500;
}
.announce-bar a { color: #fff; text-decoration: underline; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: var(--clr-white);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    position: sticky; top: 0; z-index: 1000;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.site-logo {
    font-family: var(--font-head); font-size: 26px; font-weight: 800;
    color: var(--clr-blue); display: flex; align-items: center; gap: 8px;
}
.site-logo .dot { color: var(--clr-green); }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
    color: var(--clr-text); font-weight: 500; font-size: 14px;
    font-family: var(--font-head); position: relative; padding: 4px 0;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--clr-blue); transition: width .3s;
}
.main-nav a:hover { color: var(--clr-blue); }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-link { position: relative; color: var(--clr-text); font-size: 20px; }
.cart-badge {
    position: absolute; top: -8px; right: -10px; background: var(--clr-green); color: #fff;
    font-size: 11px; width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}
/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--clr-text); }

/* ==========================================================================
   Page Headers (Reusable)
   ========================================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-dark) 100%);
    color: #fff; padding: 70px 20px; text-align: center;
}
.page-banner h1 { color: #fff; font-size: 42px; margin-bottom: 12px; }
.page-banner p { color: var(--clr-blue-light); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   Section Helpers
   ========================================================================== */
.section { padding: 80px 0; }
.section-white { background: var(--clr-white); }
.section-grey { background: var(--clr-bg); }
.section-blue-light { background: var(--clr-blue-light); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 34px; margin-bottom: 12px; }
.section-header p { color: var(--clr-text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   Cards Grid
   ========================================================================== */
.cards-grid { display: grid; gap: 24px; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
    background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius);
    padding: 32px 24px; transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--clr-blue); }
.card-icon {
    width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 24px; margin-bottom: 16px;
}
.card-icon-blue { background: var(--clr-blue-light); color: var(--clr-blue); }
.card-icon-green { background: var(--clr-green-light); color: var(--clr-green); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--clr-text-muted); font-size: 14px; }

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
    padding: 32px 20px; border-bottom: 1px solid var(--clr-border); background: var(--clr-white);
}
.trust-item { text-align: center; }
.trust-item i { font-size: 28px; margin-bottom: 8px; display: block; }
.trust-item span { font-size: 13px; font-weight: 600; display: block; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-control {
    width: 100%; padding: 12px 16px; border: 1px solid var(--clr-border); border-radius: 8px;
    font-family: var(--font-body); font-size: 14px; transition: var(--transition);
    background: var(--clr-white);
}
.form-control:focus { outline: none; border-color: var(--clr-blue); box-shadow: 0 0 0 3px rgba(2,132,199,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-item { border: 1px solid var(--clr-border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q {
    padding: 18px 24px; font-weight: 600; font-size: 15px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--clr-white); transition: var(--transition);
}
.faq-q:hover { background: var(--clr-blue-light); }
.faq-q .icon { transition: transform .3s; font-size: 18px; }
.faq-q.active .icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s; color: var(--clr-text-muted); font-size: 14px; }
.faq-a.open { max-height: 500px; padding: 0 24px 18px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #111827; color: #D1D5DB; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-widget h3 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.footer-widget p { font-size: 14px; line-height: 1.8; }
.footer-widget a { color: #9CA3AF; font-size: 14px; display: block; margin-bottom: 10px; }
.footer-widget a:hover { color: var(--clr-green); }
.footer-bottom {
    border-top: 1px solid #1F2937; text-align: center; padding: 20px;
    font-size: 13px; color: #6B7280;
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center; color: #9CA3AF; font-size: 16px;
}
.footer-social a:hover { background: var(--clr-blue); color: #fff; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 56px; height: 56px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: var(--transition); animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes whatsapp-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */
.woocommerce ul.products li.product {
    border: 1px solid var(--clr-border); border-radius: var(--radius);
    padding: 16px; transition: var(--transition);
}
.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.woocommerce ul.products li.product .price { color: var(--clr-blue) !important; font-weight: 700; }
.woocommerce ul.products li.product .button,
.woocommerce .single_add_to_cart_button {
    background: var(--clr-blue) !important; color: #fff !important;
    border-radius: 50px !important; font-weight: 600 !important;
    padding: 10px 24px !important; transition: var(--transition) !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce .single_add_to_cart_button:hover {
    background: var(--clr-blue-dark) !important; transform: translateY(-2px);
}
.woocommerce .woocommerce-message { border-top-color: var(--clr-green); }
.woocommerce .woocommerce-info { border-top-color: var(--clr-blue); }
.woocommerce table.shop_table { border-color: var(--clr-border); }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--clr-blue) !important; color: #fff !important;
    border-radius: 8px !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-color: var(--clr-border) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--clr-blue) !important; color: #fff !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .cards-grid-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .page-banner h1 { font-size: 28px; }
    .section { padding: 50px 0; }
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-content { order: 2; }
    .hero-image { order: 1; }
}
@media (max-width: 480px) {
    .trust-bar { gap: 20px; }
    .header-inner { height: 60px; }
    .site-logo { font-size: 20px; }
}

/* ==========================================================================
   Mobile Menu (Dropdown)
   ========================================================================== */
.mobile-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--clr-white); box-shadow: var(--shadow-lg);
    z-index: 999; border-top: 2px solid var(--clr-blue);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu ul li a {
    display: block; padding: 14px 24px; font-weight: 500; color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border); font-family: var(--font-head);
    transition: var(--transition);
}
.mobile-menu ul li a:hover { background: var(--clr-blue-light); color: var(--clr-blue); }

/* ==========================================================================
   Header Search & Wishlist Icons
   ========================================================================== */
.header-icon-btn {
    background: none; border: none; cursor: pointer; color: var(--clr-text);
    font-size: 18px; padding: 6px; transition: var(--transition); position: relative;
}
.header-icon-btn:hover { color: var(--clr-blue); }
.header-icon-btn .icon-badge {
    position: absolute; top: -4px; right: -6px; background: var(--clr-green);
    color: #fff; font-size: 9px; width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ==========================================================================
   Exit / Offer Popup
   ========================================================================== */
.lofent-popup-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .4s ease;
}
.lofent-popup-overlay.active { opacity: 1; visibility: visible; }
.lofent-popup {
    background: #fff; border-radius: 20px; max-width: 520px; width: 90%;
    overflow: hidden; transform: scale(0.85); transition: transform .4s ease;
    position: relative;
}
.lofent-popup-overlay.active .lofent-popup { transform: scale(1); }
.lofent-popup-header {
    background: linear-gradient(135deg, var(--clr-blue), var(--clr-green));
    padding: 32px 32px 24px; text-align: center; color: #fff;
}
.lofent-popup-header h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.lofent-popup-header p { color: rgba(255,255,255,.9); font-size: 15px; }
.lofent-popup-body { padding: 28px 32px; }
.lofent-popup-close {
    position: absolute; top: 12px; right: 16px; background: rgba(255,255,255,.2);
    border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%;
    font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lofent-popup-close:hover { background: rgba(255,255,255,.4); }
.popup-offer-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff; display: inline-block; padding: 6px 20px; border-radius: 30px;
    font-weight: 700; font-size: 28px; margin-bottom: 12px; text-align: center;
}
.popup-countdown { display: flex; gap: 12px; justify-content: center; margin: 16px 0; }
.popup-countdown-box {
    background: var(--clr-blue); color: #fff; border-radius: 10px; padding: 10px 14px;
    text-align: center; min-width: 58px;
}
.popup-countdown-box .num { font-size: 22px; font-weight: 800; line-height: 1; display: block; }
.popup-countdown-box .lbl { font-size: 10px; text-transform: uppercase; opacity: .8; margin-top: 3px; display: block; }

/* ==========================================================================
   Countdown Offer Timer (on page)
   ========================================================================== */
.offer-timer-bar {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    color: #fff; padding: 14px 20px; text-align: center;
}
.offer-timer-bar strong { font-size: 16px; }
.timer-boxes { display: inline-flex; gap: 8px; margin-left: 16px; }
.timer-box {
    background: rgba(255,255,255,.2); border-radius: 6px; padding: 4px 10px;
    font-weight: 800; font-size: 18px; min-width: 42px; text-align: center;
    border: 1px solid rgba(255,255,255,.3);
}
.timer-sep { font-size: 20px; font-weight: 800; line-height: 32px; }

/* ==========================================================================
   Live Visitor Counter
   ========================================================================== */
.live-counter-badge {
    display: inline-flex; align-items: center; gap: 8px; background: var(--clr-green-light);
    color: var(--clr-green-dark); border: 1px solid var(--clr-green); border-radius: 30px;
    padding: 6px 16px; font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.live-dot {
    width: 8px; height: 8px; background: #16a34a; border-radius: 50%;
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

/* ==========================================================================
   Pincode Checker Widget
   ========================================================================== */
.pincode-checker {
    background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius);
    padding: 28px; margin-top: 40px;
}
.pincode-checker h3 { font-size: 20px; margin-bottom: 6px; }
.pincode-checker p { color: var(--clr-text-muted); font-size: 14px; margin-bottom: 16px; }
.pincode-form { display: flex; gap: 12px; flex-wrap: wrap; }
.pincode-input {
    flex: 1; min-width: 180px; padding: 12px 16px; border: 2px solid var(--clr-border);
    border-radius: 50px; font-size: 15px; font-family: var(--font-body);
    transition: var(--transition); outline: none;
}
.pincode-input:focus { border-color: var(--clr-blue); }
.pincode-result {
    margin-top: 12px; padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 14px; display: none;
}
.pincode-result.available { background: var(--clr-green-light); color: var(--clr-green-dark); }
.pincode-result.unavailable { background: #fee2e2; color: #dc2626; }

/* ==========================================================================
   Before / After Hydration Section
   ========================================================================== */
.before-after-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
}
.before-card {
    background: #fff5f5; border: 2px solid #fca5a5; border-radius: var(--radius); padding: 32px;
}
.after-card {
    background: var(--clr-green-light); border: 2px solid var(--clr-green); border-radius: var(--radius); padding: 32px;
}
.before-card h3 { color: #dc2626; margin-bottom: 16px; font-size: 20px; }
.after-card h3 { color: var(--clr-green-dark); margin-bottom: 16px; font-size: 20px; }
.before-card ul li, .after-card ul li {
    padding: 8px 0; border-bottom: 1px dashed rgba(0,0,0,.08); font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.vs-divider {
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; color: var(--clr-blue);
    background: var(--clr-blue-light); border-radius: 50%; width: 56px; height: 56px;
    margin: auto; position: relative; z-index: 2;
}
@media (max-width: 768px) { .before-after-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Doctor Recommended Section
   ========================================================================== */
.doctor-section {
    background: linear-gradient(135deg, #0c1445 0%, var(--clr-blue-dark) 100%);
    padding: 70px 0; color: #fff;
}
.doctor-badge {
    display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 16px 24px;
    margin-bottom: 20px; backdrop-filter: blur(10px);
}
.doctor-badge i { font-size: 36px; color: #fbbf24; }
.cert-badges-grid {
    display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; justify-content: center;
}
.cert-badge {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px; padding: 16px 20px; text-align: center; min-width: 120px;
    backdrop-filter: blur(10px); transition: var(--transition);
}
.cert-badge:hover { background: rgba(255,255,255,.2); transform: translateY(-4px); }
.cert-badge i { font-size: 28px; color: #fbbf24; margin-bottom: 8px; display: block; }
.cert-badge span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); }

/* ==========================================================================
   Technology Section (Copper + Alkaline)
   ========================================================================== */
.tech-section { background: var(--clr-bg); }
.tech-card {
    background: var(--clr-white); border-radius: 16px; padding: 36px 28px;
    border: 1px solid var(--clr-border); transition: var(--transition); text-align: center;
}
.tech-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tech-icon-wrap {
    width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 34px; margin: 0 auto 20px;
}
.tech-icon-gold { background: #fef3c7; color: #d97706; }
.tech-icon-blue { background: var(--clr-blue-light); color: var(--clr-blue); }
.tech-icon-green { background: var(--clr-green-light); color: var(--clr-green); }

/* ==========================================================================
   Video Section (on Home Page)
   ========================================================================== */
.video-section { background: #0f172a; padding: 80px 0; }
.video-section .section-header h2 { color: #fff; }
.video-section .section-header p { color: rgba(255,255,255,.7); }
.video-embed-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.5); aspect-ratio: 16/9; max-width: 900px; margin: 0 auto;
}
.video-embed-wrap iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder {
    width: 100%; height: 100%; background: linear-gradient(135deg, var(--clr-blue), var(--clr-green));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff; cursor: pointer; gap: 16px;
}
.video-play-btn {
    width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.2);
    border: 3px solid #fff; display: flex; align-items: center; justify-content: center;
    font-size: 32px; transition: var(--transition); backdrop-filter: blur(10px);
}
.video-placeholder:hover .video-play-btn { background: rgba(255,255,255,.4); transform: scale(1.1); }

/* ==========================================================================
   pH Water Info Section
   ========================================================================== */
.ph-info-section { background: linear-gradient(135deg, var(--clr-blue-light), #fff); }
.ph-scale-bar {
    height: 32px; border-radius: 16px; overflow: hidden;
    background: linear-gradient(90deg, #dc2626 0%, #f59e0b 30%, #10b981 55%, #0284c7 75%, #1e40af 100%);
    position: relative; margin: 20px 0;
}
.ph-marker {
    position: absolute; top: -28px; transform: translateX(-50%);
    font-size: 11px; font-weight: 700; white-space: nowrap;
}
.ph-marker::after {
    content: ''; position: absolute; top: 28px; left: 50%; transform: translateX(-50%);
    width: 2px; height: 32px; background: rgba(0,0,0,.4);
}
.ph-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.ph-card { text-align: center; padding: 24px 16px; border-radius: var(--radius); }
.ph-num { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
@media (max-width: 768px) { .ph-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   Blog Cards
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
    background: var(--clr-white); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--clr-border); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, var(--clr-blue-light), var(--clr-green-light));
    display: flex; align-items: center; justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img i { font-size: 48px; color: var(--clr-blue); }
.blog-card-body { padding: 24px; }
.blog-tag {
    display: inline-block; background: var(--clr-blue-light); color: var(--clr-blue);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { color: var(--clr-text-muted); font-size: 13px; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--clr-text-muted); display: flex; gap: 16px; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Star Ratings
   ========================================================================== */
.star-rating { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 6px; }
.review-card {
    background: var(--clr-white); border-radius: 16px; padding: 28px; border: 1px solid var(--clr-border);
    transition: var(--transition); position: relative;
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-card::before {
    content: '"'; position: absolute; top: 10px; left: 20px; font-size: 60px;
    color: var(--clr-blue-light); font-family: serif; line-height: 1;
}
.reviewer-info { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-blue), var(--clr-green));
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px;
    flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 15px; }
.reviewer-loc { font-size: 12px; color: var(--clr-text-muted); }
.verified-badge {
    display: inline-flex; align-items: center; gap: 4px; background: var(--clr-green-light);
    color: var(--clr-green-dark); font-size: 11px; font-weight: 600; padding: 3px 8px;
    border-radius: 20px; margin-left: 8px;
}

/* ==========================================================================
   Sticky Mobile Buy Button
   ========================================================================== */
.sticky-buy-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 8888;
    background: #fff; padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.12);
    display: none; align-items: center; justify-content: space-between; gap: 12px;
    border-top: 2px solid var(--clr-blue);
}
@media (max-width: 768px) { .sticky-buy-bar { display: flex; } }
.sticky-buy-bar .price-tag { font-size: 20px; font-weight: 800; color: var(--clr-blue); }
.sticky-buy-bar .price-orig { font-size: 13px; color: var(--clr-text-muted); text-decoration: line-through; }
.sticky-buy-bar .btn { flex: 1; text-align: center; justify-content: center; }
body { padding-bottom: 0; }
@media (max-width: 768px) { body { padding-bottom: 72px; } }

/* ==========================================================================
   Commission / Pricing Table
   ========================================================================== */
.pricing-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; }
.pricing-table th {
    background: var(--clr-blue); color: #fff; padding: 14px 16px;
    font-family: var(--font-head); font-size: 14px; text-align: left;
}
.pricing-table td { padding: 14px 16px; border-bottom: 1px solid var(--clr-border); font-size: 14px; }
.pricing-table tr:nth-child(even) td { background: var(--clr-bg); }
.pricing-table tr:hover td { background: var(--clr-blue-light); }
.pricing-table .highlight { color: var(--clr-green-dark); font-weight: 700; }

/* ==========================================================================
   Career Page - Job Cards
   ========================================================================== */
.job-card {
    background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius);
    padding: 28px; transition: var(--transition); display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
}
.job-card:hover { box-shadow: var(--shadow-lg); border-color: var(--clr-blue); transform: translateY(-2px); }
.job-info h3 { font-size: 18px; margin-bottom: 6px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.job-tag {
    background: var(--clr-blue-light); color: var(--clr-blue); font-size: 12px;
    font-weight: 600; padding: 3px 10px; border-radius: 20px;
}
.job-tag-green { background: var(--clr-green-light); color: var(--clr-green-dark); }

/* ==========================================================================
   Policy Pages
   ========================================================================== */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { color: var(--clr-blue); margin: 32px 0 12px; font-size: 22px; }
.policy-content h3 { color: var(--clr-text); margin: 24px 0 10px; font-size: 18px; }
.policy-content p, .policy-content li {
    color: var(--clr-text-muted); font-size: 15px; line-height: 1.9; margin-bottom: 12px;
}
.policy-content ul { margin-left: 20px; list-style: disc; }
.policy-update { background: var(--clr-blue-light); border-left: 4px solid var(--clr-blue); padding: 12px 16px; border-radius: 8px; margin-bottom: 32px; }

/* ==========================================================================
   Offer Banner Strip
   ========================================================================== */
.offer-strip {
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    color: #fff; text-align: center; padding: 12px 20px; font-size: 14px; font-weight: 600;
}
.offer-strip span { background: rgba(255,255,255,.2); border-radius: 4px; padding: 2px 8px; margin: 0 6px; }

/* ==========================================================================
   Stats Counter Row
   ========================================================================== */
.stats-row {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
    background: var(--clr-blue); color: #fff;
}
.stat-box { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat-box:last-child { border-right: none; }
.stat-num { font-size: 36px; font-weight: 800; display: block; font-family: var(--font-head); }
.stat-label { font-size: 13px; opacity: .85; margin-top: 4px; }
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2,1fr); } .stat-box { border-bottom: 1px solid rgba(255,255,255,.15); } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ Categories
   ========================================================================== */
.faq-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.faq-tab {
    padding: 8px 20px; border-radius: 30px; border: 2px solid var(--clr-border);
    font-weight: 600; font-size: 13px; cursor: pointer; transition: var(--transition);
    background: var(--clr-white); color: var(--clr-text-muted); font-family: var(--font-head);
}
.faq-tab.active, .faq-tab:hover { background: var(--clr-blue); color: #fff; border-color: var(--clr-blue); }

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-top {
    position: fixed; bottom: 90px; right: 24px; z-index: 8000;
    width: 44px; height: 44px; border-radius: 50%; background: var(--clr-blue);
    color: #fff; border: none; cursor: pointer; display: none; align-items: center;
    justify-content: center; font-size: 18px; box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--clr-blue-dark); transform: translateY(-3px); }

/* ==========================================================================
   Wishlist Heart Button
   ========================================================================== */
.wishlist-btn {
    background: none; border: 2px solid var(--clr-border); border-radius: 50%;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); color: var(--clr-text-muted); font-size: 16px;
}
.wishlist-btn:hover, .wishlist-btn.active { border-color: #ef4444; color: #ef4444; background: #fff5f5; }

/* ==========================================================================
   Search Box (Header)
   ========================================================================== */
.search-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.8);
    z-index: 99998; display: flex; align-items: flex-start; justify-content: center;
    padding-top: 100px; opacity: 0; visibility: hidden; transition: all .3s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box {
    width: 100%; max-width: 600px; background: #fff; border-radius: 16px;
    padding: 8px 8px 8px 20px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.search-box input {
    flex: 1; border: none; outline: none; font-size: 18px; font-family: var(--font-body);
    color: var(--clr-text);
}
.search-box button {
    background: var(--clr-blue); color: #fff; border: none; border-radius: 10px;
    padding: 12px 20px; font-size: 16px; cursor: pointer; transition: var(--transition);
}
.search-box button:hover { background: var(--clr-blue-dark); }
.search-close {
    position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,.2);
    border: none; color: #fff; font-size: 24px; cursor: pointer; border-radius: 50%;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Full Screen Splash Screen
   ========================================================================== */
.lofent-splash-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lofent-splash-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hide header, announcement bar, timer bar while splash is active */
body.splash-active .site-header,
body.splash-active .offer-timer-bar,
body.splash-active .announce-bar {
    display: none !important;
}

/* Responsive Laptop Mockup */
.lofent-laptop-mockup {
    position: relative;
    width: 88%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.lofent-laptop-screen {
    background: #0d0d0d;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px 20px 0 0;
    padding: 14px 14px 22px 14px; /* thick bottom bezel */
    box-shadow: inset 0 0 0 1px #555, 0 25px 60px rgba(0,0,0,0.8);
    position: relative;
    border: 4px solid #2a2a2a;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.lofent-laptop-camera {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    border: 1px solid #333;
    z-index: 5;
}
.lofent-laptop-camera::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 2px;
    height: 2px;
    background: #1e3a8a;
    border-radius: 50%;
}
.lofent-laptop-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}
.lofent-laptop-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    z-index: 1;
}
.lofent-laptop-base {
    position: relative;
    width: 112%;
    height: 18px;
    background: linear-gradient(to bottom, #7a7a7a 0%, #444444 100%);
    border-top: 1px solid #a6a6a6;
    border-bottom: 2px solid #222;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
}
.lofent-laptop-base-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #2a2a2a;
    border-radius: 0 0 6px 6px;
}

.lofent-splash-darken {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.lofent-splash-darken.active {
    opacity: 1;
}
.lofent-splash-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.lofent-splash-content.active {
    pointer-events: auto;
}
/* ════════════════════════════════════════════════════════
   SPLASH END OVERLAY — PREMIUM CINEMA SYSTEM
   ════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes ls-tag-in {
    0%   { opacity:0; transform:translateY(16px); filter:blur(4px); }
    100% { opacity:1; transform:translateY(0);   filter:blur(0);   }
}
@keyframes ls-price-in {
    0%   { opacity:0; transform:translateY(16px); filter:blur(4px); }
    100% { opacity:1; transform:translateY(0);   filter:blur(0);   }
}
@keyframes ls-line-expand {
    0%   { width:0;     opacity:0; }
    40%  { opacity:1; }
    100% { width:110px; opacity:1; }
}
@keyframes ls-btn-in {
    0%   { opacity:0; transform:translateY(20px) scale(0.88); }
    100% { opacity:1; transform:translateY(0)    scale(1);    }
}
@keyframes ls-glow-pulse {
    0%,100% {
        box-shadow:
            0 0 10px 2px  rgba(2,132,199,0.8),
            0 0 28px 6px  rgba(2,132,199,0.45),
            0 0 60px 12px rgba(2,132,199,0.18),
            0 8px 32px rgba(0,0,0,0.4);
    }
    50% {
        box-shadow:
            0 0 18px 4px  rgba(2,132,199,1),
            0 0 50px 12px rgba(2,132,199,0.65),
            0 0 100px 24px rgba(14,165,233,0.28),
            0 0 140px 36px rgba(14,165,233,0.10),
            0 8px 40px rgba(0,0,0,0.5);
    }
}
@keyframes ls-shimmer {
    0%   { left:-80%; opacity:0.6; }
    60%  { left:130%; opacity:0; }
    100% { left:130%; opacity:0; }
}
@keyframes ls-price-glow {
    0%,100% { text-shadow: 0 0 10px rgba(74,222,128,0.5), 0 0 24px rgba(74,222,128,0.25); }
    50%      { text-shadow: 0 0 18px rgba(74,222,128,0.9), 0 0 45px rgba(74,222,128,0.5), 0 0 70px rgba(74,222,128,0.2); }
}
@keyframes ls-arrow-bounce {
    0%,100% { transform:translateX(0); }
    50%     { transform:translateX(6px); }
}

/* ── Main Tagline (single line) ── */
.ls-tagline {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 38px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.25;
    white-space: nowrap;
    text-shadow:
        0 2px 12px rgba(0,0,0,1),
        0 4px 28px rgba(0,0,0,0.9),
        0 0  40px  rgba(0,0,0,0.7);
    opacity: 0;
}
#lofent-end-overlay.lofent-end-visible .ls-tagline {
    animation: ls-tag-in 0.7s ease 0s forwards;
}

/* ── Price Highlight (inline) ── */
.ls-price {
    display: inline;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1em;
    font-weight: 700;
    font-style: italic;
    color: #4ade80;
    opacity: 0;
    text-shadow:
        0 0  8px  rgba(0,0,0,1),
        0 2px 12px rgba(0,0,0,1),
        0 0  20px rgba(74,222,128,0.5),
        0 0  40px rgba(74,222,128,0.25);
}
#lofent-end-overlay.lofent-end-visible .ls-price {
    animation:
        ls-price-in   0.7s ease                0.18s forwards,
        ls-price-glow 2.4s ease-in-out         1.0s  infinite;
}

/* ── Divider ── */
.ls-divider {
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    margin: 22px auto 26px;
    border-radius: 2px;
    opacity: 0;
}
#lofent-end-overlay.lofent-end-visible .ls-divider {
    animation: ls-line-expand 0.55s cubic-bezier(0.22,1,0.36,1) 0.52s forwards;
}

/* ── Glow Button ── */
.lofent-glow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 42px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 55%, #0369a1 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#lofent-end-overlay.lofent-end-visible .lofent-glow-btn {
    animation:
        ls-btn-in     0.6s ease                0.38s forwards,
        ls-glow-pulse 2.2s ease-in-out         1.1s  infinite;
}
.lofent-glow-btn:hover {
    transform: translateY(-4px) scale(1.04) !important;
    color: #fff;
}

/* ── Shimmer ── */
.ls-btn-shimmer {
    position: absolute;
    top: 0; bottom: 0;
    left: -80%;
    width: 55%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
    transform: skewX(-15deg);
    pointer-events: none;
}
#lofent-end-overlay.lofent-end-visible .ls-btn-shimmer {
    animation: ls-shimmer 3s ease-in-out 2s infinite;
}

/* ── Arrow bounce ── */
.ls-arrow {
    display: inline-block;
}
#lofent-end-overlay.lofent-end-visible .lofent-glow-btn .ls-arrow {
    animation: ls-arrow-bounce 1.4s ease-in-out 2.2s infinite;
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .ls-tagline      { font-size: 20px; white-space: normal; }
    .lofent-glow-btn { font-size: 12px; padding: 12px 28px; letter-spacing: 1.2px; gap: 8px; }
}

/* Glassmorphism sound/unmute button (Centered & Pulsating) */
.lofent-splash-unmute-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 22px 36px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 15;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    width: 250px;
}
.lofent-unmute-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    animation: pulseSound 2.2s infinite;
}
.lofent-splash-unmute-btn:hover {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -52%) scale(1.03);
}
.lofent-splash-unmute-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -40%) scale(0.9);
}
@keyframes pulseSound {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

/* Tagline styled text */
.lofent-splash-tagline {
    color: #ffffff;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    line-height: 1.4;
}
.lofent-splash-btn-wrap.show .lofent-splash-tagline {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .lofent-laptop-screen {
        padding: 10px 10px 16px 10px;
        border-radius: 14px 14px 0 0;
        border-width: 3px;
    }
    .lofent-laptop-base {
        height: 14px;
        border-radius: 0 0 12px 12px;
    }
    .lofent-laptop-base-notch {
        width: 60px;
        height: 5px;
    }
    .lofent-splash-unmute-btn {
        padding: 16px 28px;
        width: 220px;
    }
    .lofent-unmute-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .lofent-splash-btn {
        font-size: 16px;
        padding: 12px 36px;
    }
    .lofent-splash-tagline {
        font-size: 18px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .lofent-laptop-screen {
        padding: 8px 8px 12px 8px;
        border-radius: 10px 10px 0 0;
        border-width: 2px;
    }
    .lofent-laptop-base {
        height: 10px;
        border-radius: 0 0 8px 8px;
    }
    .lofent-laptop-base-notch {
        width: 44px;
        height: 4px;
    }
    .lofent-splash-unmute-btn {
        padding: 12px 20px;
        width: 180px;
        gap: 8px;
    }
    .lofent-unmute-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .lofent-splash-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
    .lofent-splash-tagline {
        font-size: 15px;
        margin-bottom: 14px;
    }
}

/* Play prompt if blocked */
.lofent-splash-prompt {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.lofent-splash-prompt.hidden {
    opacity: 0;
    pointer-events: none;
}
.lofent-play-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}
.lofent-splash-prompt:hover .lofent-play-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 40px rgba(255,255,255,0.4);
}
.lofent-play-text {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Dropdown Menu Navigation
   ========================================================================== */
.main-nav ul li {
    position: relative;
}
.main-nav ul li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.main-nav ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--clr-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 210px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 3px solid var(--clr-blue);
    border-left: 1px solid var(--clr-border);
    border-right: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}
.main-nav .sub-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
}
.main-nav .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--clr-text);
    white-space: nowrap;
    width: 100%;
    transition: var(--transition);
    font-family: var(--font-head);
    font-weight: 500;
    text-align: left;
}
.main-nav .sub-menu li a:hover {
    background: var(--clr-blue-light);
    color: var(--clr-blue);
}
.main-nav .sub-menu li a::after {
    display: none; /* No underline effect for dropdown links */
}

/* Mobile dropdown adjustment */
.mobile-menu ul li.menu-item-has-children {
    display: flex;
    flex-direction: column;
}
.mobile-menu ul li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-menu .sub-menu {
    display: none;
    background: #fcfcfc;
    padding-left: 20px;
    border-left: 3px solid var(--clr-blue-light);
}
.mobile-menu .sub-menu.open {
    display: block;
}
.mobile-menu .sub-menu li a {
    padding: 10px 20px;
    font-size: 13px;
}



/* ════════════════════════════════════════════════════════════════
   HOMEPAGE — PREMIUM SECTION STYLES
   Background: white 80% | blue 10% | green 10%
   ════════════════════════════════════════════════════════════════ */

/* ── Shared Section Utilities ── */
.section {
    padding: 80px 0;
}
.section-sm {
    padding: 50px 0;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}
.section-header h2 {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    color: var(--clr-text);
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-header p {
    font-size: 17px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-blue-light), #dbeafe);
    color: var(--clr-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-tag.green {
    background: linear-gradient(135deg, var(--clr-green-light), #bbf7d0);
    color: var(--clr-green-dark);
}

/* ── Banner Carousel ── */
.lfm-banner-carousel {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #0f172a;
}
.lfm-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.lfm-carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.lfm-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lfm-carousel-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2d40 50%, #1a3a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    gap: 14px;
}
.lfm-carousel-placeholder i {
    font-size: 48px;
}
.lfm-carousel-placeholder span {
    font-family: var(--font-head);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.lfm-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 10;
}
.lfm-arrow-prev { left: 20px; }
.lfm-arrow-next { right: 20px; }
.lfm-carousel-arrow:hover {
    background: rgba(2,132,199,0.7);
    transform: translateY(-50%) scale(1.1);
}
.lfm-carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.lfm-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}
.lfm-carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
}

/* ── Why Choose — Icon Grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(2,132,199,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(2,132,199,0.08);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(2,132,199,0.16);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}
.why-icon.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: var(--clr-blue); }
.why-icon.green { background: linear-gradient(135deg, var(--clr-green-light), #bbf7d0); color: var(--clr-green-dark); }
.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ── Product Benefits — Alternating ── */
.benefit-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.benefit-row:last-child { margin-bottom: 0; }
.benefit-row.reverse { flex-direction: row-reverse; }
.benefit-img {
    flex: 1;
    min-height: 280px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(2,132,199,0.4);
    font-size: 48px;
    flex-shrink: 0;
}
.benefit-img.blue-ph { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }
.benefit-img.green-ph { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); color: rgba(22,163,74,0.4); }
.benefit-text { flex: 1; }
.benefit-text h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 14px;
    line-height: 1.2;
}
.benefit-text p {
    font-size: 16px;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}
.benefit-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.benefit-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--clr-text);
    list-style: none;
}
.benefit-checks li i {
    color: var(--clr-green-dark);
    font-size: 16px;
    flex-shrink: 0;
}

/* ── Featured Products + Filter ── */
.products-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.prod-search-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 360px;
}
.prod-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-muted);
    font-size: 14px;
}
.prod-search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1.5px solid var(--clr-border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--clr-text);
    background: #fff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.prod-search-input:focus {
    border-color: var(--clr-blue);
    box-shadow: 0 0 0 3px rgba(2,132,199,0.12);
}
.cat-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cat-tab {
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--clr-border);
    background: #fff;
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}
.cat-tab:hover, .cat-tab.active {
    background: var(--clr-blue);
    border-color: var(--clr-blue);
    color: #fff;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(2,132,199,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(2,132,199,0.15);
}
.product-card.hidden { display: none; }
.product-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(2,132,199,0.3);
}
.product-card-img.bp1 { background: linear-gradient(135deg,#e0f2fe,#bae6fd); }
.product-card-img.bp2 { background: linear-gradient(135deg,#dcfce7,#bbf7d0); color:rgba(22,163,74,0.3); }
.product-card-img.bp3 { background: linear-gradient(135deg,#fef3c7,#fde68a); color:rgba(217,119,6,0.3); }
.product-card-img.bp4 { background: linear-gradient(135deg,#ede9fe,#ddd6fe); color:rgba(109,40,217,0.3); }
.product-card-body {
    padding: 18px;
}
.product-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 6px;
}
.product-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-blue);
    margin-bottom: 14px;
}
.product-card-price del {
    font-size: 13px;
    color: var(--clr-text-muted);
    font-weight: 400;
    margin-left: 6px;
}

/* ── pH Scale Section ── */
.ph-scale-wrap {
    max-width: 700px;
    margin: 0 auto 50px;
}
.ph-scale-bar {
    height: 20px;
    border-radius: 50px;
    background: linear-gradient(90deg,
        #dc2626 0%, #ea580c 10%, #d97706 20%,
        #ca8a04 30%, #65a30d 40%, #16a34a 50%,
        #0891b2 62%, #0284c7 72%, #1d4ed8 82%,
        #7c3aed 92%, #6d28d9 100%);
    position: relative;
    margin-bottom: 14px;
}
.ph-marker {
    position: absolute;
    top: -32px;
    transform: translateX(-50%);
    text-align: center;
}
.ph-marker-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin: 0 auto 4px;
    position: relative;
    top: 36px;
}
.ph-marker-label {
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--clr-text);
}
.ph-scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--clr-text-muted);
    margin-top: 8px;
}
.ph-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.ph-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.ph-card .ph-val {
    font-size: 52px;
    font-weight: 900;
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 8px;
}
.ph-card.neutral .ph-val { color: #16a34a; }
.ph-card.lofent .ph-val { color: var(--clr-blue); }
.ph-card.acidic .ph-val { color: #dc2626; }
.ph-card h4 { font-size: 15px; font-weight: 700; color: var(--clr-text); margin-bottom: 6px; }
.ph-card p  { font-size: 13px; color: var(--clr-text-muted); }

/* ── Before / After ── */
.ba-card {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    display: flex;
}
.ba-before, .ba-after {
    flex: 1;
    padding: 40px 36px;
}
.ba-before {
    background: linear-gradient(135deg,#fff1f2,#ffe4e6);
    border-right: 2px dashed rgba(0,0,0,0.08);
}
.ba-after {
    background: linear-gradient(135deg,#f0fdf4,#dcfce7);
}
.ba-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ba-before .ba-label { color: #dc2626; }
.ba-after  .ba-label { color: #16a34a; }
.ba-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--clr-text);
}
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ba-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--clr-text); }
.ba-list li i { font-size: 16px; flex-shrink: 0; }
.ba-before .ba-list li i { color: #dc2626; }
.ba-after  .ba-list li i { color: #16a34a; }

/* ── Doctor Recommended ── */
.cert-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.cert-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.12);
    transition: transform 0.3s ease;
}
.cert-card:hover { transform: translateY(-6px); }
.cert-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg,#dcfce7,#bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--clr-green-dark);
    margin: 0 auto 18px;
}
.cert-card h3 { font-size: 17px; font-weight: 700; color: var(--clr-text); margin-bottom: 8px; }
.cert-card p  { font-size: 13px; color: var(--clr-text-muted); }
.doctor-quote {
    background: #fff;
    border-radius: 20px;
    padding: 36px 44px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(22,163,74,0.08);
    border-left: 4px solid var(--clr-green-dark);
    max-width: 740px;
    margin: 0 auto;
}
.doctor-quote blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 16px;
}
.doctor-quote cite { font-size: 13px; color: var(--clr-text-muted); font-weight: 600; }

/* ── Technology Cards ── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.tech-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 4px solid var(--clr-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tech-card.green-top { border-top-color: var(--clr-green-dark); }
.tech-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(2,132,199,0.14); }
.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--clr-blue);
    margin-bottom: 20px;
}
.tech-card.green-top .tech-icon {
    background: linear-gradient(135deg,#dcfce7,#bbf7d0);
    color: var(--clr-green-dark);
}
.tech-card h3 { font-size: 20px; font-weight: 800; color: var(--clr-text); margin-bottom: 10px; }
.tech-card p  { font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; }
.tech-strip {
    background: linear-gradient(135deg,#0f172a,#1e3a5f);
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.tech-strip i { color: #4ade80; font-size: 22px; flex-shrink: 0; }

/* ── Video Section ── */
.video-section {
    background: linear-gradient(135deg,#0f172a 0%,#1e3a5f 50%,#0f2d1a 100%);
    padding: 80px 0;
    text-align: center;
}
.video-section .section-header h2 { color: #fff; }
.video-section .section-header p  { color: rgba(255,255,255,0.65); }
.video-section .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.video-wrap {
    max-width: 820px;
    margin: 0 auto 32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.video-wrap video { width: 100%; display: block; border-radius: 20px; }
.video-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.video-pill {
    padding: 8px 22px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
}

/* ── Reviews ── */
.reviews-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reviews-row::-webkit-scrollbar { display: none; }
.review-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(2,132,199,0.08);
    border: 1px solid rgba(2,132,199,0.08);
    scroll-snap-align: start;
    flex-shrink: 0;
}
.review-stars { color: #f59e0b; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--clr-text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg,#dbeafe,#bfdbfe);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: var(--clr-blue);
    flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--clr-text); }
.review-city { font-size: 12px; color: var(--clr-text-muted); }
.verified-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: #dcfce7; color: #15803d;
    font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 50px;
    margin-top: 4px;
}

/* ── Offer Banner ── */
.offer-banner-section {
    background: linear-gradient(135deg, #0284C7 0%, #0ea5e9 40%, #16a34a 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.offer-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.04) 20px,
        rgba(255,255,255,0.04) 40px
    );
}
.offer-banner-section .container { position: relative; z-index: 1; }
.offer-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.3);
}
.offer-banner-section h2 {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    font-family: var(--font-head);
}
.offer-banner-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.offer-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.offer-btns .btn-white {
    background: #fff;
    color: var(--clr-blue);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.offer-btns .btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.2); }
.offer-btns .btn-outline-white {
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: background 0.25s ease;
}
.offer-btns .btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── CTA Cards ── */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.cta-card {
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}
.cta-card.blue-card { background: linear-gradient(135deg,#eff6ff,#dbeafe); }
.cta-card.blue-card::before { background: var(--clr-blue); }
.cta-card.green-card { background: linear-gradient(135deg,#f0fdf4,#dcfce7); }
.cta-card.green-card::before { background: var(--clr-green-dark); }
.cta-card.dark-card { background: linear-gradient(135deg,#0f172a,#1e293b); }
.cta-card.dark-card::before { background: #4ade80; }
.cta-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.cta-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.cta-card.blue-card .cta-card-icon { background: linear-gradient(135deg,var(--clr-blue),var(--clr-blue-dark)); color: #fff; }
.cta-card.green-card .cta-card-icon { background: linear-gradient(135deg,#16a34a,#15803d); color: #fff; }
.cta-card.dark-card .cta-card-icon { background: linear-gradient(135deg,#1d4ed8,#4ade80); color: #fff; }
.cta-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.cta-card.blue-card h3, .cta-card.green-card h3 { color: var(--clr-text); }
.cta-card.dark-card h3 { color: #fff; }
.cta-card p { font-size: 14px; margin-bottom: 24px; }
.cta-card.blue-card p, .cta-card.green-card p { color: var(--clr-text-muted); }
.cta-card.dark-card p { color: rgba(255,255,255,0.6); }

/* ── Lifestyle Grid ── */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-bottom: 52px;
}
.lifestyle-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}
.lifestyle-card:hover { transform: translateY(-6px); }
.lifestyle-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.lifestyle-img.lf1 { background: linear-gradient(135deg,#dcfce7,#bbf7d0); color: rgba(22,163,74,0.4); }
.lifestyle-img.lf2 { background: linear-gradient(135deg,#dbeafe,#bfdbfe); color: rgba(2,132,199,0.4); }
.lifestyle-img.lf3 { background: linear-gradient(135deg,#e0f2fe,#bae6fd); color: rgba(14,165,233,0.4); }
.lifestyle-img.lf4 { background: linear-gradient(135deg,#dcfce7,#dbeafe); color: rgba(22,163,74,0.35); }
.lifestyle-body { background: #fff; padding: 20px; }
.lifestyle-body h4 { font-size: 16px; font-weight: 700; color: var(--clr-text); margin-bottom: 6px; }
.lifestyle-body p  { font-size: 13px; color: var(--clr-text-muted); }

/* ── Newsletter Strip ── */
.newsletter-strip {
    background: linear-gradient(135deg,#1e3a5f,#0f172a);
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.newsletter-strip h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.newsletter-strip p  { font-size: 14px; color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 260px; max-width: 420px; }
.newsletter-input {
    flex: 1;
    padding: 13px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.25s ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.5); }

/* ── Fade-in on Scroll ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Rating Badge ── */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,#fef3c7,#fde68a);
    color: #92400e;
    font-size: 15px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
    .why-grid      { grid-template-columns: repeat(2,1fr); }
    .products-grid { grid-template-columns: repeat(2,1fr); }
    .tech-grid     { grid-template-columns: 1fr 1fr; }
    .lifestyle-grid{ grid-template-columns: repeat(2,1fr); }
    .section-header h2 { font-size: 32px; }
}
@media (max-width: 768px) {
    .section { padding: 52px 0; }
    .lfm-banner-carousel { height: 220px; }
    .lfm-carousel-arrow  { width: 36px; height: 36px; font-size: 14px; }
    .benefit-row, .benefit-row.reverse { flex-direction: column; gap: 32px; }
    .ba-card { flex-direction: column; }
    .cert-cards, .ph-cards { grid-template-columns: 1fr; }
    .cta-grid     { grid-template-columns: 1fr; }
    .why-grid     { grid-template-columns: 1fr 1fr; }
    .offer-banner-section h2 { font-size: 28px; }
    .newsletter-strip { flex-direction: column; text-align: center; }
    .products-filter-bar { flex-direction: column; align-items: stretch; }
    .prod-search-wrap { max-width: 100%; }
    .section-header h2 { font-size: 26px; }
}
@media (max-width: 480px) {
    .why-grid      { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .lifestyle-grid{ grid-template-columns: 1fr 1fr; }
    .tech-grid     { grid-template-columns: 1fr; }
    .review-card   { min-width: 260px; }
}

/* ==========================================================================
   FontAwesome Icon Rendering & Reset Fixes (Global Override)
   ========================================================================== */
i[class^="fa-"], i[class*=" fa-"],
span[class^="fa-"], span[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1 !important;
}

/* Force Brands font family for brand icons */
i.fa-brands, span.fa-brands {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "FontAwesome Brands" !important;
    font-weight: 400 !important;
}

/* Force Regular weight for regular icons */
i.fa-regular, span.fa-regular {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 400 !important;
}
