* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}


.sidebar-sticky {
    width: 300px;
    background: #f5f5f5;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: max-content;
    z-index: 1;
}


/* Default navbar style */
.sticky-wrapper {
    position: relative;
    width: 100%;
    z-index: 999;
    background: #fff;
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/* Navbar container */
.rfid-navbar {
    background: #644f9e;
    padding: 6px;
    font-family: Arial, sans-serif;
    justify-content: center;
    justify-items: center;
    overflow: visible;
    transition: all 0.3s ease;
}

/* Main menu list */
.rfid-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    left: 0px;
}

.rfid-menu>li {
    position: relative;
    left: 0px;
}

.rfid-menu>li>a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: background-color 0.2s ease;
}

/* Arrow styling */
.rfid-arrow {
    font-size: 10px;
    margin-left: 6px;
    font-weight: bolder;
    transition: transform 0.3s ease;
}

.rfid-arrow-nes {
    font-weight: bold;
    font-size: 10px;
    margin-left: 15px;
    margin-top: 5px;
}

/* Rotate arrow on hover */
.rfid-has-submenu:hover>a .rfid-arrow {
    transform: rotate(180deg);
}

/* Parent submenu */
.rfid-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 170px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10001;
    /* Higher than navbar */
    border-bottom: 4px solid red;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rfid-has-submenu:hover>.rfid-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu items */
.rfid-subitem {
    position: relative;
    font-family: "Gill Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.rfid-submenu a {
    display: flex;
    justify-content: space-between;
    padding: 7px 14px;
    color: rgba(48, 45, 45, 0.815);
    text-decoration: none;
    background: #fff;
    white-space: nowrap;
}

.rfid-submenu a:hover {
    color: red;
}

/* Nested Submenu */
.rfid-nested-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 10002;
    /* Higher than parent dropdown */
    border-left: 2px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Show nested submenu on hover */
.rfid-has-nested-submenu:hover>.rfid-nested-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Content below navbar - ensure it has lower z-index */
.content-below-navbar {
    position: relative;
    z-index: 1;
    /* Lower than navbar */
    margin-top: 20px;
}


.sidebar {
    position: relative;
    z-index: 9999 !important;
}
.carousel-control-prev,
.carousel-control-next {
    z-index: 5 !important;        /* sidebar पेक्षा कमी, image पेक्षा जास्त */
    width: 50px !important;       /* small hit-area */
    height: 50px !important;
    top: 50% !important;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0,0,0,0.3);  /* optional look, काढू शकतोस */
}



.carousel-control-prev-icon {
    color: #003399;
    background-color: #003399;
}

.carousel-control-next-icon {
    color: #003399;
    background-color: #003399;
}

.accordion-title i {
    font-size: 10px;
}

.accordion-title:hover {
    background: #f7f7f7;
    border-left: 4px solid red;
}


.sidebar {
    width: 260px;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    position: relative;
    left: 20px;
    z-index: 100;
    overflow: visible;
}

