/*
 Theme Name: Digitaz Child
 Theme URI: https://uniqueworldelectronics.com
 Description: Child theme for Digitaz custom header & design
 Author: Unique World Electronics LLC
 Author URI: https://uniqueworldelectronics.com
 Template: digitaz
 Version: 1.0
*/

/* ============================================================
   UNIQUE WORLD ELECTRONICS LLC — FINAL HEADER CSS (PART 1)
   Matching your current header.php exactly
============================================================ */


/* ---------- ROOT COLORS ---------- */
:root {
    --uwe-dark: #002b50;
    --uwe-light: #00a0d2;
    --uwe-white: #ffffff;
    --uwe-bg: #f8fafc;
}

/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    padding: 0;
    background: var(--uwe-bg);
    font-family: 'Inter', sans-serif;
}

a { text-decoration: none; transition: .25s; }
a:hover { opacity: .8; }

/* ---------- HEADER WRAPPER ---------- */
.uwe-header {
    width: 100%;
    background: linear-gradient(90deg, var(--uwe-dark), var(--uwe-light));
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

/* ---------- HEADER TOP BAR ---------- */
.uwe-header-top {
    padding: 10px 0;
}

.uwe-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

/* ---------- LOGO ---------- */
.uwe-logo img {
    height: 58px;
    width: auto;
}

/* ---------- ICONS RIGHT ---------- */
.uwe-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.uwe-icons a,
.uwe-icons button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--uwe-white);
    cursor: pointer;
}

/* ---------- CART COUNT ---------- */
.uwe-cart-icon { position: relative; }

.uwe-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    width: 18px;
    height: 18px;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---------- DESKTOP SEARCH BAR ---------- */
.uwe-search {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.uwe-search form {
    width: 100%;
    max-width: 1200px;
    display: flex;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--uwe-light);
}

.uwe-search input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    color: var(--uwe-dark);
    font-size: 15px;
}

.uwe-search button {
    width: 60px;
    background: var(--uwe-light);
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---------- DESKTOP CATEGORY BAR (VISIBLE ONLY ON DESKTOP) ---------- */
.desktop-only { display: block; }

.uwe-header-cat-carousel {
    background: rgba(255,255,255,0.12);
    padding: 10px 16px;
}

/* ============================================================
   ðŸ“± MOBILE HEADER (MICROLESS STYLE)
============================================================ */
@media (max-width: 768px) {

    /* Hide desktop-only sections */
    .desktop-only { display: none !important; }

    /* New aligned mobile layout */
    .uwe-header-top .uwe-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 12px !important;
        gap: 0 !important;
    }

    /* LOGO CENTER */
    .uwe-logo {
        order: 2;
        flex: 1;
        text-align: center;
    }
    .uwe-logo img {
        height: 42px !important;
    }

    /* HAMBURGER LEFT */
    #uwe-menu-toggle {
        order: 1;
        display: block !important;
        font-size: 30px;
        background: none;
        border: none;
        color: white;
    }

    /* ICONS RIGHT */
    .uwe-icons {
        order: 3;
        gap: 10px;
        display: flex !important;
    }

    /* Hide desktop search */
    .uwe-search {
        display: none !important;
    }

    /* Hide desktop category bar */
    .uwe-header-cat-carousel {
        display: none !important;
    }
}

/* ============================================================
   ðŸ“± MOBILE SEARCH BAR (SLIDE DOWN)
============================================================ */
#uwe-mobile-search-bar {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #002b50;
    transition: 0.35s ease;
    padding: 0 15px;
}

#uwe-mobile-search-bar.open {
    max-height: 140px;
    opacity: 1;
    padding: 15px;
}

#uwe-mobile-search-bar form {
    background: white;
    border-radius: 30px;
    padding: 6px;
    display: flex;
}

#uwe-mobile-search-bar input {
    flex: 1;
    border: none;
    padding: 10px;
}

#uwe-mobile-search-bar button {
    background: var(--uwe-light);
    color: white;
    border: none;
    padding: 0 16px;
}
/* ============================================================
   UNIQUE WORLD ELECTRONICS LLC â€” PART 2
   BRAND TABS â€¢ PRODUCT SLIDER â€¢ PRODUCT CARDS (FINAL CLEAN)
============================================================ */

/* ============================================
   PRODUCT CARD GLOBAL FIX
============================================ */
.woocommerce-loop-product__title {
    font-size: 13px !important;
    font-weight: 600 !important;
    height: 34px !important;
    overflow: hidden !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.woocommerce ul.products li.product .price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #002b50 !important;
    margin-top: 5px !important;
}

/* Fix sale badge */
.woocommerce span.onsale {
    background: #00a0d2 !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
}

