/* ===== PRIME NEXU BRAND OVERRIDE (FULL SYSTEM) ===== */

/* Base */
body {
    background-color: #ffffff;
    color: #1F2937;
}

/* ===== LINKS ===== */
a {
    color: #0A5246 !important;
}

a:hover {
    color: #0E6B5C !important;
}

/* ===== HEADINGS (KEEP CLEAN BUT STRONG) ===== */
h1, h2, h3, h4, h5, h6 {
    color: #0A5246;
    font-weight: 700;
}

/* ===== PRODUCT CARDS ===== */
.product-item {
    background: #ffffff;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10, 82, 70, 0.15);
    border-color: #0A5246;
}

/* ===== PRODUCT TITLES ===== */
.product-item h2,
.product-item h3,
.product-item a {
    color: #0A5246 !important;
}

.product-item h2:hover,
.product-item h3:hover,
.product-item a:hover {
    color: #0E6B5C !important;
}

/* ===== REVIEWS LINK ===== */
.product-item .reviews a {
    color: #0A5246 !important;
}

/* ===== PRICE ===== */
.product-item .price {
    color: #0A5246;
    font-weight: 700;
    font-size: 18px;
}

.product-item .old-price {
    color: #9ca3af;
    text-decoration: line-through;
}

/* ===== BUTTONS ===== */
.btn-primary,
.load-more-btn {
    background: #0A5246 !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.btn-primary:hover,
.load-more-btn:hover {
    background: #0E6B5C !important;
    box-shadow: 0 0 15px rgba(10, 82, 70, 0.3);
}

/* ===== OUTLINE BUTTON ===== */
.btn-outline {
    border: 1px solid #0A5246 !important;
    color: #0A5246 !important;
    border-radius: 8px;
}

.btn-outline:hover {
    background: #0A5246 !important;
    color: #ffffff !important;
}

/* ===== MENU FIX (VERY IMPORTANT) ===== */
header a,
.navbar a,
.menu a {
    color: #0A5246 !important;
}

header a:hover,
.navbar a:hover {
    color: #0E6B5C !important;
}

/* ===== FOOTER ===== */
footer {
    background: #0F172A;
    color: #d1d5db;
}

footer h4 {
    color: #ffffff;
}

footer a {
    color: #d1d5db;
}

footer a:hover {
    color: #0A5246;
}

/* ===== TRUST BOX ===== */
.trust-box {
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e5e7eb;
}

.trust-box:hover {
    background: #f3f4f6;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
    overflow: hidden;
}

.whatsapp-float::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin: auto;
    margin-top: 13px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg') no-repeat center center;
    background-size: contain;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
}

/* ===== REMOVE BLUE GLOW & EFFECTS ===== */
* {
    outline-color: #0A5246;
}

/* ===== OPTIONAL: FORCE REMOVE ANY BLUE LEFT ===== */
[style*="#0066ff"],
[style*="#0052cc"],
[style*="#004bcc"] {
    color: #0A5246 !important;
    background-color: #0A5246 !important;
    border-color: #0A5246 !important;
}
/* ===== FIX MENU VISIBILITY ===== */

/* Main menu text (force white) */
header .menu a,
header .navbar a,
.main-menu a {
    color: #ffffff !important;
}

/* Menu hover */
header .menu a:hover,
header .navbar a:hover {
    color: #ff9900 !important; /* your secondary accent */
}

/* Active menu item */
header .menu .active a,
header .navbar .active a {
    color: #ff9900 !important;
}