.sidebar-header {
    background: red;
    padding: 15px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.accordion-item {
    position: relative;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

/* Accordion Title */
.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-left: 4px solid #ddd8d8;
    height: 35px;
    margin-bottom: 5px;
    margin-top: 10px;
    margin-left: 15px;
    font-weight: 600;
    padding: 0 10px;
}

.accordion-title:hover {
    background: #f7f7f7;
    border-left: 4px solid red;
}

/* Flyout Submenu - Smooth + Stable */
.accordion-content {
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    /* slight overlap to prevent hover gap */
    width: 220px;
    background: white;
    border: 1px solid #ddd;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-left: 0;
    font-weight: 600;
    z-index: 999;
}

/* Keep submenu open while hovering it */
.accordion-item:hover .accordion-content,
.accordion-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Dropdown List */
.accordion-content ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.accordion-content ul li {
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.accordion-content ul li:hover {
    background: #f0f0f0;
    color: #c00000;
}





/* ======================== */
/* Mobile Responsiveness */
/* ======================== */

@media (max-width: 991px) {
    .rfid-navbar {
        display: none;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .accordion-content {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .accordion-item:hover .accordion-content {
        max-height: 500px;
    }

}








.carousel-btn {
    display: flex;
    justify-content: space-around;
    padding: 2px;
}

/* ===== DESKTOP STYLES (default) ===== */
.desktop-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 40px;
    font-size: 14px;
    background-color: #fff;
    /* border-bottom: 1px solid #ddd; */
}

.desktop-middle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}


.desktop-navbar {
    background-color: #0d3e91;
    padding: 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.caro-btn-line {
    font-size: 13px;
    font-weight: normal;
}

.carousel-btn {
    display: flex;
    gap: 20px;
    position: relative;
}

.carousel-btn button {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: rgb(22, 22, 22);
    padding: 5px 10px;
    outline: none;
    font-weight: bold;
}

.carousel-btn button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background-color: red;
    transition: all 0.3s ease-in-out;
}


.carousel-btn button:hover::after {
    width: 100%;
}


.carousel-btn button.active::after {
    width: 100%;
}

/* Hide mobile elements by default */
.mobile-header,
.mobile-search,
.mobile-menu,
.mobile-overlay {
    display: none;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 991px) {

    /* Hide desktop elements */
    .desktop-top-bar,
    .desktop-middle-header,
    .desktop-navbar {
        display: none;
    }

    /* Show mobile elements */
    .mobile-header,
    .mobile-search {
        display: block;
    }

    /* Mobile header styles */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: white;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-logo img {
        height: 40px;
    }

    .mobile-icons {
        display: flex;
        gap: 15px;
    }

    .mobile-search {
        padding: 15px;
        background: #f5f5f5;
    }

    .mobile-search input {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    /* Mobile menu styles */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mobile-nav {
        list-style: none;
        margin-top: 60px;
    }

    .mobile-nav li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: #333;
        text-decoration: none;
    }

    /* Menu button styles */
    .mobile-menu-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-btn .fa-times {
        display: none;
    }

    .mobile-menu-btn.active .fa-bars {
        display: none;
    }

    .mobile-menu-btn.active .fa-times {
        display: block;
    }

    .carousel-btn {
        display: none;
    }
}

/* ===== DESKTOP STYLES ===== */
/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 40px;
    font-size: 14px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-left a {
    text-decoration: none;
    color: black;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right select {
    padding: 3px 6px;
    font-size: 13px;
    /* border: 1px solid #ddd; */
    /* border-radius: 3px; */
    border: none;
}

.divider {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
}


/* Middle Header */
.middle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo img {
    max-height: 60px;
}

.search-section {
    display: flexbox;
    align-items: center;
    flex: 0.4;
    justify-content: center;
    max-width: 600px;
    gap: 12px;
}

.trustpilot {
    font-size: 15px;
    white-space: nowrap;
    color: #333;
    text-align: center;
    margin-bottom: 3px;

}


.trustpilot i {
    color: #00ab41;
}

.search-box {
    display: flex;
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.search-box select {
    padding: 10px;
    border: none;
    font-size: 14px;
    border-right: 1px solid #ccc;
}

.search-box input {
    padding: 10px;
    border: none;
    font-size: 14px;
    flex: 1;
}
.text-dec a{
   text-decoration: none;
   color: #2b2929;
}
.text-dec a:hover{
  font-weight: 400;
}

.search-box button {
    background: #644f9e;
    color: white;
    border: none;
    padding: 0 16px;
    cursor: pointer;
}

.account-cart {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.account-cart a {
    text-decoration: none;
    color: #644f9e;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.account-cart i {
    font-size: 20px;
}

.cart span {
    background: red;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    padding: 2px 6px;
    margin-left: -12px;
    margin-top: -25px;
}

/* Bottom Navbar */
nav.navbar {
    background-color: #0d3e91;
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    display: block;
    padding: 14px 16px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-links li:hover {
    background: #002e70;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    top: 100%;
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 15px;
    display: block;
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background: #f0f0f0;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 991px) {

    /* Hide desktop elements */
    .top-bar,
    .trustpilot,
    .search-box select,
    .account-cart a span,
    nav.navbar {
        display: none;
    }

    /* Mobile header container */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: white;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    /* Mobile menu button */
    .mobile-menu-btn {
        background: none;
        border: none;
        font-size: 24px;
        /* color: #333; */
        color: blue;
        cursor: pointer;
    }

    /* Mobile logo */
    .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-logo img {
        height: 40px;
    }

    /* Mobile icons */
    .mobile-icons {
        display: flex;
        gap: 15px;
    }

    /* Mobile search */
    .mobile-search {
        padding: 15px;
        background: #f5f5f5;
    }

    .mobile-search i {
        position: absolute;
        right: 30px;
        top: 93px;
    }

    .mobile-search input {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    /* Mobile menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
        left: 0;
    }

    /* Menu items */
    .mobile-nav {
        list-style: none;
        margin-top: 60px;
    }

    .mobile-nav li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: #333;
        text-decoration: none;
    }

    /* Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .mobile-overlay.active {
        display: block;
    }
}

.fa-angle-down {
    margin-top: 5px;
    margin-left: 5px;
    font-size: 12px;
}

.desktop-navbar {
    background-color: #0d3e91;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: white;
    text-decoration: none;
    /* font-size: 16px; */
    font-weight: 700;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.nav-links li:hover {
    background: #002e70;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    background: white;
    width: 100%;
    min-width: 800px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.dropdown-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h3 {
    color: #0d3e91;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li a {
    color: #333;
    padding: 8px 0;
    display: block;
    transition: color 0.2s;
    font-weight: 400;
    white-space: normal;
}

.dropdown-column ul li a:hover {
    color: #0d3e91;
    font-weight: bold;
    /* color: ; */
    /* background: transparent; */
}

/* Mobile dropdown styles */
.mobile-dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    background: #f9f9f9;
}

.mobile-submenu li a {
    padding: 12px 15px;
}

.mobile-dropdown.active .mobile-submenu {
    display: block;
}

/* Hide mobile elements by default */
.mobile-header,
.mobile-search,
.mobile-menu,
.mobile-overlay {
    display: none;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 991px) {

    /* Hide desktop elements */
    .desktop-navbar {
        display: none;
    }

    /* Show mobile elements */
    .mobile-header,
    .mobile-search {
        display: block;
    }

    /* Mobile header styles */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: white;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-logo img {
        height: 40px;
    }

    .mobile-icons {
        display: flex;
        gap: 15px;
    }

    .mobile-search {
        padding: 15px;
        background: #f5f5f5;
        position: relative;
    }

    .mobile-search input {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .mobile-search i {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
    }

    /* Mobile menu styles */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mobile-nav {
        list-style: none;
        margin-top: 60px;
        padding: 0;
    }

    .mobile-nav li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: #333;
        text-decoration: none;
    }

    /* Menu button styles */
    .mobile-menu-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: blue;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mobile-menu-btn .fa-times {
        display: none;
        position: absolute;
    }

    .mobile-menu-btn.active .fa-bars {
        display: none;
    }

    .mobile-menu-btn.active .fa-times {
        display: block;
    }
}



/* Section 2 slider  */


/* 

/* Brands Container */
.brands-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
    gap: 30px;
}

/* Sidebar */
/* Enhanced Sidebar with Premium Hover Effects */
.brands-sidebar {
    width: 250px;
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brands-sidebar h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 51, 153, 0.1);
    font-size: 1.25rem;
    font-weight: 600;
}

.brands-list {
    list-style: none;
}

.brand-category {
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: var(--dark-gray);
    cursor: pointer;
    font-weight: 500;
    background: linear-gradient(to right, rgba(0, 51, 153, 0.03), transparent);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-category-title:hover {
    background: linear-gradient(to right, rgba(0, 51, 153, 0.08), transparent);
    color: var(--primary-blue);
    transform: translateX(3px);
}

.brand-category-title i {
    font-size: 0.75rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.brand-category.active .brand-category-title {
    background: linear-gradient(to right, rgba(0, 51, 153, 0.1), transparent);
    color: var(--primary-blue);
}

.brand-category.active .brand-category-title i {
    transform: rotate(180deg);
}

.brand-items {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 8px;
}

.brand-category.active .brand-items {
    max-height: 1000px;
    padding-top: 5px;
}

.brand-items li {
    margin-bottom: 4px;
    position: relative;
}

.brand-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.brand-items a {
    display: block;
    padding: 10px 16px 10px 24px;
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    font-size: 0.9rem;
}

.brand-items a:hover {
    background: rgba(0, 51, 153, 0.05);
    color: var(--primary-blue);
    padding-left: 28px;
}

.brand-items a:hover::before {
    opacity: 1;
    left: 12px;
}

.brand-items a.active {
    background: linear-gradient(to right, var(--primary-blue), #0044cc);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 51, 153, 0.2);
    font-weight: 500;
    padding-left: 28px;
}

.brand-items a.active::before {
    background: white;
    opacity: 1;
    left: 12px;
    width: 6px;
    height: 6px;
}

/* Main Content */
.brands-main {
    flex: 1;
    margin-bottom: 0px;
    background-color: white;
}

.brands-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.swiper {
    width: 100%;
    height: 400px;
    margin-left: 0px;

}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

@media (max-width: 768px) {
    .swiper {
        height: 250px;
    }

    .banner {
        display: flex;
        /* height: 200px; */
        margin-right: 0px;
        /* margin-left: 50px; */
        /* justify-content: center; */
        /* justify-items: center; */
        padding-left: 0px;

    }

    .banner img {
        height: 170px;
        width: 170px;
        /* margin-left: 2px; */
        /* margin-top: 5px; */
        margin-left: 30px;

    }

    .space {
        margin-left: 0px;
    }

    .banner .bn1 {
        margin-left: 15px;
        margin-top: -3px;
    }

    .banner .padd {
        margin-right: 60px;

    }

    @media (max-width: 480px) {
        .banner {
            display: flex;
            margin-right: 0px;
            padding-left: 0px;
            /* background-color: red; */

        }

        .banner img {
            height: 170px;
            width: 170px;
            margin-left: 0px;
        }

        .space {
            margin-left: 0px;
        }

        .banner .bn1 {
            margin-left: 15px;
            margin-top: -3px;
        }

        .banner .padd {
            margin-right: 30px;


        }
    }

}

.banner {
    height: 150px;
    width: 180px;
    /* background: #000; */
    object-fit: contain;
    margin-left: 0px;
}

.banner img {
    height: 200px;
    /* padding-top: 5px; */
}

.banner .padd {
    /* height: 200px; */
    padding-top: 5px;
}

/* Brand Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.brand-card {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.brand-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-card h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.brand-card p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Delivery Banner */
.delivery-banner {
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.delivery-banner h3 {
    margin-bottom: 5px;
}

.delivery-banner p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .brands-container {
        flex-direction: column;
    }

    .brands-sidebar {
        width: 100%;
    }

    .swiper {
        height: 250px;
    }

    /* .bn1 img{
        width: 100%;
    } */

    /* .cardds {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        margin-top: 10px;
        display: flex;
        max-width: 100px;
    } */
}

*/ .confi {
    height: 200px;
    width: 300px;
}

.brand-logo-conti {
    max-width: 1000px;
}

/* 
.cardds img {
    width: 250px;
    object-fit: fill;
}

.cardds {
    padding: 10px;
} */

/* 
.cardds img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.cardds {
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    padding: 10px;
}
.three-cards-img {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
} */



/* Sidebar Container */
.sidebar {
    position: relative;
    z-index: 10;
    background: #fff;
}

/* Sidebar Header */
.sidebar-header {
    background: red;
    padding: 15px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Accordion Item */
.accordion-item {
    position: relative;
    border-bottom: 1px solid #eee;
    z-index: 2;
   
}

/* Accordion Title */
.accordion-title {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-title:hover {
    background: #f7f7f7;
}




/* Sidebar home Container */
/* Sidebar */
.brands-sidebar {
    width: 260px;
    background: white;
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
    position: relative;
    left: 20px;
    margin-bottom: 30px;
}

/* Header */
.brands-sidebar-header {
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    color: #333;
}

/* Accordion Items */
.brands-accordion-item {
    border-bottom: 1px solid #eee;
}

.brands-accordion-title {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #222;
    transition: background 0.3s ease;
}

.brands-accordion-title:hover {
    background: #f7f7f7;
    color: red;
}

.brands-accordion-title i {
    transition: transform 0.3s ease;
}

/* Main accordion content */
.brands-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}

.brands-accordion-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brands-accordion-content ul li {
    padding: 10px 30px;
    font-size: 14px;
    border-top: 1px solid #eee;
    position: relative;
}

/* Submenus */
.brands-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.4s ease;
    list-style: none;
    margin: 0;
    padding: 0;
}

.brands-submenu li {
    padding: 8px 40px;
    font-size: 13px;
    border-top: 1px solid #eee;
}

/* Submenu toggle icon */
.submenu-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


.latest-product-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eee;
    cursor: pointer;
}

.latest-product-item:first-child {
    border-top: none;
}

.product-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}


/* Sidebar Latest Products Section */
.latest-products-sidebar {
    background: #fff;
    /* border: 1px solid #ddd; */
    padding: 15px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

/* Trustpilot Button */
.trustpilot-btn {
    text-align: center;
    margin-bottom: 10px;
}

.trustpilot-btn button {
    border: 1px solid #2ecc71;
    color: #2ecc71;
    padding: 6px 12px;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.trustpilot-btn button:hover {
    background: #2ecc71;
    color: #fff;
}

.trustpilot-btn span {
    font-weight: bold;
}

/* Section Title */
.sidebar-title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    text-transform: uppercase;
}

/* Product Items */
.latest-product-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eee;
}

.latest-product-item:first-child {
    border-top: none;
}

.latest-product-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

/* .product-info {
    flex: 1;
} */

.product-name {
    font-size: 14px;
    color: black;
    font-weight: bold;
    margin: 0 0 4px 0;
    line-height: 1.2em;
}

.product-price {
    font-size: 14px;
    color: #e60000;
    font-weight: bold;
    margin: 0;
}





/* Add these styles to your existing CSS */
.partner-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    transition: all 0.3s ease;
    margin-left: 0px;
    /* background: #000; */
}

.logo-name {
    margin-top: 10px;
    font-size: 17px;
    font-weight: bold;
    color: #666;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.partner-slide:hover .logo-name {
    color: red;
    /* Change to your preferred hover color */
}

.partner-slide:hover .logo-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #f9b233;
    /* Same as text color */
    width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
}


.logo-name {
    position: relative;
}

.logo-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #f9b233;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transform-origin: left center;
}

.partner-slide:hover .logo-name::after {
    width: 100%;
    background: linear-gradient(90deg, #f9b233, #ff8c00, #f9b233);
    background-size: 200% 100%;
    animation: gradientShift 1.5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* Adjust the logo container to make space for the name */
.partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    /* Reduced slightly to make space for name */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-slide:hover .partner-logo {
    opacity: 1;
}







.partners-track p {
    color: black;
    font-weight: bold;
    justify-items: center;
    align-items: center;
    padding: 5px;
}

.partners-track p:hover {
    color: red;
}

.partners-track a {
    text-decoration: none;
}

.slider_div {
    background-color: white;
    padding: 15px;
}

.partners-container {
    max-width: 1100px;
    /* margin: 1000 auto; */
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    position: relative;
    /* border-radius: 30%; */
    /* margin-left: 0px; */
    /* background-color: red; */
}

.partners-title {
    font-size: 24px;
    /* margin-bottom: 30px; */
    color: #333;
    font-weight: 600;
    text-align: left;
}

/* Slider styles */
.partners-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    border-radius: 30px;
    /* background: #000; */
}

.partners-track {
    display: flex;
    /* background-color: red; */
    transition: transform 0.5s ease;
    padding: 5px;
}

.partner-slide {
    width: 200px;
    flex-shrink: 0;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #000; */
}

.partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.3s ease;
    /* background: #000; */
}

/* .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        } */

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #e0e0e0;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-slide {
        width: 150px;
        /* background-color: red; */
        /* gap: 10px; */
    }
}

@media (max-width: 480px) {
    .partner-slide {
        width: 120px;
    }

    .slider-nav {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }

    .partners-title {
        text-align: center;
    }
}




/* Enhanced hover animation */
.product-image-hover-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-hover-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.product-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
}