/* ============================================
   SHOP BY BRAND â€” SLIDER ROWS
============================================ */
.uwe-brand-row .products {
    display: flex !important;
    overflow-x: auto !important;
    gap: 20px !important;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.uwe-brand-row .products::-webkit-scrollbar { display: none; }

.uwe-brand-row .products li.product {
    flex: 0 0 200px !important;
    max-width: 200px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* MOBILE */
@media (max-width: 768px){
    .uwe-brand-row .products li.product {
        flex: 0 0 160px !important;
        max-width: 160px !important;
        padding: 12px !important;
    }
}

/* ============================================
   BRAND TABS â€” WRAPPER CLEAN
============================================ */
.uwe-brand-tabs,
.uwe-brand-tabs .uwe-brand-row {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ============================================
   BRAND TAB HEADER BAR
============================================ */
.uwe-brand-tabs .uwe-brand-header {
    background: linear-gradient(90deg, #002b50, #00a0d2);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uwe-brand-tabs .uwe-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.uwe-brand-tabs .uwe-view-all {
    background: rgba(255,255,255,0.25);
    color: white;
    padding: 7px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.25s;
}

.uwe-brand-tabs .uwe-view-all:hover {
    background: white;
    color: #002b50;
}

/* ============================================
   BRAND TAB â€” PRODUCT SLIDER
============================================ */
.uwe-brand-tabs .uwe-product-slider ul.products {
    display: flex !important;
    gap: 24px !important;
    overflow-x: auto !important;
    padding: 12px !important;
    scroll-behavior: smooth;
    margin-bottom: 22px !important;
}

.uwe-brand-tabs .uwe-product-slider ul.products::-webkit-scrollbar { display: none; }

.uwe-brand-tabs li.product {
    flex: 0 0 220px !important;
    max-width: 220px !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.10) !important;
}

/* PRODUCT IMAGE */
.uwe-brand-tabs li.product img {
    height: 130px !important;
    object-fit: contain !important;
    margin-bottom: 10px !important;
}

/* MOBILE */
@media (max-width: 768px){
    .uwe-brand-tabs li.product {
        flex: 0 0 160px !important;
        max-width: 160px !important;
        padding: 12px !important;
    }
    .uwe-brand-tabs .uwe-product-slider ul.products {
        gap: 16px !important;
        padding: 8px !important;
    }
}
/* ============================================================
   UNIQUE WORLD ELECTRONICS LLC â€” PART 3
   FOOTER â€¢ VISIBILITY FIX â€¢ REMOVE DIGITAZ HEADER â€¢ FINAL CLEAN
============================================================ */

/* ============================================
   FOOTER â€” FINAL BLUE GRADIENT STYLE
============================================ */
#uwe-footer {
    background: linear-gradient(90deg,#002b50,#00a0d2);
    color: white;
    padding: 55px 20px 25px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    margin-top: 40px !important;
}

.uwe-footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 40px;
    max-width: 1400px;
    margin: auto;
}

.uwe-footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.uwe-footer-about {
    color: #d9f1ff;
    font-size: 15px;
    line-height: 1.6;
}

.uwe-footer-col h3 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 700;
}

.uwe-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.uwe-footer-col ul li {
    margin-bottom: 8px;
}

.uwe-footer-col ul li a {
    color: #e4f6ff;
    transition: 0.25s ease;
}

.uwe-footer-col ul li a:hover {
    color: white;
    padding-left: 3px;
}

.uwe-footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom copyright */
.uwe-footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.25);
    color: #e9faff;
}

/* ============================================
   FIX FOOTER NOT SHOWING ON DESKTOP
============================================ */
body,
#uwe-site-wrapper,
#page,
#primary,
#main,
.elementor,
.elementor-section {
    min-height: auto !important;
}

body.home #content,
body.home #primary,
body.home #main {
    min-height: 400px !important;
}

/* Ensure always visible */
@media (min-width: 769px){
    #uwe-footer {
        display: block !important;
    }
}

/* ============================================
   REMOVE DIGITAZ HEADER / MOBILE HEADER / STICKY
============================================ */
.uwe-sticky-header,
.uwe-compact-header,
.digitaz-sticky-header,
.digitaz-compact-header,
.digitaz-mobile-header,
.digitaz-header-mobile,
.qodef-mobile-header,
.qodef-mobile-header-inner,
.qodef-header-sticky,
[data-elementor-type="digitaz-header"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}

/* Kill leftover white space of old Digitaz header */
html body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
#uwe-wrap,
#uwe-site-wrapper,
.uwe-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* ============================================================
   ðŸš« STOP DIGITAZ THEME FROM LOADING HEADER + CATEGORY BAR
   FINAL CLEAN PATCH â€” DO NOT TOUCH
=============================================================*/

/* Hide all Digitaz header, sticky header, mobile header */
.digitaz-header,
.digitaz-mobile-header,
.digitaz-sticky-header,
.digitaz-compact-header,
.qodef-mobile-header,
.qodef-header-sticky,
[data-elementor-type="digitaz-header"],
[data-elementor-type="header"],
header.qodef-header,
.qodef-page-header {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide all Digitaz category bars */
.qodef-woo-product-categories,
.digitaz-product-categories,
.qodef-woo-product-categories-holder {
    display: none !important;
}

/* Disable any category auto output */
.woocommerce .product-categories,
.woocommerce .qodef-product-categories {
    display: none !important;
}

/* Ensure our custom header shows normally */
.uwe-header {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force only ONE category bar to show (desktop only) */
.uwe-header-cat-carousel {
    display: block !important;
}
@media (max-width:768px){
    .uwe-header-cat-carousel {
        display: none !important;
    }
}
/* ============================================================
   UNIQUE WORLD ELECTRONICS LLC — FINAL STYLE.CSS
   Matches header.php EXACTLY (Microless Mobile + Desktop Search)
   Clean • No Duplicates • No Conflicts • Footer Fixed
============================================================ */

/* ---------- ROOT COLORS ---------- */
:root {
    --uwe-dark: #002b50;
    --uwe-light: #00a0d2;
    --uwe-white: #ffffff;
    --uwe-bg: #f8fafc;
}

/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    padding: 0;
    background: var(--uwe-bg);
    font-family: 'Inter', sans-serif;
}
a { text-decoration: none; transition: .25s; }
a:hover { opacity: .8; }

/* ============================================================
   HEADER MAIN WRAPPER
============================================================ */
.uwe-header {
    width: 100%;
    background: linear-gradient(90deg, var(--uwe-dark), var(--uwe-light));
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

/* TOP BAR */
.uwe-header-top {
    padding: 12px 0;
}

.uwe-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.uwe-logo img {
    height: 58px;
    width: auto;
}

/* ICONS RIGHT */
.uwe-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.uwe-icons a,
.uwe-icons button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    border: none;
    color: var(--uwe-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CART COUNT */
.uwe-cart-icon { position: relative; }
.uwe-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    width: 18px;
    height: 18px;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MENU BUTTON (Mobile Only) */
#uwe-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
}

/* ============================================================
   DESKTOP SEARCH BAR
============================================================ */
.uwe-search {
    display: flex;
    justify-content: center;
    margin: 12px auto;
}
.uwe-search form {
    width: 100%;
    max-width: 1200px;
    display: flex;
    background: white;
    border: 2px solid var(--uwe-light);
    border-radius: 30px;
    overflow: hidden;
}
.uwe-search input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--uwe-dark);
}
.uwe-search button {
    width: 60px;
    background: var(--uwe-light);
    border: none;
    color: white;
}

/* DESKTOP ONLY */
.desktop-only { display: block; }

/* ============================================================
   CATEGORY BAR — DESKTOP ONLY
============================================================ */
.uwe-header-cat-carousel {
    background: rgba(255,255,255,0.15);
    padding: 10px 16px;
}
.uwe-cat-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.uwe-cat-track::-webkit-scrollbar { display: none; }

.uwe-cat-item {
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255,255,255,0.25);
    white-space: nowrap;
    color: white;
    font-weight: 600;
}

