/* Add custom CSS styles below */ 
/* Make all product prices RED */

/* Target common price class names in Salla */
.product-price,
.price,
.product__price,
.s-product-price,
.s-price,
[class*="price"],
[class*="Price"] {
    color: #ff0000 !important; /* Bright red */
}

/* Target price elements by common selectors */
.product .price,
.product-card .price,
.product-item .price,
.item-price,
.amount {
    color: #ff0000 !important;
}

/* Target specific price containers */
.price-container,
.price-wrapper,
.product-price-wrapper {
    color: #ff0000 !important;
}

/* Target price spans and divs */
span.price,
div.price,
span[class*="price"],
div[class*="price"] {
    color: #ff0000 !important;
}

/* Target currency symbols with prices */
.currency,
.price .currency,
.amount .currency {
    color: #ff0000 !important;
}

/* For sale prices / discounted prices */
.sale-price,
.special-price,
.discount-price,
.offer-price,
.new-price {
    color: #ff0000 !important;
    font-weight: bold !important;
}

/* Regular/old prices (usually crossed out) - optional: keep grey or make red too */
.old-price,
.regular-price,
.original-price {
    color: #999 !important; /* Keep old price grey */
    text-decoration: line-through !important;
}

/* If you want old prices red too, uncomment this:
.old-price,
.regular-price,
.original-price {
    color: #ff0000 !important;
}
*/

/* Product detail page price */
.product-details .price,
.product-info .price,
.product-single .price {
    color: #ff0000 !important;
    font-weight: bold !important;
}

/* Cart prices */
.cart-item .price,
.cart-price,
.checkout-price {
    color: #ff0000 !important;
}

/* Total prices */
.total-price,
.grand-total,
.subtotal {
    color: #ff0000 !important;
    font-weight: bold !important;
}

/* Alternative: Use a more professional red tone */
/* Replace #ff0000 with one of these if you prefer:
   - #dc3545 (Bootstrap danger red - softer)
   - #e74c3c (Flat red - modern)
   - #c00000 (Dark red - elegant)
   - #ff4444 (Bright red - eye-catching)
*/

/* Hide hamburger menu icon and old search icon on DESKTOP only */
@media (min-width: 768px) {
    
    /* Hide hamburger menu icon (3 lines) */
    .hamburger,
    .hamburger-menu,
    .hamburger-icon,
    .menu-toggle,
    .mobile-menu-toggle,
    .sidebar-toggle,
    .nav-toggle,
    .menu-icon,
    .burger-menu,
    .burger-icon,
    .s-menu-toggle,
    .s-hamburger,
    [class*="hamburger"],
    [class*="menu-toggle"],
    [class*="burger"],
    button[aria-label*="menu"],
    button[aria-label*="Menu"],
    .mobile-toggle,
    .navbar-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* AGGRESSIVE: Hide ALL old search icons/buttons on desktop (not the new search bar) */
    .search-icon,
    .search-toggle,
    .search-button,
    .s-search-icon,
    .s-search-button,
    .s-search-toggle,
    [class*="search-icon"],
    [class*="search-toggle"],
    [class*="search-button"],
    [data-search],
    [data-toggle="search"],
    button[aria-label*="search"],
    button[aria-label*="Search"],
    a[href*="search"],
    .icon-search,
    i[class*="search"],
    svg[class*="search"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Exception: Keep our NEW search bar visible */
    .header-search-bar,
    .header-search-bar *,
    .header-search-bar button,
    .header-search-bar input,
    .header-search-bar svg,
    .header-search-bar i {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
        overflow: visible !important;
    }
    
    .header-search-bar input {
        display: block !important;
    }
    
    .header-search-bar button {
        display: inline-flex !important;
    }
    
    /* Hide any mobile-specific navigation elements */
    .mobile-nav,
    .mobile-navigation,
    .mobile-header,
    [class*="mobile-nav"],
    [class*="mobile-menu"] {
        display: none !important;
    }
}

/* Make sure hamburger and old search icon SHOW on mobile */
@media (max-width: 767px) {
    
    /* Show hamburger menu on mobile */
    .hamburger,
    .hamburger-menu,
    .menu-toggle,
    .mobile-menu-toggle,
    .s-menu-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Show original search icon on mobile (optional - if you want it) */
    .search-icon,
    .search-toggle,
    .s-search-icon {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Hide our custom desktop search bar on mobile */
    .header-search-bar {
        display: none !important;
    }
    
    /* Hide desktop menu on mobile */
    .desktop-top-menu {
        display: none !important;
    }
}