.product-card-hover-effect:hover .product-main-img {
    opacity: 0;
    transform: translateY(-10px);
}

.product-card-hover-effect:hover .product-hover-img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}


.product-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    /* background: white; */
    border-radius: 8px;
    padding: 20px;
    z-index: 1;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

/* Slider Header */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    /* border-bottom: 1px solid #e0e0e0; */
}

.slider-tabs {
    display: flex;
    gap: 30px;
    justify-content: end;
}

.tab-btn {
    background: none;
    border: none;
    box-shadow: inset;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    padding: 6px 8px;
    position: relative;
    transition: color 0.3s ease;
    /* border: 1px solid red; */
}

.tab-btn.active {
    color: #e74c3c;
    background: white;
    border: 1px solid rgb(236, 234, 234);
}

.tab-btn.active::after {
    content: '';
    /* position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 2px; */
    /* background-color: #e74c3c; */
    /* border: 2px solid red; */
}

.slider-nav1 {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.nav-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* Initially hide dropdown */
.category-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* When active (open) */
.category-dropdown-menu.active {
    max-height: 500px;
    /* पुरेसं मोठं value */
}

/* Rotate arrow icon when active */
.dropdown-icon.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}




/* Slider Container */
.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}


.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}


.slide-febs {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    padding: 8px 0;
    box-sizing: border-box;
}