/* ============================================================
   MOBILE RESPONSIVE HEADER
============================================================ */
@media (max-width: 768px){

    /* Hide desktop-only sections */
    .desktop-only { display: none !important; }

    .uwe-header-top .uwe-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 10px 12px !important;
    }

    /* LOGO Smaller */
    .uwe-logo {
        order: 2;
        flex: 1;
        text-align: center;
    }
    .uwe-logo img {
        height: 42px !important;
    }

    /* MENU LEFT */
    #uwe-menu-toggle {
        order: 1;
        display: block;
    }

    /* ICONS RIGHT */
    .uwe-icons {
        order: 3;
        gap: 8px;
    }

    /* Hide DESKTOP search */
    .uwe-search { display: none !important; }

    /* Hide category bar */
    .uwe-header-cat-carousel { display: none !important; }
}

/* ============================================================
   MOBILE MENU DROPDOWN
============================================================ */
.uwe-mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: var(--uwe-dark);
    transition: 0.35s;
    padding: 0 18px;
}
.uwe-mobile-menu.open {
    max-height: 600px;
    opacity: 1;
    padding: 18px;
}
.uwe-mobile-contact a {
    display: block;
    padding: 10px 0;
    color: white;
    font-weight: 600;
}

/* ============================================================
   MOBILE SEARCH SLIDE
============================================================ */
#uwe-mobile-search-bar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: var(--uwe-dark);
    transition: 0.35s;
    padding: 0 15px;
}
#uwe-mobile-search-bar.open {
    max-height: 120px;
    opacity: 1;
    padding: 15px;
}
#uwe-mobile-search-bar form {
    background: white;
    border-radius: 30px;
    display: flex;
    padding: 6px;
}
#uwe-mobile-search-bar input {
    flex: 1;
    border: none;
    padding: 10px;
}
#uwe-mobile-search-bar button {
    background: var(--uwe-light);
    border: none;
    color: white;
    padding: 0 16px;
}

/* ============================================================
   PRODUCT CARD + BRAND TABS (unchanged)
============================================================ */
.woocommerce-loop-product__title {
    font-size: 13px !important;
    font-weight: 600 !important;
    height: 34px !important;
    overflow: hidden !important;
}
.woocommerce ul.products li.product .price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #002b50 !important;
}

