/* ========== FRONTEND BASE + NAV RESET FIX ========== */
/* Fixes pages that use global.css without index.css. */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

body * {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

.main-header a,
.nav-menu a,
.dropdown-toggle,
.dropdown-content a {
    color: #111111;
    text-decoration: none !important;
}

.nav-menu > a:hover,
.dropdown-toggle:hover,
.dropdown-content a:hover {
    color: #971D37;
}

.lg-site-search-toggle {
    color: #111111;
    text-decoration: none;
    font-family: inherit;
}

.dropdown-content a {
    color: #333333 !important;
    text-decoration: none !important;
}

.logo img,
.site-lg-logo {
    width: auto !important;
    height: 34px !important;
    max-width: 140px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .logo img,
    .site-lg-logo {
        height: 40px !important;
        max-width: 140px !important;
    }
}

/* =========================================================
   GLOBAL.CSS - extracted from index.css for global components
   Scope: marquee, navbar, mobile nav, latest promo popup,
   OHSEM sticker, WhatsApp widget.
   ========================================================= */

/* ========== PROMO MARQUEE (STICKY TOP) ========== */
.promo-marquee {
    background: #971D37;
    color: #e4dbd3;
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.marquee-content {
    display: inline-block;
    animation: scrollMarquee 40s linear infinite;
}
.marquee-content span {
    margin-right: 48px;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== MAIN HEADER & NAVIGATION ========== */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 44px;
    z-index: 1001;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 14px 14px;
}
.logo {
    flex-shrink: 0;
}
.logo img {
    height: 34px;
    width: auto;
    display: block;
}
.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.nav-menu > a,
.nav-menu > .dropdown {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 12px;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-menu > *:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: #d0d0d0;
    font-weight: 400;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown-content a {
    display: block;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    background: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-content a:hover {
    background: #971D37;
    color: #fff;
}
.mobile-menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    margin-left: auto;
}
.nav-menu .dropdown:hover .dropdown-content,
.nav-menu .dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== LATEST PROMO MODAL / POPUP ========== */
.promo-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.promo-modal-card {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    width: 90%;
    max-width: 820px;
    background: #9C0E2E;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    padding-bottom: 14px;
}
.close-modal-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #9C0E2E;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px 8px 24px;
}
.modal-header h1, .modal-header .modal-title {
    margin: 0 0 0 270px;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}
.header-logo {
    width: 63px;
    height: auto;
    display: block;
    flex-shrink: 0;
    margin-top: 4px;
}
.modal-body-flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 18px;
    background: #9C0E2E;
    padding: 8px 22px 0 10px;
}
.sidebar {
    width: 168px;
    flex: 0 0 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 92px 0 0 0;
    margin: 0;
    background: transparent;
}
.sidebar button {
    width: 100%;
    max-width: 150px;
    min-height: 84px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1.5px solid #fff;
    border-radius: 28px;
    background: transparent;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.02;
    text-align: left;
    cursor: pointer;
    transition: 0.25s ease;
}
.sidebar button.active {
    background: #fff;
    color: #9C0E2E;
    box-shadow: none;
}
.sidebar button:hover:not(.active) {
    background: rgba(255,255,255,0.2);
}
.main-content-area {
    flex: 1;
    padding: 0;
    text-align: center;
    background: #9C0E2E;
    color: #fff;
}
.slider-wrapper-main {
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 14px;
}
.slider-track {
    display: flex;
    transition: transform 0.35s ease-in-out;
    will-change: transform;
}
.slide {
    min-width: 220px;
    flex: 0 0 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.slider-img-dua {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 18px;
}
.dot {
    width: 10px;
    height: 10px;
    background: #d9d9d9;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
.dot.active {
    width: 22px;
    background: #c9002c;
    border-radius: 10px;
}
.white-box {
    margin: 0;
    padding: 26px 24px 20px;
    border-radius: 40px;
    background: url("../../Background.webp") center / cover no-repeat;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.white-box .cooling-badge {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 20px;
    border-radius: 40px;
    background: #c9002c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.white-box .price-big {
    margin: 5px 0;
    color: #c9002c;
    font-size: 24px;
    font-weight: 800;
}
.white-box .description-box {
    margin: 15px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}
.white-box .description-box strong {
    color: #9C0E2E;
}
.white-box .description-box p {
    color: #555;
    font-size: 12px;
}
.whatsapp-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    margin: 10px 0;
    padding: 12px 38px;
    border-radius: 999px;
    background: #9C0E2E;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(37,211,102,0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: breathingBtn 2.5s ease-in-out infinite;
}
.whatsapp-btn::before,
.whatsapp-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    animation: bubbleFloat 4s ease-in-out infinite;
}
.whatsapp-btn::before {
    top: 50%;
    left: 12px;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
}
.whatsapp-btn::after {
    top: 28%;
    right: 18px;
    width: 22px;
    height: 22px;
    animation-delay: 1.2s;
}
.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 28px rgba(37,211,102,0.35);
}
@keyframes bubbleFloat {
    0% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
    25% { transform: translateY(-58%) translateX(6px); opacity: 0.75; }
    50% { transform: translateY(-45%) translateX(-4px); opacity: 0.45; }
    75% { transform: translateY(-55%) translateX(5px); opacity: 0.7; }
    100% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
}
@keyframes breathingBtn {
    0% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
    50% { transform: scale(1.06); box-shadow: 0 14px 30px rgba(37,211,102,0.45); }
    100% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
}
.new-customer-card {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px 25px;
    text-align: center;
    border-radius: 30px;
    background: url("../../Background.webp") center / cover no-repeat;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.new-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    border-radius: 20px;
}
.new-text-small {
    margin-bottom: 5px;
    color: #9C0E2E;
    font-size: 15px;
}
.new-text-big {
    margin-bottom: 10px;
    color: #9C0E2E;
    font-size: 26px;
    font-weight: 800;
}
.new-text-desc {
    margin-bottom: 20px;
    color: #9C0E2E;
    font-size: 14px;
}
.terms-note {
    margin-top: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 10px;
}
#openPromoBtn {
    position: fixed;
    top: 45%;
    right: -60px;
    transform: translateY(-50%) rotate(-90deg);
    background: #9C0E2E;
    color: #ffffff;
    border: none;
    padding: 15px 28px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    z-index: 3002;
    box-shadow: -8px 8px 15px rgba(156,14,46,0.5);
    border-radius: 10px 10px 0 0;
    white-space: nowrap;
}