.second-prodcut-cardsd {
    margin-left: 20px;
    padding: 5px;
    width: 220px;
    height: 345px;
}

/* Cards */
.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    height: 350px;
    /* force consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* even spacing */
}


.product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    height: 250px;
    background: #f8f9fa;


}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.product-size {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.product-actions {
    position: absolute;
    bottom: 20px;
    /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    /* Start slightly below */
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    /* Move up to final position */
    pointer-events: auto;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    transform: translateY(10px);
    /* Start slightly lower */
    opacity: 0;
}

.product-card:hover .action-btn {
    transform: translateY(0);
    /* Move up smoothly */
    opacity: 1;
}

/* Staggered animation for each button */
.product-card:hover .action-btn:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card:hover .action-btn:nth-child(2) {
    transition-delay: 0.2s;
}

.product-card:hover .action-btn:nth-child(3) {
    transition-delay: 0.3s;
}

.search-btn,
.cart-btn,
.heart-btn {
    background: #f39c12;
}

.action-btn:hover {
    transform: scale(1.1) translateY(0) !important;
    /* Ensure hover works */
}

.product-info {
    padding: 10px;
    padding-bottom: 0px;
    /* background: #000; */
    /* margin-top: -50px; */
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    /* margin-top: -50px; */
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    margin-bottom: 0px;
    /* background-color: #003399; */
}

.current-price {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;

}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-min {
    font-size: 12px;
    color: #2980b9;
    font-style: italic;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.33% - 15px);

    }
}