/* ============================================================
   FOOTER — FINAL FIXED
============================================================ */
#uwe-footer {
    background: linear-gradient(90deg,#002b50,#00a0d2);
    padding: 55px 20px 25px;
    color: white;
    margin-top: 40px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.uwe-footer-top {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 40px;
}
.uwe-footer-bottom {
    text-align: center;
    margin-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 15px;
}
/* ============================================================
   FIX — BRAND TABS PRODUCT SLIDER MUST BE SINGLE LINE CAROUSEL
============================================================ */
.uwe-brand-tabs .uwe-product-slider ul.products {
    display: flex !important;
    flex-wrap: nowrap !important;  /* THIS KEEPS SINGLE LINE */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 22px !important;
    scroll-behavior: smooth;
}

.uwe-brand-tabs .uwe-product-slider ul.products li.product {
    flex: 0 0 220px !important;  /* Fixed width so stays horizontal */
    max-width: 220px !important;
}
/* ============================================================
📱 FIX CATEGORY CAROUSEL (ARROWS + PILLS)
============================================================ */
@media (max-width: 600px) {

    .uwe-hcat-arrow {
        padding: 6px 8px !important;
        border-radius: 50% !important;
    }

    .uwe-hcat-arrow i {
        font-size: 12px !important;
    }

    .uwe-hcat-pill {
        padding: 7px 14px !important;
        font-size: 13px !important;
        border-radius: 25px !important;
    }

    .uwe-header-cat-carousel {
        padding-top: 5px !important;
    }
}
/* ============================================================
🔥 FIX – SHOP BY CATEGORY VISIBILITY ISSUE
   (Background + Pills + Arrows)
============================================================ */

/* Full section background */
.uwe-category-carousel-grid {
    background: #f1f5f9 !important; /* light grey */
    padding: 40px 20px;
    border-radius: 12px;
    margin: 40px 0;
}

/* Pills visible */
.uwe-hcat-pill {
    background: #e7f0f8 !important;
    color: #00345f !important;
    border: 1px solid #d4e0ea !important;
    opacity: 1 !important;
}

/* Hover effect */
.uwe-hcat-pill:hover {
    background: #009ad2 !important;
    color: #fff !important;
}

/* Arrows visible */
.uwe-hcat-arrow {
    background: #009ad2 !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Arrow hover */
.uwe-hcat-arrow:hover {
    background: #0079a8 !important;
}

/* Track brightness fix */
.uwe-hcat-track {
    filter: none !important;
    opacity: 1 !important;
}
/* ==========================================================================
   🔵 SHOP BY CATEGORY — BLUE MODERN CARD STYLE (UWE)
   ========================================================================= */

.uwe-blue-category-section {
    background: linear-gradient(180deg, #00345f, #00a0d2);
    padding: 60px 20px 80px;
    border-radius: 25px;
    color: #fff;
    margin: 50px 0;
    text-align: center;
}

.uwe-blue-category-section .uwe-cat-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.uwe-blue-category-section .uwe-cat-subtitle {
    color: #e0f3ff;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Carousel base */
.uwe-cat-carousel {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.uwe-cat-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
}

.uwe-cat-track::-webkit-scrollbar { display: none; }

/* 🔵 Category Card (SMALL VERSION) */
.uwe-cat-card {
    min-width: 180px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.25s ease;
}

.uwe-cat-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.uwe-cat-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #84e8ff;
}

.uwe-cat-name {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

/* Arrows */
.uwe-cat-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    color: white;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(6px);
}

.uwe-cat-arrow:hover {
    background: rgba(255,255,255,0.45);
}

/* View All */
.uwe-cat-viewall {
    display: inline-block;
    background: #fff;
    color: #00345f;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: 0.25s ease;
}

.uwe-cat-viewall:hover {
    background: #00345f;
    color: #fff;
}

/* MOBILE */
@media (max-width: 600px) {
    .uwe-cat-card {
        min-width: 150px;
        padding: 20px 12px;
    }

    .uwe-cat-icon {
        font-size: 26px;
    }

    .uwe-cat-title {
        font-size: 26px !important;
    }
}
/* ============================================================
   UNIQUE WORLD ELECTRONICS LLC – CATEGORY SECTION (NEW COLORS)
   Full-width blue gradient + responsive + compact design
============================================================ */

.uwe-blue-category-section {
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(90deg, #002b50, #00a0d2);
    margin: 40px 0;
    overflow: hidden;
}

/* Header Title */
.uwe-cat-header {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.uwe-cat-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.uwe-cat-subtitle {
    font-size: 15px;
    opacity: 0.85;
}

/* Carousel Container */
.uwe-cat-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.uwe-cat-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px;
}

.uwe-cat-track::-webkit-scrollbar { display: none; }

/* Category card */
.uwe-cat-card {
    min-width: 130px;
    height: 120px;
    background: #ffffff;
    border-radius: 14px;
    text-align: center;
    padding: 15px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
    color: #002b50;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.uwe-cat-card:hover {
    transform: translateY(-4px);
    background: #e8f7ff;
}

/* Icon inside */
.uwe-cat-icon {
    font-size: 28px;
    margin-bottom: 8px;
    color: #00a0d2;
}

/* Name */
.uwe-cat-name {
    font-size: 14px;
    font-weight: 600;
}

/* Arrows */
.uwe-cat-arrow {
    background: #ffffffaa;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    color: #002b50;
    transition: 0.3s;
}

.uwe-cat-arrow:hover {
    background: #fff;
    transform: scale(1.1);
}

.uwe-cat-arrow.left { left: 10px; }
.uwe-cat-arrow.right { right: 10px; }

/* View All Button */
.uwe-cat-viewall {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
}

/* --------- RESPONSIVE --------- */
@media (max-width: 768px) {
    .uwe-cat-card {
        min-width: 110px;
        height: 105px;
    }
    .uwe-cat-icon { font-size: 24px; }
    .uwe-cat-title { font-size: 22px; }
}

@media (max-width: 480px) {
    .uwe-cat-card {
        min-width: 100px;
        height: 95px;
    }
    .uwe-cat-icon { font-size: 22px; }
}
/* ================================
   HERO SECTION H1-B (Centered)
================================ */
.uwe-hero {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(135deg, #002b50, #00a0d2);
    text-align: center;
    color: #fff;
}

.uwe-hero-content {
    max-width: 850px;
    margin: auto;
}

.uwe-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}

.uwe-hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 28px;
}

/* Search Bar */
.uwe-hero-search {
    display: flex;
    max-width: 650px;
    margin: auto;
    background: #fff;
    border-radius: 40px;
    padding: 6px;
    overflow: hidden;
}

.uwe-hero-search input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 16px;
    color: #002b50;
}

.uwe-hero-search button {
    width: 60px;
    border: none;
    background: #00a0d2;
    color: #fff;
    font-size: 18px;
}

/* Buttons */
.uwe-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.uwe-hero-btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.25s;
}

.uwe-hero-btn.primary {
    background: #fff;
    color: #002b50;
}

.uwe-hero-btn.primary:hover {
    background: #ffdd55;
    color: #000;
}

.uwe-hero-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.uwe-hero-btn.secondary:hover {
    background: #fff;
    color: #002b50;
}

/* Mobile */
@media(max-width:768px){
    .uwe-hero {
        padding: 70px 18px;
    }
    .uwe-hero h1 {
        font-size: 30px;
    }
    .uwe-hero p {
        font-size: 16px;
    }
}
/* ==========================================
   WHOLESALE B2B SECTION – UWE HOME PAGE
========================================== */
.uwe-b2b-block {
    background: linear-gradient(135deg, #002b50, #00a0d2);
    padding: 60px 30px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 50px 0;
}

.uwe-b2b-left {
    flex: 1;
}

.uwe-b2b-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
}

.uwe-b2b-left p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.uwe-b2b-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.uwe-b2b-features li {
    font-size: 17px;
    margin-bottom: 8px;
}

.uwe-b2b-btns {
    display: flex;
    gap: 20px;
}

.uwe-b2b-btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: 0.25s;
}

.uwe-b2b-btn.primary {
    background: #ffdd55;
    color: #002b50;
}

.uwe-b2b-btn.primary:hover {
    background: #fff;
}

