@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Poppins', sans-serif;
	}
body, .inflanar-header__menu .nav-menu li a{
	font-family: 'Poppins', sans-serif!important;
}

/* ===== LEFT SIDE SLIDE MODAL ===== */
.modal.side-modal.left .modal-dialog {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
}

/* SHOW STATE */
.modal.show.side-modal.left .modal-dialog {
    transform: translateX(0);
}

/* FULL HEIGHT CONTENT */
.modal.side-modal .modal-content {
    height: 100%;
    border-radius: 0;
}

/* DARK BACKDROP */
.modal-backdrop.show {
    opacity: 0.6;
}

/* ICON ALIGNMENT */
.modal.side-modal .nav-link i {
    width: 20px;
}

#offcanvas-modal .btn-close {
    font-size: 1.3rem;
    opacity: 0.7;
    transition: 0.2s;
    margin: -.5rem 0 -.5rem auto;
}

#offcanvas-modal .modal-header img {
    max-height: 45px;
}

.header-logo{
	max-height: 45px;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #d12727;
}	
.navbar-light .navbar-nav .nav-link {
	font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    color: rgb(0 0 0);
}		

/* Full height modal */
.modal.side-modal .modal-content {
    height: 100vh;
    overflow: hidden;
}

/* Scroll only menu/content */
.modal.side-modal .offcanvas-scroll {
    overflow-y: auto;
    max-height: calc(100vh - 140px); 
    /* 140px = header + user/cart approx */
    -webkit-overflow-scrolling: touch;
}

/* Optional: smoother scrollbar (desktop) */
.modal.side-modal .offcanvas-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal.side-modal .offcanvas-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.modal.side-modal .offcanvas-scroll::-webkit-scrollbar-track {
    background: transparent;
}

/* ===============================
   SIDE MENU BASE
   =============================== */

.offcanvas-scroll .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #222;
    border-bottom: 1px solid #f2f2f2;
    position: relative;
    transition: all 0.2s ease;
}

/* ICON DEFAULT */
.offcanvas-scroll .nav-link i {
    color: #e60023;
    font-size: 14px;
    min-width: 18px;
}

/* HOVER */
.offcanvas-scroll .nav-link:hover {
    background-color: #fafafa;
}

/* ===============================
   ACTIVE STATE (LIKE SCREENSHOT)
   =============================== */

.offcanvas-scroll .nav-link.active {
    background-color: #fff1f3; /* light red bg */
    color: #e60023;            /* red text */
    font-weight: 600;
}

/* LEFT RED BAR */
.offcanvas-scroll .nav-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #e60023;
    border-radius: 0 2px 2px 0;
}

/* ACTIVE ICON */
.offcanvas-scroll .nav-link.active i {
    color: #e60023;
}

/* ===============================
   USER + CART UI (OFFCANVAS)
   =============================== */

.user-info-box {
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.user-info-box:hover {
    background-color: #f8f9fa;
}

.user-avatar {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 2px solid #e60023;
}

.user-text {
    line-height: 1.1;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.user-sub {
    font-size: 11px;
    color: #888;
}

/* CART BUTTON */
.cart-btn-ui {
    position: relative;
    font-weight: 600;
    border-radius: 8px;
}

/* CART BADGE */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #e60023;
    color: #fff;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    font-family: Roboto, sans-serif;
}

footer h5 {
    font-family: Roboto, sans-serif;
}

footer .footer-location{
    font-family: Roboto, sans-serif;
}

footer ul li a {
    font-family: Roboto, sans-serif;
}

.copyright-text {
    font-family: Roboto, sans-serif;
}