@media (max-width: 768px) {
    .slider-header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .slide-febs {
        min-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, auto);
        gap: 20px;
        padding: 8px 0;
        box-sizing: border-box;
    }

    .product-card {
        /* flex: 0 0 220px; */
        flex: 0 0 calc(50% - 10px);
        height: 260px;
    }

    .slider-tabs {
        gap: 20px;
    }

    .tab-btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-slider-container {
        padding: 15px;

    }

    .product-card {
        /* flex: 0 0 200px; */
        flex: 0 0 100%;
    }

    .slider-track {
        gap: 15px;
    }

    .product-image {
        height: 200px;
        /* margin-top: 20px; */
    }

    .product-image img {
        height: 200px;
        /* margin-top: 50px; */
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 13px;
        height: 36px;
    }

    .current-price {
        font-size: 16px;
    }
}



.list-unstyled {
    line-height: 25px;
    color: #000;
}

.list-unstyled li:hover {
    font-weight: 600;
}

.sinfotech-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid #e0e0e0;
}

.footer-logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.footer-logo h2 {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-divider {
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.footer-note strong {
    font-weight: 600;
    color: #333;
}

.footer-address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0056b3;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #555;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0056b3;
}

.footer-legal {
    font-size: 14px;
    color: #777;
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
}














/* Custom Variables */
:root {
    --rfid-primary-color: white;
    --rfid-secondary-color: white;
    --rfid-accent-color: #e74c3c;
    --rfid-text-light: #7f8c8d;
    --rfid-border-color: #ecf0f1;
    --rfid-hover-bg: #f8f9fa;
    --rfid-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}





.sidebar-container {
    background: #111;
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.sidebar-title-cat {
    font-size: 25px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
    margin-left: 15px;
}

.sidebar-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;

}

.sidebar-dropdown-list li {
    margin: 5px 0;
}

.sidebar-dropdown-list li a {
    color: white;
    text-decoration: none;
    padding: 6px 10px;
    display: block;
    transition: background 0.3s;
    border-left: 4px solid gray;
    margin-left: 0px;
    margin-top: 10px;
    height: 35px;
    margin-bottom: 10px;

}

.sidebar-dropdown-list li a:hover {
    background: #333;
    border-left: 4px solid white;
}

.sidebar-dropdown-btn {
    width: 100%;
    background: #111;
    border: none;
    color: white;
    font-size: 15px;
    padding: 6px 10px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    border-left: 4px solid gray;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.sidebar-dropdown-btn:hover {
    background: #333;
    border-left: 4px solid white;
}

.sidebar-dropdown-icon {
    transition: transform 0.3s ease;
}

.sidebar-dropdown-btn[aria-expanded="true"] .sidebar-dropdown-icon {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: #111;
    transition: max-height 0.4s ease;
}

.sidebar-dropdown-menu.active {
    display: block;
    max-height: 500px;
}

.sidebar-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-submenu-list li a {
    padding: 8px 10px;
    display: block;
    /* color: #ccc; */
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.sidebar-submenu-list li a:hover {
    background: #222;
    color: white;
}





/* Product Slider Styles */
.rfid-product-slider-wrapper {
    /* background: white; */
    border-radius: 8px;
    /* box-shadow: var(--rfid-card-shadow); */
    padding: 0px;

}

.product-slider-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    padding-bottom: 2px;
    /* border-bottom: 1px solid var(--rfid-border-color); */
}

.slider-navigation-controls {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--rfid-text-light);
}

.slider-nav-btn:hover {
    background-color: #f8ac2f;
    border-color: var(--rfid-primary-color);
    color: black;
    transform: scale(1.05);
}

.slider-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.slider-nav-btn:disabled:hover {
    background: white;
    border-color: #dee2e6;
    color: var(--rfid-text-light);
}

/* Product Slider Viewport */
.product-slider-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;

}




.product-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 10px;
    padding-bottom: 5px;
    /* background: #000; */
}

.product-slider-track .rfid-product-card:last-child {
    position: relative;
}

/* Product Card Styles */
.rfid-product-card {
    /* flex: 0 0 calc(33.333% - 14px); */
    background: white;
    border: 1px solid var(--rfid-border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 0 0 calc(33.333% - 10px);
    position: relative;
    padding: 0px;
}

/* .rfid-product-card .last{
    padding-left: 50px;
    background-color: #00ab41;
} */

.rfid-product-card:hover {
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); */
    transform: translateY(-3px);
    /* border-color: var(--rfid-primary-color); */
}

.product-card-image-container {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0px;
}

.product-card-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rfid-product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-size: 15px;
    font-weight: 600;
    color: rgb(26, 25, 25);
    margin-bottom: 12px;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--rfid-accent-color);
}

.product-old-price {
    font-size: 14px;
    color: var(--rfid-text-light);
    text-decoration: line-through;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .rfid-product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 992px) {
    .rfid-categories-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .rfid-product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .rfid-product-card {
        flex: 0 0 100%;
    }

    .product-slider-track {
        gap: 15px;
    }

    .product-card-image-container {
        height: 180px;
    }

    .product-card-content {
        padding: 15px;
    }

    .product-card-title {
        font-size: 14px;
        height: 38px;
    }

    .product-current-price {
        font-size: 16px;
    }

    .sidebar-title-cat {
        text-align: center;
    }

    .sidebar-container {
        margin-bottom: 20px;
    }

    .product-slider-header {
        /* background-color: #0056b3; */
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .rfid-product-slider-wrapper {
        padding: 15px;
    }

    .categories-title {
        font-size: 14px;
    }

    .category-link,
    .category-dropdown-btn {
        padding: 12px 15px;
        font-size: 13px;
    }

    .subcategory-link {
        padding: 10px 30px;
        font-size: 12px;
    }
}

/* Loading Animation */
.rfid-product-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.rfid-product-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Focus Styles for Accessibility */
/* .category-link:focus,
.category-dropdown-btn:focus,
.subcategory-link:focus,
.slider-nav-btn:focus,
.rfid-product-card:focus {
    outline: 2px solid var(--rfid-accent-color);
    outline-offset: 2px;
} */




.carousel-item img {
    max-height: 500px;
}


/* @media (max-width: 768px) {
    .carousel-item img {
        height: 500px;
    }
} */


/* Our Brand Sections */



/* Brand Slider Variables */
:root {
    --brands-primary-color: #2c3e50;
    --brands-secondary-color: #34495e;
    --brands-accent-red: #e74c3c;
    --brands-accent-green: #27ae60;
    --brands-accent-blue: #3498db;
    --brands-text-dark: #2c3e50;
    --brands-text-light: #7f8c8d;
    --brands-border-color: #ecf0f1;
    --brands-hover-bg: #f8f9fa;
    --brands-card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --brands-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Brands Showcase Section */
.rfid-brands-showcase {
    /* background: red; */
    border-radius: 12px;
    padding: 20px;
    margin: 10px 0;
    position: relative;
}

/* Showcase Header */
.brands-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brands-border-color);
}