.uwe-b2b-btn.secondary {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.uwe-b2b-btn.secondary:hover {
    background: #fff;
    color: #002b50;
}

.uwe-b2b-right img {
    width: 350px;
    max-width: 100%;
}

/* MOBILE */
@media(max-width:768px){
    .uwe-b2b-block {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .uwe-b2b-btns {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .uwe-b2b-right img {
        width: 230px;
        margin-top: 20px;
    }
}
/* ==========================================
   FEATURED CATEGORY TILES — BRAND COLORS
========================================== */

.uwe-featured-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin: 50px auto;
    max-width: 1300px;
    padding: 0 20px;
}

.uwe-tile {
    padding: 30px 25px;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.uwe-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}

.uwe-tile h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.uwe-tile p {
    font-size: 14px;
    margin-top: 6px;
    opacity: 0.9;
}

/* BRAND COLORS (OFFICIAL BRAND-STYLE GRADIENTS) */

.hp {
    background: linear-gradient(135deg, #0096D6, #002b50);
}

.dell {
    background: linear-gradient(135deg, #007DB8, #00A0D2);
}

.lenovo {
    background: linear-gradient(135deg, #E2231A, #B01711);
}

.canon {
    background: linear-gradient(135deg, #D40000, #8B0000);
}

.ubiquiti {
    background: linear-gradient(135deg, #0058FF, #00A0FF);
}

.mikrotik {
    background: linear-gradient(135deg, #333333, #111111);
}

/* MOBILE FIX */
@media(max-width:768px){
    .uwe-featured-tiles {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .uwe-tile {
        height: 150px;
        padding: 20px;
    }
    .uwe-tile h3 {
        font-size: 18px;
    }
}
/* ========================================
   AUTO BRAND CAROUSEL — TILE STYLE
======================================== */

.uwe-brand-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
    background: linear-gradient(90deg,#002b50,#00a0d2);
}

.uwe-brand-carousel-track {
    display: flex;
    gap: 18px;
    animation: scrollBrands 35s linear infinite;
    width: max-content;
}

/* Single brand tile */
.uwe-brand-pill {
    padding: 12px 28px;
    border-radius: 30px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.35);
    transition: 0.25s;
}

.uwe-brand-pill:hover {
    background: #fff;
    color: #002b50;
}

/* Auto scrolling */
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile */
@media(max-width:768px){
    .uwe-brand-pill {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* ======================================================
   UNIQUE WORLD ELECTRONICS LLC
   PREMIUM GLASS CAROUSEL — FIXED (NO WHITE HOVER)
====================================================== */

.uwe-brand-tile-carousel {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;

    /* 🔵 Gradient background */
    background: linear-gradient(90deg, #002b50, #00a0d2);
}

.uwe-brand-tile-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: uweTileScroll 32s linear infinite;
}

/* Glass Tile */
.uwe-tile-pill {
    padding: 16px 36px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    color: #ffffff;

    /* Glass Effect */
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);

    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

/* Hover Effects */
.uwe-tile-pill:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.22);
    color: #ffffff;
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 10px 25px rgba(0,160,210,0.45);
}

/* Shine */
.uwe-tile-pill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 70px;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-25deg);
    opacity: 0;
    transition: 0.4s;
}

.uwe-tile-pill:hover::after {
    left: 200px;
    opacity: 1;
}

/* Auto Scroll */
@keyframes uweTileScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-55%); }
}

/* Mobile */
@media(max-width:768px){
    .uwe-tile-pill {
        padding: 12px 26px;
        font-size: 15px;
    }
}
/* ======================================================
   PREMIUM ENTERPRISE NETWORKING SECTION (2025 EDITION)
====================================================== */

.uwe-pro-network-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #002b50, #004f80, #00a0d2);
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Floating animated lines */
.uwe-pro-network-section::before,
.uwe-pro-network-section::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 2px;
    background: rgba(255,255,255,0.12);
    top: 30%;
    left: -40%;
    transform: rotate(12deg);
    animation: glowLine 12s linear infinite;
}

.uwe-pro-network-section::after {
    top: 70%;
    animation-delay: -4s;
}

@keyframes glowLine {
    0%   { opacity: 0.1; transform: translateX(0)   rotate(12deg); }
    50%  { opacity: 0.4; transform: translateX(30%) rotate(12deg); }
    100% { opacity: 0.1; transform: translateX(0)   rotate(12deg); }
}

/* Title */
.uwe-pro-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Subtitle */
.uwe-pro-subtitle {
    text-align: center;
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 45px;
}

/* GRID */
.uwe-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

/* PREMIUM CARD */
.uwe-pro-card {
    padding: 32px 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 6px 26px rgba(0,0,0,0.25);
    transition: 0.35s;
    text-align: center;
}

/* Icon */
.uwe-pro-icon {
    font-size: 40px;
    margin-bottom: 18px;
    color: #ffdd55;
}

/* Hover Effects */
.uwe-pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.18);
    border-color: #fff;
}

/* Title inside card */
.uwe-pro-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Text inside card */
.uwe-pro-card p {
    opacity: 0.9;
    font-size: 14px;
}
/* ================================================
   TOP SELLING — ONE LINE CAROUSEL
================================================ */

.uwe-top-selling-section {
    margin: 40px 0;
}

.uwe-top-selling-header {
    background: linear-gradient(90deg,#002b50,#00a0d2);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.uwe-top-selling-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.uwe-top-selling-viewall {
    background: rgba(255,255,255,0.25);
    padding: 8px 20px;
    color: white;
    border-radius: 20px;
    font-weight: 600;
}

.uwe-top-selling-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.uwe-top-selling-wrapper::-webkit-scrollbar {
    display: none;
}

/* One Line Horizontal Track */
.uwe-top-selling-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px;
    padding: 10px;
}

/* Product Card Style (same as brand tabs) */
.uwe-top-item {
    flex: 0 0 220px !important;
    max-width: 220px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.uwe-top-item img {
    height: 130px;
    object-fit: contain;
    margin-bottom: 10px;
}
/* ============================================================
   TOP SELLING – ONE ROW PRODUCT CAROUSEL (FINAL CSS)
=========================================================== */

/* HEADER BAR */
.uwe-top-selling {
    margin: 40px 0;
}

.uwe-top-header {
    background: linear-gradient(90deg, #002b50, #00a0d2);
    padding: 14px 20px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.uwe-top-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.uwe-top-viewall {
    background: rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
}
.uwe-top-viewall:hover {
    background: #fff;
    color: #002b50;
}

/* CAROUSEL WRAPPER */
.uwe-top-carousel {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}

.uwe-top-carousel::-webkit-scrollbar { display: none; }

/* TRACK */
.uwe-top-track {
    display: flex !important;
    gap: 22px !important;
}

/* PRODUCT CARD FIX */
.uwe-top-item {
    flex: 0 0 220px !important;
    max-width: 220px !important;
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    padding: 14px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FIX IMAGE SIZE */
.uwe-top-item img {
    height: 130px !important;
    object-fit: contain !important;
    margin-bottom: 10px !important;
}

/* TITLE */
.uwe-top-item .woocommerce-loop-product__title {
    font-size: 13px !important;
    height: 34px !important;
    overflow: hidden !important;
    font-weight: 600 !important;
}

/* PRICE */
.uwe-top-item .price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #002b50 !important;
}
/* ============================================================
   TOP SELLING — ONE LINE PREMIUM CAROUSEL
============================================================ */

.uwe-top-selling {
    margin: 40px auto;
    padding: 10px 0;
}

.uwe-top-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #002b50, #00a0d2);
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.uwe-top-title {
    font-size: 20px;
    font-weight: 700;
}

.uwe-top-viewall {
    background: rgba(255,255,255,0.25);
    padding: 6px 16px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
}
.uwe-top-viewall:hover {
    background: white;
    color: #002b50;
}

.uwe-top-carousel {
    display: flex !important;
    gap: 22px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 12px !important;
}
.uwe-top-carousel::-webkit-scrollbar { display:none; }

/* PRODUCT ITEM SAME AS BRAND TABS */
.uwe-top-item {
    flex: 0 0 220px !important;
    max-width: 220px !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.10) !important;
    text-align: center;
}

.uwe-top-item img {
    height: 130px !important;
    object-fit: contain !important;
    margin-bottom: 10px !important;
}

@media(max-width:768px){
    .uwe-top-item {
        flex: 0 0 160px !important;
        max-width: 160px !important;
        padding: 12px !important;
    }
}
/* ============================================================
   UNIQUE WORLD ELECTRONICS LLC  
   PREMIUM SHOP BY PRICE RANGE BLOCKS
============================================================ */

.uwe-price-range-section {
    padding: 50px 20px;
    background: linear-gradient(90deg,#002b50,#00a0d2);
    border-radius: 18px;
    margin: 40px 0;
}

.uwe-price-title {
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* --- GRID --- */
.uwe-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* --- PRICE BOX / GLASS CARD --- */
.uwe-price-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 28px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    text-align: center;
    transition: 0.35s ease;
    text-decoration: none;
    display: block;
}

/* Hover effect */
.uwe-price-box:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.32);
    cursor: pointer;
}

.uwe-price-box h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
}