/* ========== OHSEM STICKER ========== */
#ohsemSticker {
    position: fixed;
    left: 15px;
    bottom: 20px;
    width: 160px;
    height: 160px;
    z-index: 1000;
    cursor: pointer;
    overflow: hidden;
    background: transparent;
    animation: stickerBreath 2s ease-in-out infinite;
}
#ohsemSticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
#ohsemSticker:hover {
    animation-play-state: paused;
    transform: scale(1.08);
}
@keyframes stickerBreath {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}


/* ========== GLOBAL WHATSAPP FLOAT / HOVER WIDGET ========== */
/*
   One global design for every page.
   Preferred HTML:
   <div class="whatsapp-widget" id="whatsappWidget">
       <button class="whatsapp-main-btn" id="whatsappToggle" type="button"><i class="fab fa-whatsapp"></i></button>
       <a class="whatsapp-popup-btn">WhatsApp us</a>
   </div>

   Legacy HTML still supported:
   <a class="whatsapp-float"><i class="fab fa-whatsapp"></i></a>
*/
.whatsapp-widget,
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 4000;
}

.whatsapp-widget {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
}

.whatsapp-main-btn,
.whatsapp-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #25D366;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-main-btn:hover,
.whatsapp-float:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.28);
}

.whatsapp-popup-btn,
.whatsapp-float::before {
    height: 48px;
    min-width: 145px;
    padding: 0 18px;
    border-radius: 10px;
    background: #25D366;
    color: #ffffff !important;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.20);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.whatsapp-popup-btn {
    display: inline-flex;
    text-decoration: none;
    transform: translateX(12px);
}