.brands-showcase-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--brands-text-dark);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brands-navigation-controls {
    display: flex;
    gap: 12px;
}

.brands-nav-button {
    width: 45px;
    height: 45px;
    border: 1px solid var(--brands-border-color);
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--brands-transition);
    color: var(--brands-text-light);
    font-size: 16px;
}

.brands-nav-button:hover {
    background-color: white;
    border-color: var(--brands-primary-color);
    color: black;
    transform: scale(1.05);
}

.brands-nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.brands-nav-button:disabled:hover {
    background: white;
    border-color: var(--brands-border-color);
    color: var(--brands-text-light);
}



/* Slider Container */
.brands-slider-container {
    position: relative;
    /* background-color: #003399; */
    overflow: hidden;
    width: 100%;
    padding: 0 5px;
    /* Add side padding */
}

.brands-slider-wrapper {
    overflow: visible;
    /* Changed from hidden */
    width: 100%;
}

.brands-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 5px 0;
}

/* Brand Showcase Cards */
.brand-showcase-card {
    flex: 0 0 300px;
    /* Fixed width */
    min-width: 300px;
    /* Prevents shrinking */
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, var(--brands-accent-red), var(--brands-accent-green), var(--brands-accent-blue)); */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brand-showcase-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
    border-color: var(--brands-primary-color);
}

.brand-showcase-card:hover::before {
    transform: scaleX(1);
}

/* Brand Logo Container */
.brand-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    height: 80px;
    align-items: center;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-showcase-card:hover .brand-logo-wrapper {
    transform: scale(1.05);
}

/* ACS Logo */
.acs-logo {
    width: 120px;
    height: 60px;
    background: var(--brands-accent-red);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: lowercase;
}

/* Avery Dennison Logo */
.avery-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avery-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid var(--brands-accent-red);
    position: relative;
}

.avery-triangle::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 25px solid white;
}

.avery-text {
    color: var(--brands-accent-red);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
}

/* CAEN Logo */
.caen-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.caen-hexagon {
    width: 50px;
    height: 50px;
    background: var(--brands-accent-green);
    position: relative;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caen-hexagon::before,
.caen-hexagon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.caen-hexagon::before {
    bottom: 100%;
    border-bottom: 15px solid var(--brands-accent-green);
}

.caen-hexagon::after {
    top: 100%;
    border-top: 15px solid var(--brands-accent-green);
}

.caen-r {
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

.caen-text {
    color: var(--brands-text-dark);
    font-size: 18px;
    font-weight: bold;
}

.caen-rfid {
    color: var(--brands-accent-green);
}

/* HID Logo */
.hid-logo {
    width: 100px;
    height: 50px;
    background: var(--brands-primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hid-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Identiv Logo */
.identiv-logo {
    padding: 15px 25px;
    border: 2px solid var(--brands-accent-blue);
    border-radius: 8px;
}

.identiv-text {
    color: var(--brands-accent-blue);
    font-size: 18px;
    font-weight: 600;
    text-transform: lowercase;
}

/* Impinj Logo */
.impinj-logo {
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 8px;
}

.impinj-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: lowercase;
}

/* Brand Info Section */
.brand-info-section {
    text-align: center;
}

.brand-name-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--brands-text-dark);
    margin-bottom: 15px;
}

.brand-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-category-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: var(--brands-transition);
    border-radius: 6px;
    margin: 2px 0;
}

.brand-category-item:hover {
    background-color: var(--brands-hover-bg);
    padding-left: 10px;
}

.category-arrow {
    color: var(--brands-text-light);
    font-size: 12px;
    margin-right: 10px;
    transition: var(--brands-transition);
}

.brand-category-item:hover .category-arrow {
    color: var(--brands-accent-red);
    transform: translateX(3px);
}

.category-name {
    color: var(--brands-text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--brands-transition);
}