.uwe-price-box p {
    font-size: 14px;
    opacity: 0.9;
}

/* Mobile */
@media(max-width: 768px){
    .uwe-price-title { font-size: 22px; }
    .uwe-price-box h3 { font-size: 18px; }
}
/* ================================
   HEADER HEIGHT FIX – FINAL
================================ */

.uwe-header {
    padding: 0 !important;
}

/* TOP BAR HEIGHT */
.uwe-header-top {
    padding: 6px 0 !important;
}

/* SEARCH BAR HEIGHT (DESKTOP) */
.uwe-search form {
    height: 52px !important;
    border-radius: 30px !important;
}

.uwe-search input {
    height: 52px !important;
    font-size: 15px !important;
}

.uwe-search button {
    height: 52px !important;
    width: 60px !important;
}

/* Reduce space between top bar & search */
.uwe-search {
    margin: 6px 0 !important;
}

/* REMOVE EXTRA MARGIN CREATED BY CHILD THEME */
header.uwe-header .uwe-header-top .uwe-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Fix category bar alignment */
.uwe-header-cat-carousel {
    padding: 8px 0 !important;
}
/* Keep search bar centered and NOT stretched */
.uwe-search form {
    max-width: 1100px !important;
    margin: auto !important;
}
/* ============================
   FIX — Mobile Category Menu
============================ */

.uwe-mobile-menu {
    background: #002b50;
    padding: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-top: 1px solid rgba(255,255,255,0.2);
    z-index: 9999;
}

.uwe-mobile-menu.open {
    max-height: 600px !important;
}

.uwe-mobile-menu .uwe-cat-item {
    display: block;
    padding: 12px 18px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ensure toggle button works */
#uwe-menu-toggle {
    z-index: 99999 !important;
}
/* =====================================================
   UNIQUE WORLD ELECTRONICS LLC – FULL PREMIUM SLIDER CSS
   Style: Charcoal + Strong Teal Halo Glow (Alienware Style)
   Includes: Sizes, Spacing, Animations, Responsiveness
===================================================== */

/* HERO WRAPPER */
.uwe-hero {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

/* =====================================================
   BACKGROUND COLORS — 5 SLIDES
   CENTER HALO GLOW (Teal + Charcoal)
===================================================== */

/* SLIDE 1 */
.uwe-slide:nth-child(1) {
    background: radial-gradient(circle at center,
        rgba(0, 255, 220, 0.65) 0%,
        rgba(0, 150, 140, 0.40) 22%,
        rgba(0, 60, 60, 0.25) 48%,
        rgba(0, 0, 0, 1) 100%
    );
    background-size: 200% 200%;
}

/* SLIDE 2 */
.uwe-slide:nth-child(2) {
    background: radial-gradient(circle at center,
        rgba(0, 255, 255, 0.65) 0%,
        rgba(0, 180, 180, 0.35) 26%,
        rgba(0, 50, 50, 0.25) 50%,
        rgba(0, 0, 0, 1) 100%
    );
}

/* SLIDE 3 */
.uwe-slide:nth-child(3) {
    background: radial-gradient(circle at center,
        rgba(0, 240, 255, 0.65) 0%,
        rgba(0, 160, 200, 0.40) 25%,
        rgba(0, 40, 60, 0.30) 48%,
        rgba(8, 8, 8, 1) 100%
    );
}

/* SLIDE 4 */
.uwe-slide:nth-child(4) {
    background: radial-gradient(circle at center,
        rgba(0, 255, 210, 0.65) 0%,
        rgba(0, 180, 160, 0.35) 22%,
        rgba(0, 30, 30, 0.25) 45%,
        rgba(0, 0, 0, 1) 100%
    );
}

/* SLIDE 5 */
.uwe-slide:nth-child(5) {
    background: radial-gradient(circle at center,
        rgba(0, 180, 255, 0.65) 0%,
        rgba(0, 120, 190, 0.40) 25%,
        rgba(0, 35, 50, 0.25) 50%,
        rgba(0, 0, 0, 1) 100%
    );
}

/* BACKGROUND MOTION */
.uwe-slide {
    animation: premiumFlow 14s ease-in-out infinite;
}
@keyframes premiumFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =====================================================
   FLOATING PARTICLES (PREMIUM)
===================================================== */
.uwe-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.22) 2px, transparent 2px),
                      radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 180px 180px, 120px 120px;
    opacity: 0.25;
    animation: floatParticles 14s linear infinite;
    pointer-events: none;
}
@keyframes floatParticles {
    0% { transform: translate(0,0); }
    50% { transform: translate(30px,-30px) scale(1.05); }
    100% { transform: translate(0,0); }
}

/* =====================================================
   SLIDE STRUCTURE
===================================================== */
.uwe-slide {
    width: 100%;
    height: 100%;
    padding: 60px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* =====================================================
   TEXT STYLING
===================================================== */
.uwe-slide-text {
    width: 45%;
    z-index: 10;
}

.uwe-slide-text h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.uwe-slide-text h2::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: shineSweep 6s infinite;
}
@keyframes shineSweep {
    0% { left: -150%; }
    40% { left: 150%; }
    100% { left: 150%; }
}

.uwe-slide-text p {
    font-size: 20px;
    opacity: 0.85;
    margin-bottom: 28px;
}

.uwe-btn {
    background: white;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    color: #007a8e;
    border: 1px solid #9be9ff;
    transition: 0.3s;
}

.uwe-btn:hover {
    background: #00b4d8;
    color: white;
}