.whatsapp-widget:hover .whatsapp-popup-btn,
.whatsapp-widget.active .whatsapp-popup-btn {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-float::before {
    content: "WhatsApp us";
    position: absolute;
    right: 66px;
    top: 50%;
    display: flex;
    transform: translateY(-50%) translateX(12px);
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ========== MOBILE GLOBAL HEADER / MENU ========== */
@media (max-width: 1024px) {
    .main-header,
    .header-inner {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    .header-inner {
        position: relative !important;
        padding: 12px 16px !important;
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        line-height: 1 !important;
        z-index: 5001 !important;
        width: 36px !important;
        height: 36px !important;
        margin-left: auto !important;
        cursor: pointer;
    }
    .nav-menu {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 18px !important;
        box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important;
        border-top: 1px solid #eeeeee !important;
        z-index: 5000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transform: translateY(-8px) !important;
        transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, padding 0.25s ease !important;
    }
    .nav-menu.mobile-nav-active {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: calc(100vh - 110px) !important;
        padding: 10px 18px 26px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transform: translateY(0) !important;
    }
    .nav-menu > a,
    .nav-menu > .dropdown {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
        font-weight: 500 !important;
        border-bottom: 1px solid #eeeeee !important;
        white-space: normal !important;
        box-sizing: border-box !important;
        color: #1a1a1a !important;
    }
    .nav-menu > *::after,
    .nav-menu .dropdown::after {
        display: none !important;
        content: none !important;
    }
    .nav-menu > a:hover,
    .nav-menu > .dropdown:hover > a {
        color: #c9002c !important;
    }
    .dropdown {
        padding-bottom: 0 !important;
        position: relative !important;
        width: 100% !important;
    }
    .dropdown-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
        font-weight: 500 !important;
        color: #1a1a1a !important;
        cursor: pointer;
    }
    .dropdown-toggle i {
        font-size: 11px !important;
        transition: transform 0.2s ease !important;
    }
    .dropdown.show .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }
    .nav-menu .dropdown-content,
    .dropdown .dropdown-content,
    .nav-menu .dropdown:hover .dropdown-content,
    .dropdown:hover .dropdown-content {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 4px 0 0 12px !important;
        margin: 0 !important;
        min-width: 100% !important;
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        background: transparent !important;
        transition: none !important;
    }
    .nav-menu .dropdown.show .dropdown-content,
    .dropdown.show .dropdown-content {
        display: block !important;
    }
    .dropdown-content a {
        display: block !important;
        width: 100% !important;
        padding: 9px 0 !important;
        font-size: 12.5px !important;
        line-height: 1.25 !important;
        font-weight: 500 !important;
        background: transparent !important;
        color: #333333 !important;
        border: none !important;
    }
    .dropdown-content a:hover {
        background: transparent !important;
        color: #971D37 !important;
    }
}

@media (max-width: 768px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .promo-marquee {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 3000 !important;
    }
    .main-header {
        position: fixed !important;
        top: 43px !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 2999 !important;
        background: #fff !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    body {
        padding-top: 115px !important;
    }
    .promo-marquee, .hero, main, footer {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .nav-menu {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }
    #ohsemSticker {
        width: 125px;
        height: 125px;
        left: 10px;
        bottom: 15px;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 18px;
        font-size: 28px;
    }
    .whatsapp-float::before {
        right: 62px;
        height: 48px;
        min-width: 132px;
        padding: 0 14px;
        font-size: 14px;
    }
    .whatsapp-widget {
        right: 16px;
        bottom: 18px;
    }
    .whatsapp-main-btn {
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    #openPromoBtn {
        right: -52px !important;
        padding: 12px 22px !important;
        font-size: 12px !important;
        z-index: 3002 !important;
    }
}

@media (max-width: 650px) {
    .promo-modal-card {
        width: 92%;
        max-width: 360px;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 18px;
    }
    .modal-header {
        padding: 16px;
        justify-content: center;
    }
    .modal-header h1, .modal-header .modal-title {
        margin-left: 0 !important;
        font-size: 22px !important;
        text-align: center;
    }
    .header-logo {
        width: 45px;
    }
    .modal-body-flex {
        flex-direction: column;
        gap: 10px;
        padding: 10px 14px 18px;
    }
    .sidebar {
        width: 100%;
        flex: none;
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }
    .sidebar button {
        width: 100%;
        max-width: 100%;
        min-height: 54px;
        border-radius: 22px;
        justify-content: center;
        text-align: center;
        font-size: 15px;
        padding: 10px 14px;
    }
    .main-content-area {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }
    .slider-wrapper-main {
        max-width: 100%;
        overflow: hidden;
    }
    .slider-track {
        gap: 0;
    }
    .slide {
        min-width: 100% !important;
        flex: 0 0 100% !important;
        display: flex;
        justify-content: center;
    }
    .slider-img-dua {
        width: 100% !important;
        height: auto;
        max-height: 240px;
        object-fit: cover;
    }
    .white-box {
        border-radius: 24px;
        padding: 18px 14px;
    }
    .whatsapp-btn {
        width: 100%;
        padding: 12px 14px;
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-menu > a,
    .nav-menu > .dropdown,
    .dropdown-toggle {
        font-size: 12.5px !important;
    }
    .dropdown-content a {
        font-size: 12px !important;
    }
    .mobile-menu-btn {
        font-size: 22px !important;
    }
}


/* ===== GLOBAL FINAL FLOAT OVERRIDES ===== */
#openPromoBtn {
    position: fixed !important;
    top: 45% !important;
    right: -60px !important;
    transform: translateY(-50%) rotate(-90deg) !important;
    background: #9C0E2E !important;
    color: #ffffff !important;
    border: none !important;
    padding: 15px 28px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    z-index: 3002 !important;
    box-shadow: -8px 8px 15px rgba(156,14,46,0.5) !important;
    border-radius: 10px 10px 0 0 !important;
    white-space: nowrap !important;
}
.whatsapp-widget {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    z-index: 4000 !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    gap: 8px !important;
}
.whatsapp-main-btn {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    border: none !important;
    background: #25D366 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}
.whatsapp-popup-btn {
    height: 48px !important;
    min-width: 145px !important;
    padding: 0 18px !important;
    border-radius: 10px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.20) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(12px) !important;
    transition: opacity 0.28s ease, transform 0.28s ease !important;
}
.whatsapp-widget:hover .whatsapp-popup-btn,
.whatsapp-widget.active .whatsapp-popup-btn {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}
@media (max-width: 768px) {
    .whatsapp-widget {
        right: 16px !important;
        bottom: 18px !important;
    }
    .whatsapp-main-btn {
        width: 52px !important;
        height: 52px !important;
        font-size: 28px !important;
    }
    #openPromoBtn {
        right: -52px !important;
        padding: 12px 22px !important;
        font-size: 12px !important;
    }
}