.brand-category-item:hover .category-name {
    color: var(--brands-primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brand-showcase-card {
        flex: 0 0 320px;
    }

    .brands-showcase-title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .brand-showcase-card {
        flex: 0 0 280px;
        margin-left: 2px;
    }

    .rfid-brands-showcase {
        padding: 20px;
    }

    .brands-showcase-header {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

}

@media (max-width: 768px) {
    .brand-showcase-card {
        flex: 0 0 200px;
    }

    .brands-slider-track {
        gap: 15px;
    }

    .brands-showcase-title {
        font-size: 20px;
    }

    .brand-logo-container {
        height: 60px;
    }

    .brand-name-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .brand-showcase-card {
        flex: 0 0 220px;
        padding: 20px;
    }

    .rfid-brands-showcase {
        padding: 15px;
    }

    .brands-showcase-title {
        font-size: 18px;
    }

    .brands-nav-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/* Loading Animation */
.brand-showcase-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.brand-showcase-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: brandShimmer 1.5s infinite;
}

@keyframes brandShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Focus Styles for Accessibility */
/* .brand-showcase-card:focus,
.brands-nav-button:focus {
    outline: 3px solid var(--brands-accent-blue);
    outline-offset: 2px;
} */

/* Print Styles */
@media print {
    .brands-navigation-controls {
        display: none;
    }

    .brands-slider-track {
        flex-wrap: wrap;
    }

    .brand-showcase-card {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 20px;
        break-inside: avoid;
    }
}
















/* On Seles  */


/* Sale Products Slider Variables */
:root {
    --sale-primary-color: #e74c3c;
    --sale-secondary-color: #c0392b;
    --sale-success-color: #27ae60;
    --sale-warning-color: #f39c12;
    --sale-info-color: #3498db;
    --sale-dark-color: #2c3e50;
    --sale-light-color: #ecf0f1;
    --sale-text-dark: #2c3e50;
    --sale-text-light: #7f8c8d;
    --sale-border-color: #e8e8e8;
    --sale-hover-bg: #f8f9fa;
    --sale-card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --sale-card-hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    --sale-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sale-overlay-bg: rgba(0, 0, 0, 0.7);
}

.product-card-image-container {
    position: relative;
    overflow: hidden;
}

.product-card-icons {
    position: absolute;
    bottom: -60px;
    /* Hidden below image initially */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.product-card-icons a {
    background-color: #f8ac2f;
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card-icons a:hover {
    background-color: blue;
    /* WhatsApp green hover */
    color: #fff;
}

/* On hover: slide icons up smoothly */
.rfid-product-card:hover .product-card-icons {
    bottom: 0px;
    /* Moves icons into view */
    opacity: 1;
}



/* General Styles */
body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sale Products Section */
.rfid-sale-products-section {
    border-radius: 15px;
    padding: 25px;
    margin: 5px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.sale-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--sale-light-color);
}

.sale-products-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--sale-dark-color);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.sale-products-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sale-primary-color), var(--sale-warning-color));
    border-radius: 2px;
}

.sale-slider-navigation {
    display: flex;
    gap: 15px;
}

.sale-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--sale-border-color);
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sale-transition);
    color: var(--sale-text-light);
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sale-nav-btn:hover {
    border-color: rgb(173, 172, 172);
    color: rgb(51, 48, 48);
    transform: scale(1.1);
}

.sale-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sale-nav-btn:disabled:hover {
    background: white;
    border-color: var(--sale-border-color);
    color: var(--sale-text-light);
}

/* Slider Container */
.sale-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.sale-slider-viewport {
    overflow: hidden;
}

.sale-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
    will-change: transform;
}

.sale-product-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 cards with gap */
    min-width: 0;
    background: white;
    border: 3px solid var(--sale-border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--sale-transition);
    cursor: pointer;
    position: relative;
    /* box-shadow: var(--sale-card-shadow); */
    margin-bottom: 10px;
}

.sale-product-card:hover {
    transform: translateY(-3px);

}

/* Card Image Wrapper */
.sale-card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, opacity 0.3s ease;
    padding: 15px;
}

.sale-product-card:hover .sale-product-image {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Secondary product image for hover effect */
.sale-product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sale-product-card:hover .sale-product-image-secondary {
    opacity: 1;
}

.sale-product-card:hover .sale-product-image {
    opacity: 0;
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--sale-primary-color), var(--sale-secondary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    z-index: 2;
}

/* Card Overlay with Action Buttons */
.sale-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
}

.sale-product-card:hover .sale-card-overlay {
    opacity: 1;
    visibility: visible;
}

.sale-action-buttons {
    display: flex;
    gap: 10px;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sale-product-card:hover .sale-action-buttons {
    transform: translateY(0);
}

/* Staggered animation for action buttons */
.sale-action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    background-color: #f8ac2f;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sale-product-card:hover .sale-action-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger the button animations */
.sale-product-card:hover .sale-action-btn:nth-child(1) {
    transition-delay: 0.1s;
}

.sale-product-card:hover .sale-action-btn:nth-child(2) {
    transition-delay: 0.2s;
}

.sale-product-card:hover .sale-action-btn:nth-child(3) {
    transition-delay: 0.3s;
}

.sale-action-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.sale-search-btn:hover {
    background: #2980b9;
}

.sale-cart-btn:hover {
    background: #229954;
}

.sale-heart-btn:hover {
    background: #e74c3c;
}

/* Button Ripple Effect */
.sale-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.sale-action-btn:active::before {
    width: 100%;
    height: 100%;
}

/* Card Content */
.sale-card-content {
    padding: 20px;
}

.sale-product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sale-text-dark);
    margin-bottom: 25px;
    line-height: 1.5;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sale-product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sale-current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--sale-primary-color);
}

.sale-original-price {
    font-size: 16px;
    color: var(--sale-text-light);
    text-decoration: line-through;
}