/* =====================================================
   IMAGE STYLING
===================================================== */
.uwe-slide-img {
    max-height: 480px;
    width: auto;
    margin-left: 60px;
    margin-right: 40px;
    filter: drop-shadow(0 14px 35px rgba(0,0,0,0.45));
    transition: transform 3s ease-out;
}

/* Parallax float */
.uwe-slide-img.float {
    transform: translateY(-12px) scale(1.02);
}

/* =====================================================
   RESPONSIVE MOBILE
===================================================== */
@media (max-width: 768px) {

    .uwe-hero {
        height: auto;
    }

    .uwe-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        height: auto;
    }

    .uwe-slide-text {
        width: 100%;
    }

    .uwe-slide-text h2 {
        font-size: 32px;
    }

    .uwe-slide-text p {
        font-size: 18px;
    }

    .uwe-slide-img {
        max-height: 240px;
        margin: 20px auto 0;
    }
}
/* =====================================================
   NEON RINGS BEHIND PRODUCT — PREMIUM FUTURISTIC STYLE
   Clean | Alienware | ROG | Light Neon Glow
===================================================== */

.uwe-slide::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    background: radial-gradient(circle,
        rgba(0, 255, 220, 0.35) 0%,
        rgba(0, 255, 220, 0.15) 45%,
        rgba(0, 255, 220, 0.05) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    box-shadow:
        0 0 45px rgba(0, 255, 220, 0.35),
        0 0 90px rgba(0, 255, 220, 0.25),
        0 0 140px rgba(0, 255, 220, 0.18);
    opacity: 0.65;
    z-index: 1;
    animation: neonRingPulse 6s ease-in-out infinite;
}

/* DOUBLE OUTER RING */
.uwe-slide::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    border: 2px solid rgba(0, 255, 220, 0.25);
    opacity: 0.35;
    z-index: 1;
    animation: neonOuterRing 9s linear infinite;
}

/* BACKGROUND RING PULSE */
@keyframes neonRingPulse {
    0% { transform: translateY(-50%) scale(1); opacity: 0.65; }
    50% { transform: translateY(-50%) scale(1.06); opacity: 0.80; }
    100% { transform: translateY(-50%) scale(1); opacity: 0.65; }
}

/* OUTER RING SLOW ROTATION */
@keyframes neonOuterRing {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* ENSURE IMAGE IS IN FRONT */
.uwe-slide-img {
    position: relative;
    z-index: 5;
}
/* =====================================================
   NEON CYBER LINES — FUTURISTIC BACKGROUND ANIMATION
   (Matches teal halo + neon ring style)
===================================================== */

.uwe-slide .neon-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* VERTICAL MOVING LINES */
.uwe-slide .neon-lines::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 140%;
    left: 65%;
    top: -20%;
    background: linear-gradient(
        rgba(0,255,220,0) 0%,
        rgba(0,255,220,0.45) 50%,
        rgba(0,255,220,0) 100%
    );
    animation: neonLineDown 5s linear infinite;
    filter: blur(2px);
}

.uwe-slide .neon-lines::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 160%;
    left: 72%;
    top: -30%;
    background: linear-gradient(
        rgba(0,255,220,0) 0%,
        rgba(0,255,220,0.35) 50%,
        rgba(0,255,220,0) 100%
    );
    animation: neonLineDown 7s linear infinite;
    filter: blur(3px);
}

/* HORIZONTAL MOVING LINES */
.uwe-slide .neon-lines-horizontal {
    content: "";
    position: absolute;
    width: 140%;
    height: 2px;
    top: 35%;
    left: -20%;
    background: linear-gradient(
        90deg,
        rgba(0,255,220,0) 0%,
        rgba(0,255,220,0.40) 50%,
        rgba(0,255,220,0) 100%
    );
    animation: neonLineAcross 6s linear infinite;
    filter: blur(2px);
}

/* KEYFRAMES */
@keyframes neonLineDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes neonLineAcross {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/* =====================================================
   SLIDER ARROWS — PREMIUM TEAL GLOW NAVIGATION
===================================================== */

.uwe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 255, 220, 0.15);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(0, 255, 220, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.uwe-arrow:hover {
    background: rgba(0, 255, 220, 0.35);
    box-shadow:
        0 0 15px rgba(0,255,220,0.6),
        0 0 30px rgba(0,255,220,0.4);
}

/* Arrow icons */
.uwe-arrow i {
    font-size: 24px;
    color: rgba(0,255,220,0.9);
}

/* Left arrow */
.uwe-arrow-left {
    left: 30px;
}

/* Right arrow */
.uwe-arrow-right {
    right: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
    .uwe-arrow {
        width: 42px;
        height: 42px;
    }
    .uwe-arrow i {
        font-size: 20px;
    }
    .uwe-arrow-left { left: 12px; }
    .uwe-arrow-right { right: 12px; }
}
/* =====================================================
   ARROWS
===================================================== */

.uwe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 255, 220, 0.15);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(0, 255, 220, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.uwe-arrow:hover {
    background: rgba(0, 255, 220, 0.30);
    box-shadow:
        0 0 18px rgba(0,255,220,0.6),
        0 0 35px rgba(0,255,220,0.4);
}

.uwe-arrow i {
    font-size: 24px;
    color: rgba(0,255,220,0.9);
}

.uwe-arrow-left { left: 30px; }
.uwe-arrow-right { right: 30px; }

@media (max-width: 768px) {
    .uwe-arrow { width: 42px; height: 42px; }
    .uwe-arrow i { font-size: 20px; }
    .uwe-arrow-left { left: 12px; }
    .uwe-arrow-right { right: 12px; }
}


/* =====================================================
   NEON LINES (vertical + horizontal)
===================================================== */

.uwe-slide .neon-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.uwe-slide .neon-lines::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 140%;
    left: 65%;
    top: -20%;
    background: linear-gradient(
        rgba(0,255,220,0) 0%,
        rgba(0,255,220,0.45) 50%,
        rgba(0,255,220,0) 100%
    );
    animation: neonLineDown 5s linear infinite;
    filter: blur(2px);
}

.uwe-slide .neon-lines::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 160%;
    left: 72%;
    top: -30%;
    background: linear-gradient(
        rgba(0,255,220,0) 0%,
        rgba(0,255,220,0.35) 50%,
        rgba(0,255,220,0) 100%
    );
    animation: neonLineDown 7s linear infinite;
    filter: blur(3px);
}