/* SEO/accessibility: meaningful page H1 without changing existing design */
.seo-page-title {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* ========== FINAL SAFE LOGO FIX - DO NOT BROADEN ========== */
/* Main top navigation LG logo only */
.main-header .logo img,
.header-inner .logo img,
.logo img.site-lg-logo,
.logo a img.site-lg-logo,
.logo a img[src*="LG-logo"],
.logo a img[src*="LG-Logo"] {
    width: auto !important;
    height: 48px !important;
    max-height: 48px !important;
    max-width: 150px !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: block !important;
}

/* LG Subscribe logo general safety */
img.lg-subscribe-logo-img[src*="lgsubscribe"] {
    width: auto !important;
    max-width: 250px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: inline-block !important;
    transform: none !important;
}

/* Homepage hero LG Subscribe logo */
.hero-logo-title img.lg-subscribe-logo-img[src*="lgsubscribe"],
.hero-overlay-content .hero-logo-title img.lg-subscribe-logo-img[src*="lgsubscribe"] {
    width: 250px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
}

/* Product pricing / subscription card LG Subscribe logo */
.price-card img.lg-subscribe-logo-img[src*="lgsubscribe"],
.pricing-card img.lg-subscribe-logo-img[src*="lgsubscribe"],
.subscription-card img.lg-subscribe-logo-img[src*="lgsubscribe"],
.price-section img.lg-subscribe-logo-img[src*="lgsubscribe"],
.price-wrapper img.lg-subscribe-logo-img[src*="lgsubscribe"],
.product-price img.lg-subscribe-logo-img[src*="lgsubscribe"],
.pricing-box img.lg-subscribe-logo-img[src*="lgsubscribe"],
.plan-card img.lg-subscribe-logo-img[src*="lgsubscribe"] {
    width: auto !important;
    max-width: 220px !important;
    height: auto !important;
    max-height: 58px !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: inline-block !important;
}

@media (max-width: 768px) {
    .main-header .logo img,
    .header-inner .logo img,
    .logo img.site-lg-logo,
    .logo a img.site-lg-logo,
    .logo a img[src*="LG-logo"],
    .logo a img[src*="LG-Logo"] {
        height: 42px !important;
        max-height: 42px !important;
        max-width: 130px !important;
    }

    .hero-logo-title img.lg-subscribe-logo-img[src*="lgsubscribe"],
    .hero-overlay-content .hero-logo-title img.lg-subscribe-logo-img[src*="lgsubscribe"] {
        width: 220px !important;
        max-height: none !important;
    }

    .price-card img.lg-subscribe-logo-img[src*="lgsubscribe"],
    .pricing-card img.lg-subscribe-logo-img[src*="lgsubscribe"],
    .subscription-card img.lg-subscribe-logo-img[src*="lgsubscribe"],
    .price-section img.lg-subscribe-logo-img[src*="lgsubscribe"],
    .pricing-box img.lg-subscribe-logo-img[src*="lgsubscribe"] {
        max-width: 180px !important;
        max-height: 48px !important;
    }
}
/* ========== SAFE IMAGE SEO ATTRIBUTE HANDLING ========== */
img { max-width:100%; height:auto; }
.logo img, .header-logo, img[src*=logo], img[src*=Logo], img[src*=cplg], img[src*=lgsubscribe], img[src*=OHSEM50], img[src*=whatsapp], img[alt*=Logo], img[alt*="LG Subscribe"] { height:auto!important; object-fit:contain!important; }


/* ========== ABOUT LG UNDER CONTACT DROPDOWN ========== */
.contact-dropdown-link {
    display: block;
    white-space: nowrap;
}
/* Technical SEO trust notices */
.seo-agent-disclaimer {
    margin: 28px auto 0;
    width: calc(100% - 80px);
    max-width: 1760px;
    padding: 48px 12px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: inherit;
    font-size: 16px;
    line-height: 1.45;
    opacity: 1;
    text-align: left;
}

.seo-agent-disclaimer p {
    margin: 0 0 16px;
}

.seo-agent-disclaimer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-agent-disclaimer {
        width: calc(100% - 32px);
        margin-top: 22px;
        padding: 24px 0 18px;
        font-size: 13px;
        line-height: 1.55;
    }

    .seo-agent-disclaimer p {
        margin-bottom: 12px;
    }
}

.seo-expired-promo {
    position: relative;
    z-index: 1000;
    padding: 12px 18px;
    background: #fff4d6;
    color: #4a3400;
    border-bottom: 1px solid #e8cf87;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.seo-expired-promo a {
    color: #8a002c;
    font-weight: 700;
    text-decoration: underline;
}

/* ========== MOBILE PERFORMANCE SAFEGUARDS ========== */
@media (max-width: 768px) {
    /* Keep the same visual position while avoiding continuous GPU work. */
    #ohsemSticker,
    .lg-soft-promo,
    .lg-whatsapp-breathe {
        animation: none !important;
    }
}