.sale-discount-percent {
    background: var(--sale-success-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.Discount {
    margin-left: 0px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sale-product-card {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 cards on medium screens */
    }
}

@media (max-width: 992px) {
    .rfid-sale-products-section {
        padding: 20px;
    }

    .sale-products-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .sale-card-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .sale-product-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 cards on small screens */
    }

    .sale-slider-track {
        gap: 15px;
    }

    .sale-products-title {
        font-size: 22px;
    }

    .sale-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .sale-card-content {
        padding: 15px;
    }

    .hfuhf-product-grid {
        justify-content: end;

    }
}

@media (max-width: 480px) {
    .sale-product-card {
        flex: 0 0 100%;
        /* 1 card on extra small screens */
    }

    .sale-card-image-wrapper {
        height: 180px;
    }

    .sale-products-title {
        font-size: 20px;
    }
}




.footer-address {
    text-align: center;

}

.footer-container {
    display: inline;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.our-comp {
    justify-content: space-between;
}



.footer-container {
    display: flex;
}

.our-comp {
    justify-items: center;
}



@media (max-width: 576px) {
    .sale-product-card {
        flex: 0 0 220px;
    }

    .rfid-sale-products-section {
        padding: 20px;
    }

    .sale-products-title {
        font-size: 20px;
    }

    .sale-action-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .sale-action-buttons {
        gap: 12px;
    }

    .sale-current-price {
        font-size: 18px;
    }

    .sale-original-price {
        font-size: 14px;
    }
}

/* Loading Animation */
.sale-product-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.sale-product-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: saleShimmer 1.5s infinite;
}

@keyframes saleShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Focus Styles for Accessibility */
/* .sale-product-card:focus,
.sale-nav-btn:focus,
.sale-action-btn:focus {
    outline: 3px solid var(--sale-info-color);
    outline-offset: 2px;
} */

/* Print Styles */
@media print {

    .sale-slider-navigation,
    .sale-card-overlay {
        display: none;
    }

    .sale-slider-track {
        flex-wrap: wrap;
    }

    .sale-product-card {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
        break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .sale-product-card {
        border-width: 3px;
    }

    .sale-badge {
        border: 2px solid white;
    }

    .sale-action-btn {
        border: 2px solid white;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .sale-product-card,
    .sale-product-image,
    .sale-action-buttons,
    .sale-card-overlay {
        transition: none;
    }

    .sale-product-card:hover {
        transform: none;
    }

    .sale-product-card:hover .sale-product-image {
        transform: none;
    }
}

/* Category slider css  */
.category-slider-extra {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.category-slider-extra.open {
    max-height: 500px;
}

.category-slider-toggle {
    padding: 8px 10px;
    cursor: pointer;
    background: #111;
    color: #fff;
    text-align: left;
    border-left: 4px solid transparent;
    transition: background 0.3s;
}

.category-slider-toggle:hover {
    background: #222;
}

/* Mobile-first responsive approach */
.category-slider-container {
    display: flex;
    flex-direction: column;
    /* Stack vertically on mobile */
    gap: 15px;
}

.category-slider-categories {
    width: 100%;
    /* Full width on mobile */
    background: #111;
    padding: 12px;
    border-radius: 4px;
    margin-top: 15px;
    color: white;
    order: 2;
    /* Move categories below slider on mobile */
}

.category-slider-title {
    margin-bottom: 8px;
    font-size: 30px !important;
    /* Slightly smaller on mobile */
}

.services-categorey-title ul li {
    list-style-type: none;
    line-height: 30px;
    font-weight: 500;
}

.services-categorey-title ul li a {
    text-decoration: none;
    color: #000;
}

.services-categorey-title ul li a:hover {
    color: red;
}

#category-slider-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-slider-item {
    padding: 6px 8px;
    cursor: pointer;
    border-left: 3px solid rgb(153, 153, 153);
    margin-bottom: 6px;
    transition: 0.3s;
    font-size: 14px;
    /* Smaller text on mobile */
}

.category-slider-item.active,
.category-slider-item:hover {
    border-left: 3px solid white;
    background: #222;
}

.category-slider-wrapper {
    position: relative;
    width: 100%;
    /* Full width on mobile */
    overflow: hidden;
    order: 1;
    /* Slider comes first on mobile */
}

.category-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.category-slider-card {
    flex: 0 0 180px;
    /* Smaller cards on mobile */
    margin-right: 15px;
    background: white;
    border-radius: 3px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-slider-card img {
    width: 100%;
    height: 150px;
    /* Smaller images on mobile */
    object-fit: contain;
}

.category-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    /* Smaller arrows on mobile */
    padding: 4px 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#category-slider-prev {
    left: 5px;
}

#category-slider-next {
    right: 5px;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .category-slider-container {
        flex-direction: row;
        /* Side by side on larger screens */
        gap: 20px;
    }

    .category-slider-categories {
        width: 250px;
        padding: 15px;
        margin-top: 20px;
        order: 1;
        /* Categories first on desktop */
    }

    .category-slider-title {
        margin-bottom: 10px;
        font-size: inherit;
    }

    .category-slider-item {
        padding: 6px 10px;
        border-left: 4px solid rgb(153, 153, 153);
        margin-bottom: 8px;
        font-size: inherit;
    }

    .category-slider-wrapper {
        flex: 1;
        order: 2;
        /* Slider second on desktop */
    }

    .category-slider-card {
        flex: 0 0 250px;
        margin-right: 25px;
        padding: 10px;
    }

    .category-slider-card img {
        height: 220px;
    }

    .category-slider-arrow {
        font-size: 24px;
        padding: 5px 10px;
    }

    #category-slider-prev {
        left: 10px;
    }

    #category-slider-next {
        right: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .category-slider-card {
        flex: 0 0 150px;
        /* Even smaller cards on very small screens */
    }

    .category-slider-card img {
        height: 120px;
    }
}





/* Services page  */
.services-container {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px auto;
    max-width: 1050px;
    position: sticky;
    top: 80px;
}



.services-header {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2e5780 0%, #144391 100%);
    color: white;
}

.services-header-content {
    position: relative;
    z-index: 2;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('serv.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.services-content {
    padding: 40px 30px;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service-item {
    flex: 0 0 calc(50% - 30px);
    margin: 15px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    display: flex;
    align-items: flex-start;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f9b233;
    background: #fff;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: #3498db;
}

.service-item:hover .service-icon {
    background: rgba(46, 204, 113, 0.15);
}

.service-item:hover .service-icon i {
    color: #f9b233;
}

.service-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-text p {
    color: #5a6b7c;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .service-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .services-header h2 {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
}




.sale-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* hide scrollbar in Firefox */
}

.sale-slider-track::-webkit-scrollbar {
    display: none;
    /* hide scrollbar in Chrome/Safari */
}