.uwe-slide .neon-lines-horizontal {
    content: "";
    position: absolute;
    width: 140%;
    height: 2px;
    top: 35%;
    left: -20%;
    background: linear-gradient(
        90deg,
        rgba(0,255,220,0) 0%,
        rgba(0,255,220,0.40) 50%,
        rgba(0,255,220,0) 100%
    );
    animation: neonLineAcross 6s linear infinite;
    filter: blur(2px);
}

@keyframes neonLineDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes neonLineAcross {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/* =====================================================
   FIX: MOBILE RESPONSIVE SLIDER HEIGHT
===================================================== */

@media (max-width: 768px) {

    .uwe-hero {
        height: auto !important;
        min-height: 480px;
        padding-bottom: 40px;
        position: relative;
    }

    .uwe-slide {
        position: relative !important;
        height: auto !important;
        padding: 40px 5% !important;
        flex-direction: column !important;
        text-align: center;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
    }

    .uwe-slide-img {
        max-height: 220px !important;
        margin: 20px auto 0 auto !important;
    }

    .uwe-slide-text {
        width: 100% !important;
    }

    .uwe-slide-text h2 {
        font-size: 26px !important;
        line-height: 1.3;
    }

    .uwe-slide-text p {
        font-size: 16px !important;
    }

    /* Dots reposition */
    .uwe-dots {
        bottom: 15px !important;
    }

    /* Arrows smaller & closer */
    .uwe-arrow {
        width: 38px !important;
        height: 38px !important;
    }

    .uwe-arrow-left { left: 8px !important; }
    .uwe-arrow-right { right: 8px !important; }
}
/* Payment Logos */
.uwe-payment-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.uwe-payment-logos img {
    height: 38px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
    transition: 0.3s ease-in-out;
}

.uwe-payment-logos img:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}
.uwe-license {
    text-align: center;
    padding: 12px 10px;
    background: #003041;
    color: #fff;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #06485f;
}
.uwe-license strong {
    color: #00a0d2;
}
/* FIX: Footer social icons in one horizontal line */
.uwe-footer-social {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-top: 15px !important;
}

.uwe-footer-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.20) !important;
    color: #ffffff !important;
}

/* ============================================================
   STYLE B — 160px PRODUCT CARDS
============================================================ */

.uwe-carousel-track {
    display: flex !important;
    gap: 18px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 10px !important;
    white-space: nowrap !important;
}

.uwe-carousel-track::-webkit-scrollbar { display: none; }

.uwe-card-b {
    flex: 0 0 160px !important;
    max-width: 160px !important;
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    padding: 12px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08) !important;
    text-align: center !important;
}

.uwe-card-b img {
    height: 110px !important;
    object-fit: contain !important;
    margin-bottom: 8px !important;
}

.uwe-card-b .woocommerce-loop-product__title {
    font-size: 13px !important;
    height: 32px !important;
    overflow: hidden !important;
    margin-bottom: 6px !important;
}

.uwe-card-b .price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #002b50 !important;
}
.uwe-badge.best-seller {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 10;
}
.uwe-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 20;
  color: #fff;
}

.uwe-badge.gold {
  background: linear-gradient(135deg,#facc15,#eab308);
  color: #000;
}

.uwe-badge.trending {
  background: #ef4444;
}

.uwe-badge.hot {
  background: #f97316;
}
/* ================================
   QUICK VIEW STICKY ADD TO CART
================================ */

.woosq-popup .summary form.cart {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 15px 0;
    border-top: 1px solid #eee;
    z-index: 9;
}

/* Button style */
.woosq-popup .single_add_to_cart_button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
}
/* ================================
   QUICK VIEW BADGES
================================ */

.woosq-popup .uwe-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
}

/* Badge colors */
.uwe-badge.gold { background: linear-gradient(135deg,#f5c542,#d4a017); }
.uwe-badge.trending { background: #ff5722; }
.uwe-badge.hot { background: #e91e63; }
/* ================================
   PREMIUM QUICK VIEW WIDTH
================================ */

.woosq-popup {
    max-width: 1100px !important;
    width: 92% !important;
    border-radius: 16px;
}

/* Bigger image */
.woosq-popup .woocommerce-product-gallery {
    padding-right: 30px;
}

/* Clean typography */
.woosq-popup .summary h1 {
    font-size: 26px;
    line-height: 1.3;
}
/* ================================
   QUICK VIEW RELATED PRODUCTS
================================ */

.uwe-qv-related {
    margin-top: 35px;
}

.uwe-qv-related h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.uwe-qv-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.uwe-qv-track::-webkit-scrollbar {
    height: 6px;
}
.uwe-qv-track::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.uwe-qv-item {
    min-width: 140px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all .25s ease;
}

.uwe-qv-item:hover {
    transform: translateY(-4px);
}

.uwe-qv-item img {
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 8px;
}

.uwe-qv-title {
    font-size: 13px;
    line-height: 1.3;
    display: block;
    margin-bottom: 4px;
}

.uwe-qv-price {
    font-size: 14px;
    font-weight: 700;
    color: #00a0d2;
}
/* ===============================
   QUICK VIEW PRO FEATURES
================================ */

.uwe-urgency {
    background:#fff3cd;
    color:#856404;
    padding:10px;
    border-radius:8px;
    margin:12px 0;
    font-weight:600;
}

.uwe-coupon {
    background:#e6f9f0;
    color:#067a46;
    padding:10px;
    border-radius:8px;
    margin-bottom:12px;
    font-weight:700;
}

.uwe-whatsapp-btn {
    display:block;
    background:#25d366;
    color:#fff;
    text-align:center;
    padding:12px;
    border-radius:10px;
    font-weight:700;
    margin:14px 0;
    text-decoration:none;
}

.uwe-whatsapp-btn:hover {
    background:#1ebe5d;
}

/* AI RELATED */
.uwe-also-bought {
    margin-top:25px;
}

.uwe-also-bought h3 {
    font-size:18px;
    margin-bottom:12px;
}

.uwe-ab-track {
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.uwe-ab-item {
    min-width:140px;
    background:#fff;
    border-radius:12px;
    padding:10px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.uwe-ab-item img {
    max-height:100px;
    object-fit:contain;
}

.uwe-ab-item span {
    display:block;
    font-size:13px;
    margin:6px 0;
}
