* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

:root {
    /* colors */
    --primary-color: #b13123;
    --primary-color-light: #e0f7ff;
    --primary-color-2: #141314;
    --rating-color: #ebbf20;
    --text-color: #232323;
    --text-color-light: #707070;
    --text-color-dark: #1c1b1b;
    --light-color: #f6f6f6;
    --light-color-2: #f8f8f8;
    --stroke-color: #c1c1c1;
    --stroke-color-light: #ececec;
    --white: #ffffff;
    --black: #000000;
}

html {
    overflow-x: hidden;
}

body {
    background-color: #eee;
    color: var(--text-color);
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

.font-lato {
    font-family: "Lato", sans-serif;
}

.font-open-sans {
    font-family: "Open Sans", sans-serif;
}

.font-roboto {
    font-family: "Roboto", sans-serif;
}

.font-noto-sans {
    font-family: "Noto Sans", sans-serif;
}

main {
    background-color: #fff;
    min-height: 500px;
}

p {
    font-family: var(--font-inter);
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.5;
}

ol,
li {
    margin-bottom: 10px;
}

h1 {
    font-size: 1.4rem;
    font-weight: bold;
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

h3 {
    font-weight: 550;
    font-size: 1.1rem;
}

h4 {
    font-weight: 550;
    font-size: 1.1rem;
}

h5 {
    font-weight: 550;
    font-size: 1.1rem;
}

h6 {
    font-weight: 550;
    font-size: 1.1rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p {
    margin-bottom: 10px;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

.btn:focus,
input:focus,
.form-control:focus {
    box-shadow: none;
}

img {
    max-width: 100%;
    height: auto;
}

.invalid-feedback {
    display: block;
}

hr {
    margin: 0.5rem 0;
}

/* colors */
.primary-color {
    color: var(--primary-color) !important;
}

.primary-color-light {
    color: var(--primary-color-light);
}

.primary-color-2 {
    color: var(--primary-color-2) !important;
}

.rating-color {
    color: var(--rating-color) !important;
}

.text-color {
    color: var(--text-color) !important;
}

.text-color-dark {
    color: var(--text-color-dark) !important;
}

.text-color-light {
    color: var(--text-color-light) !important;
}

.text-color-black {
    color: var(--black);
}

.hover-primary:hover {
    color: var(--primary-color);
}

/* background colors */
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-primary-light {
    background-color: var(--primary-color-light);
}

.bg-primary-2 {
    background-color: var(--primary-color-2);
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-light-2 {
    background-color: var(--light-color-2) !important;
}

.bg-text {
    background-color: var(--text-color) !important;
}

.bg-dark {
    background-color: var(--text-color-dark) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

/* fonts */
.fs-10 {
    font-size: 1rem;
}

.fs-11 {
    font-size: 1.1rem;
}

.fs-12 {
    font-size: 1.2rem;
}

.fs-13 {
    font-size: 1.3rem;
}

.fs-14 {
    font-size: 1.4rem;
}

.fs-15 {
    font-size: 1.5rem;
}

.fs-16 {
    font-size: 1.6rem;
}

.fs-18 {
    font-size: 1.8rem;
}

.fs-30 {
    font-size: 3rem;
}

.fs-35 {
    font-size: 3.5rem;
}

.fs-40 {
    font-size: 4rem;
}

.fs-45 {
    font-size: 4.5rem;
}

.fs-50 {
    font-size: 5rem;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.sec-title {
    color: var(--text-color-dark);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    padding-bottom: 5px;
    margin-bottom: 5px;
}

/* Border */
.border-brand-1 {
    border: 1px solid var(--brand-color) !important;
}

.border-brand-2 {
    border: 2px solid var(--brand-color) !important;
}

.border-brand-3 {
    border: 3px solid var(--brand-color) !important;
}

.border-top-brand-1 {
    border-top: 1px solid var(--brand-color) !important;
}

.border-top-brand-2 {
    border-top: 2px solid var(--brand-color) !important;
}

.border-top-brand-3 {
    border-top: 3px solid var(--brand-color) !important;
}

.border-bottom-brand-1 {
    border-bottom: 1px solid var(--brand-color) !important;
}

.border-bottom-brand-2 {
    border-bottom: 2px solid var(--brand-color) !important;
}

.border-bottom-brand-3 {
    border-bottom: 3px solid var(--brand-color) !important;
}

.rounded-4 {
    border-radius: 0.75rem !important;
}

.rounded-top-4 {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
}

.rounded-bottom-4 {
    border-bottom-left-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
}

.rounded-5 {
    border-radius: 1rem !important;
}

.rounded-top-5 {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.rounded-bottom-5 {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}

/* Form Control */
.form-control {
    border: 1px solid var(--stroke-color);
    border-radius: 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
}

.form-select {
    border: 1px solid var(--stroke-color);
    border-radius: 15px;
}

.form-select:focus {
    border-color: var(--primary-color);
}

/* Stylish Checkbox */
.form-check input[type="checkbox"].form-check-input {
    border-color: var(--primary-color);
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.form-check input[type="checkbox"].form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.option-input input[type="radio"] {
    border-color: var(--primary-color);
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.option-input input[type="radio"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Rating Star */
.stars {
    color: var(--rating-color);
}

/**** Title ***/
.title h2 {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.title h2:after {
    display: inline-block;
    margin: 0 0 8px 20px;
    height: 3px;
    content: " ";
    text-shadow: none;
    background-color: #999;
    width: 140px;
}

.title h2:before {
    display: inline-block;
    margin: 0 20px 8px 0;
    height: 3px;
    content: " ";
    text-shadow: none;
    background-color: #999;
    width: 140px;
}

/**** Top Bar ****/
.topbar {
    font-size: 16px;
    line-height: 1.2;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

.topbar .list-inline-item i {
    font-size: 16px;
    margin-right: 5px;
}

/**** Header ****/
.navbar .logo img {
    height: 3rem;
}

.navbar-nav li {
    margin-bottom: 0;
}

.header-left .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.header-left .nav-link:hover {
    color: #ba2e22;
}

.search-input {
    border-radius: 15px 0 0 15px;
}

.search-btn {
    border-radius: 0 15px 15px 0;
}

.order-summary .input-group-text {
    border: none;
}

.coupon-btn {
    border-radius: 0 15px 15px 0 !important;
}

.floating-num {
    position: absolute;
    top: -1rem;
    right: -0.9rem;
    padding: 0.15rem;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: var(--white);
    background: var(--primary-color);
}

.header-menu {
    background-color: #343a40;
}

.header-menu .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.header-menu .nav-link:hover {
    color: #eee;
}
/* Tab, Mobile Menu Start Here */
.sidebar {
    width: 20rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -34rem;
    padding: 0.7rem 0;
    background-color: var(--white);
    z-index: 1050;
    transition: 0.3s linear;
}

.show-sidebar {
    left: 0 !important;
}

.body-wrapper-freeze {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 70%);
    z-index: 1040;
    display: none;
}

.nav-icons .search-dropdown {
    width: 300px;
}

.nav-icons .user-dropdown {
    width: 200px;
}

.nav-icons .dropdown-item {
    color: var(--text-color);
    text-decoration: none;
}

.nav-icons .dropdown-item:hover,
.nav-icons .dropdown-item:focus {
    background-color: transparent;
    color: var(--primary-color-2);
}

.nav-icons .dropdown-item i {
    margin-right: 5px;
}

.nav-icons .dropdown-menu-end {
    width: 200px;
}

.tab-mobile-menu-buttons {
    padding-left: 2rem;
    padding-right: 2rem;
}

.tab-mobile-menu-buttons .nav-pills .nav-item {
    width: 50%;
    text-align: center;
}

.tab-mobile-menu-buttons .nav-pills .nav-link {
    border: 1px solid var(--brand-color);
    color: var(--brand-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem;
    text-transform: uppercase;
    border-radius: 0.3rem;
}

.tab-mobile-menu-buttons .nav-pills .nav-link i {
    margin-right: 2px;
}

.tab-mobile-menu-buttons .nav-pills .nav-link.active {
    color: var(--white);
    background-color: var(--brand-color);
}

.tab-mobile-menu-buttons button:hover {
    background-color: var(--brand-color);
    color: var(--white);
}

.tab-mobile-menu-buttons button.active-btn {
    background-color: var(--brand-color);
    color: var(--white);
}

.sidebar-content li {
    font-size: 1.1rem;
    margin-bottom: 2px;
    position: relative;
    cursor: pointer;
}

.sidebar li:hover {
    color: var(--brand-color);
}

.sidebar li:hover a {
    color: var(--brand-color);
}

ul.sidebar-content-item li a i {
    color: var(--text-color);
    font-size: 1rem;
    float: right;
}

ul.sidebar-content-item li a:hover {
    color: var(--brand-color);
}

.sidebar-content .tab-content,
.sidebar-content .sidebar-bottom-items {
    padding-left: 1rem;
    padding-right: 1rem;
}

.side-menu-categories .dropdown li {
    cursor: pointer;
}

.side-menu-categories .dropdown li i {
    float: right;
    font-size: 1rem;
}

.side-menu-categories .dropdown-toggle::after {
    display: none;
}

.side-menu-categories .dropdown-menu {
    border: none;
}

.side-menu-categories .dropdown-menu li {
    margin-bottom: 0.5rem;
}

.side-menu-categories .dropdown-menu li a {
    color: var(--text-color);
}

.side-menu-categories .dropdown-menu li a:hover {
    color: var(--brand-color);
}

.side-menu-categories .dropdown-menu li a:focus {
    background: none;
}

/* Tab, Mobile Menu End Here */
.sider-body-wrapper-freeze {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 70%);
    z-index: 1040;
    display: none;
}
/**** Menu ***/
.menu {
    background-color: #f85506;
    color: #fff;
    padding: 5px 0;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu li {
    margin-bottom: 0;
}

.menu .nav-item {
    margin-right: 15px;
}

.menu .nav-link {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu .nav-link:hover {
    color: #ffd700;
}
/**** Slider ***/
.carousel-wrapper {
    width: 100%;
    margin: auto;
    text-align: center;
}

.slider-item {
    text-align: center;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 500px;
    transition: transform 0.3s;
}

.owl-theme .owl-dots {
    text-align: center;
    margin-top: 10px;
}

/**** Products ***/
.product-grid {
    text-align: center;
    border-radius: 15px;
    border: 2px solid #eee;
    overflow: hidden;
    transition: all 0.4s ease-out;
}

.product-grid .product-image {
    position: relative;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
}

.product-grid .product-discount-label {
    color: var(--white);
    background: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 5px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-grid .product-content {
    padding: 5px;
    position: relative;
}

.product-grid .rating {
    padding: 0;
    margin: 0 0 8px;
    list-style: none;
}

.product-grid .rating li {
    color: #ffc107;
    font-size: 14px;
}

.product-grid .rating i {
    color: #ffc107;
}

.product-grid .title {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 5px;
}

.product-grid .title a {
    color: #2c2c2c;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease 0s;
}

.product-grid .title a:hover {
    color: var(--primary-color);
}

.product-grid .price {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    display: block;
    transition: all 0.4s ease-in-out;
}

.product-grid .price span {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
}

.cashback-label {
    font-size: 14px;
    color: #595959e5;
    font-weight: 550;
}

.cashback-label .percentage {
    color: #b13123;
}

@media screen and (max-width: 1200px) {
    .product-grid {
        margin: 0 0 30px;
    }
}

/**** Sidebar ***/
.widget-title {
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid #999;
    max-width: 100%;
}

.sidebar-categories .list-group-item {
    font-size: 1rem;
    border: none;
    padding: 5px 0;
    margin-bottom: 0;
}

.sidebar-categories .list-group-item a {
    text-decoration: none;
    color: #333;
    padding: 0;
}

.sidebar-categories .plus-icon {
    margin-left: 5px;
}

.sidebar-categories .subCategories {
    padding: 5px;
}
/*** Price Range ***/
.price-range {
    margin: 0 auto;
}

.custom-range {
    width: 100%;
    height: 1.4rem;
    background-color: var(--bs-border-color);
    outline: none;
    opacity: 0.7;
    -webkit-appearance: none;
    margin: 5px 0;
    border-radius: 5px;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.custom-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.price-labels {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Card Item Count */
.card-item-count {
    font-size: 2rem;
    border-color: var(--brand-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    width: 12rem;
    color: var(--text-color);
}

/* Pagination */
li.page-item {
    margin-right: 10px;
}

.page-link {
    padding: 0.2rem 0.8rem;
}

.page-link:hover {
    color: var(--light-color);
    border-color: var(--primary-color-2);
    background-color: var(--primary-color-2);
}

.active > .page-link,
.page-link.active {
    color: var(--light-color);
    border-color: var(--primary-color-2);
    background-color: var(--primary-color-2);
}

li.page-item a {
    color: var(--brand-color);
    border-color: var(--brand-color);
    border-radius: 0.5rem !important;
    font-size: 1.1rem !important;
}

/* Accordion Active */
.accordion-button:not(.collapsed) {
    color: var(--brand-color);
    background-color: var(--brand-color-light);
}

/* Focus Border */
.focus-shadow .form-control:focus {
    box-shadow: 0 0 0 2px var(--text-color-dark);
    border-color: var(--white);
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    opacity: 0.8;
}

.btn.border-black {
    border: 0;
    border-radius: 0;
    padding: 0.5rem 5rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn.border-black:hover {
    color: var(--light-color);
    background-color: var(--black);
}
/* Slide CSS */
.image-full {
    border: 1px solid #ccc;
    display: inline-block;
    line-height: 0;
}

.xzoom-gallery {
    width: auto;
    height: auto;
}

.gallery-wrapper .owl-theme .owl-nav.disabled + .gallery-wrapper .owl-dots {
    margin-top: 0;
}

/**** Quantity Increase-Decrease ***/
.quantity-input {
    display: flex;
    align-items: center;
}

.quantity-btn {
    font-size: 1rem;
    padding: 3px 10px;
    cursor: pointer;
    background-color: #333;
    color: #eee;
    border: none;
    outline: none;
    border-radius: 4px;
    margin: 0;
}

.quantity-btn:hover {
    color: #fff;
    background-color: #3a3939 !important;
}

.quantity-btn:active {
    color: #fff;
    background-color: #1f1e1e !important;
}

.quantity-btn:focus {
    color: #fff;
    box-shadow: 0 0 0 3px rgba(41, 40, 40, 0.5);
}

.quantity-field {
    width: 50px;
    text-align: center;
    font-size: 1rem;
    margin: 0 5px;
    padding: 2px;
    border: 1px solid #333;
    border-radius: 4px;
}

.add-to-cart-btn {
    font-size: 1rem;
    padding: 5px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    outline: none;
    border-radius: 4px;
    margin: 0 0 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.add-to-cart-btn:hover {
    color: #fff;
    background-color: var(--black);
}

.add-to-cart-btn:active {
    color: #fff;
    background-color: var(--black);
}

.add-to-cart-btn:focus {
    color: #fff;
    box-shadow: 0 0 0 3px rgba(41, 40, 40, 0.5);
}

.quantity-input-small .quantity-btn {
    padding: 3px 10px;
}

.quantity-input-small .quantity-field {
    width: 50px;
    margin: 0 5px;
}

/**** Product Details Tab ***/
.product-details-tabs .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

/*** Login Page ***/
.auth .card {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth .card-body {
    padding: 20px;
}

.card-margin {
    margin: 8rem 0;
}

.mobile-input .input-group-text {
    border-radius: 15px;
}

/**** profile-sidebar **/
.profile-sidebar .list-group-item {
    background-color: transparent;
    border: solid 2px #eee;
    border-radius: 15px;
}

.profile-sidebar .list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.profile-sidebar .list-group-item.active a {
    color: #fff;
}

/******* Custom *******/
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
}

.rating-input > input {
    display: none;
}

.rating-input > label {
    position: relative;
    width: 30px;
    font-size: 30px;
    color: #ffd600;
    cursor: pointer;
}

.rating-input > label::before {
    content: "\2605";
    position: absolute;
    opacity: 0;
}

.rating-input > label:hover:before,
.rating-input > label:hover ~ label:before {
    opacity: 1 !important;
}

.rating-input > input:checked ~ label:before {
    opacity: 1;
}

.rating-input:hover > input:checked ~ label:before {
    opacity: 0.4;
}

.color-brand {
    color: var(--primary-color-2);
}

.checkout-logo {
    max-width: 100px;
}

.wm-50 {
    max-width: 50%;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.tab-content img {
    width: 100% !important;
    height: auto !important;
}

/***** My Account ****/
.account-cards .card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.account-cards .card-icon {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.account-cards .card-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.account-cards .card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.job-position-item {
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-position-item i {
    font-size: 35px;
    margin-right: 20px;
    color: var(--primary-color);
}

.job-position-item-content h3 {
    margin-bottom: 5px;
    color: #343a40;
}

.job-position-item-content p {
    margin: 0;
    color: #6c757d;
}

.add-balance-link {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.add-balance-link:hover {
    color: #000;
}

.refer-friends p {
    font-size: 18px;
    color: #555;
}

.refer-friends strong {
    color: #000;
}

.refer-friends #referId {
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 10px;
}

.refer-friends #copyButton {
    background-color: #17a2b8;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.refer-friends #copyButton:hover {
    background-color: #138496;
}

.refer-friends #copyButton i {
    margin-right: 5px;
}

.join-affiliate p {
    font-size: 18px;
    color: #555;
}

.join-affiliate a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.join-affiliate a:hover {
    color: #000;
}

/**** OTP ****/
.otp-info {
    font-size: 1rem;
}

#resendMessage {
    margin-top: 10px;
    font-weight: bold;
}

#resendLink {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

#resendLink:hover {
    color: #000;
}

.resend-timer {
    font-size: 0.9rem;
    color: #dc3545;
    font-weight: bold;
}

#resendLinkContainer,
#resendTimer {
    margin-left: 0.2rem;
}

/**** Contact ***/
.contact-us i {
    color: var(--primary-color);
    margin-right: 5px;
}

.contact-us strong {
    color: var(--black);
}

.contact-us a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-us a:hover {
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/**** Page Content ***/
.page-content {
    padding: 20px 0;
    color: #333;
    line-height: 1.2;
}

.page-content h2 {
    color: #000;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.page-content p {
    margin-bottom: 15px;
}

/**** Footer ***/
.footer-main {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
}

.footer-main h4 {
    color: #fff;
}

.widget {
    margin-bottom: 30px;
}

.footer-main .social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 10px;
}

.widget a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.widget a:hover {
    color: var(--primary-color-2);
}

.copyright-section {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.copyright-section p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.footer-main {
    background-color: #f8f9fa;
    padding: 40px 30px;
}

.footer-main h2 {
    color: #000;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-main .contact-info h4 {
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-main .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main .contact-info li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.footer-main .contact-info li a:hover {
    color: var(--primary-color);
}

/* Payment Options Styling */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 10px;
}

.widget p {
    margin: 0;
    color: #403c3c;
}

.widget strong {
    font-size: 18px;
    color: #000;
}

.widget img {
    width: 30px;
    margin-right: 10px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li a {
    color: #000 !important;
    text-decoration: none;
    font-size: 16px;
}

.widget ul li a:hover {
    color: var(--primary-color) !important;
}

.social-media a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.social-media a i {
    color: #fff;
}

.social-media a:hover i {
    color: var(--primary-color);
}

.footer-end {
    background-color: #343a40;
    color: #fff;
    padding: 15px 0;
}

.footer-end p {
    margin: 0;
    font-size: 14px;
}

.footer-main .contact-info a {
    color: var(--primary-color);
}

.footer-main .contact-info a:hover {
    color: var(--black);
}
/* Copyright Styling */
.footer-end p.mb-0 {
    font-size: 14px;
}

.social-media a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.social-media a:hover {
    color: var(--primary-color) !important;
}

/**** WhatsApp Floating *****/
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    left: 320px;
    z-index: 100;
}

.whatsapp-link {
    display: block;
    background-color: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-link i {
    font-size: 35px;
    line-height: 1.5;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

.whatsapp-link:hover i {
    color: #fff;
}

/***** Alert ****/
.custom-alert {
    background: #eeeeee24;
    border-color: #B13123;
    border-left: 4px solid #B13123;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.custom-alert .alert-heading {
    color: #2c3e50;
    font-weight: 550;
    margin-bottom: 5px;
}

.custom-alert p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.2;
}

.custom-alert hr {
    border-top: 1px solid #333; 
    margin: 5px 0;
}

.custom-alert .btn-close {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 0.8rem;
    padding: 5px;
}

.custom-alert .alert-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #000;
}

@media (max-width: 1199.98px) {
    .navbar .logo img {
        height: 2.3rem;
    }
}

@media (max-width: 400px) {
    .sidebar {
        width: 85%;
        left: -85%;
    }
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    /* CSS */
}

/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */

@media (min-width: 1025px) and (max-width: 1280px) {
    /* CSS */
}

/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) {
    .fs-14 {
        font-size: 1.1rem;
    }

    ol,
    li {
        margin-bottom: 5px;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 1rem;
    }

    .fs-10 {
        font-size: 0.9rem;
    }

    .fs-11 {
        font-size: 1rem;
    }

    .fs-12 {
        font-size: 1.1rem;
    }

    .fs-13 {
        font-size: 1.2rem;
    }

    .fs-14 {
        font-size: 1.3rem;
    }

    .fs-15 {
        font-size: 1.4rem;
    }

    .fs-16 {
        font-size: 1.5rem;
    }

    .fs-18 {
        font-size: 1.6rem;
    }

    .fs-30 {
        font-size: 2rem;
    }

    .fs-35 {
        font-size: 2.5rem;
    }

    .fs-40 {
        font-size: 3rem;
    }

    .fs-45 {
        font-size: 3.5rem;
    }

    .fs-50 {
        font-size: 4rem;
    }

    .sec-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .sec-desc {
        font-size: 1rem;
        line-height: 1.5;
    }

    .wm-50 {
        max-width: 100%;
    }

    .footer .footer-top {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .tab-content img {
        width: 100% !important;
        height: auto !important;
    }

    .slider-item img {
        height: auto;
    }

    .title h2 {
        padding-bottom: 10px !important;
        border-bottom: solid 2px #999;
    }

    .title h2:after {
        display: none;
    }

    .title h2:before {
        display: none;
    }

    .img-category h3 {
        margin-top: 5px;
        font-size: 1rem;
    }

    .img-category {
        margin: 5px;
    }

    .product-grid {
        margin: 0 0 15px;
    }

    .copyright-section p {
        font-size: 0.8rem;
    }

    .affiliate-input .w-50 {
        width: 100% !important;
    }

    .whatsapp-floating {
        position: fixed;
        bottom: 20px;
        left: 20px;
    }
}

/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .fs-14 {
        font-size: 1.1rem;
    }

    ol,
    li {
        margin-bottom: 5px;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 1rem;
    }

    .fs-10 {
        font-size: 0.9rem;
    }

    .fs-11 {
        font-size: 1rem;
    }

    .fs-12 {
        font-size: 1.1rem;
    }

    .fs-13 {
        font-size: 1.2rem;
    }

    .fs-14 {
        font-size: 1.3rem;
    }

    .fs-15 {
        font-size: 1.4rem;
    }

    .fs-16 {
        font-size: 1.5rem;
    }

    .fs-18 {
        font-size: 1.6rem;
    }

    .fs-30 {
        font-size: 2rem;
    }

    .fs-35 {
        font-size: 2.5rem;
    }

    .fs-40 {
        font-size: 3rem;
    }

    .fs-45 {
        font-size: 3.5rem;
    }

    .fs-50 {
        font-size: 4rem;
    }

    .sec-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .sec-desc {
        font-size: 1rem;
        line-height: 1.5;
    }

    .product-card .product-details h2 {
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
    }

    .wm-50 {
        max-width: 100%;
    }

    .footer .footer-top {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .tab-content img {
        width: 100% !important;
        height: auto !important;
    }

    .slider-item img {
        height: auto;
    }

    .title h2 {
        padding-bottom: 10px !important;
        border-bottom: solid 2px #999;
    }

    .title h2:after {
        display: none;
    }

    .title h2:before {
        display: none;
    }

    .img-category h3 {
        margin-top: 5px;
        font-size: 1rem;
    }

    .img-category {
        margin: 5px;
    }

    .product-grid {
        margin: 0 0 15px;
    }

    .copyright-section p {
        font-size: 0.8rem;
    }

    .affiliate-input .w-50 {
        width: 100% !important;
    }

    .whatsapp-floating {
        position: fixed;
        bottom: 20px;
        left: 20px;
    }
}

/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */

@media (min-width: 481px) and (max-width: 767px) {
    .fs-14 {
        font-size: 1.1rem;
    }

    ol,
    li {
        margin-bottom: 5px;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 1rem;
    }

    .fs-10 {
        font-size: 0.9rem;
    }

    .fs-11 {
        font-size: 1rem;
        line-height: 1.1;
    }

    .fs-12 {
        font-size: 1.1rem;
    }

    .fs-13 {
        font-size: 1.2rem;
    }

    .fs-14 {
        font-size: 1.3rem;
    }

    .fs-15 {
        font-size: 1.4rem;
    }

    .fs-16 {
        font-size: 1.5rem;
    }

    .fs-18 {
        font-size: 1.6rem;
    }

    .fs-30 {
        font-size: 2rem;
    }

    .fs-35 {
        font-size: 2.5rem;
    }

    .fs-40 {
        font-size: 3rem;
    }

    .fs-45 {
        font-size: 3.5rem;
    }

    .fs-50 {
        font-size: 4rem;
    }

    .sec-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .sec-desc {
        font-size: 1rem;
        line-height: 1.5;
    }

    .product-card .product-details h2 {
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
    }

    .wm-50 {
        max-width: 100%;
    }

    .footer .footer-top {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .tab-content img {
        width: 100% !important;
        height: auto !important;
    }

    .slider-item img {
        height: auto;
    }

    .title h2 {
        padding-bottom: 10px !important;
        border-bottom: solid 2px #999;
    }

    .title h2:after {
        display: none;
    }

    .title h2:before {
        display: none;
    }

    .img-category h3 {
        margin-top: 5px;
        font-size: 0.9rem;
    }

    .img-category {
        margin: 5px;
    }

    .product-grid {
        margin: 0 0 10px;
    }

    .copyright-section p {
        font-size: 0.8rem;
    }

    .affiliate-input .w-50 {
        width: 100% !important;
    }

    .container-lg {
        padding-right: calc(var(--bs-gutter-x) * 0.15);
        padding-left: calc(var(--bs-gutter-x) * 0.15);
    }

    .row > * {
        padding-right: calc(var(--bs-gutter-x) * 0.15);
        padding-left: calc(var(--bs-gutter-x) * 0.15);
    }

    .product-grid .btn {
        --bs-btn-padding-x: 0.25rem;
        --bs-btn-padding-y: 0.15rem;
    }

    .whatsapp-floating {
        position: fixed;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-link {
        width: 45px;
        height: 45px;
    }

    .whatsapp-link i {
        font-size: 30px;
        line-height: 1.4;
    }
}

/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */

@media (min-width: 320px) and (max-width: 480px) {
    .product-card .product-details h2 {
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
    }

    .fs-14 {
        font-size: 1.1rem;
    }

    ol,
    li {
        margin-bottom: 5px;
    }

    .size-radios-main label,
    .size-radios label {
        padding: 5px 8px;
        margin: 0 0.3rem 0.3rem 0;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 1rem;
    }

    .fs-10 {
        font-size: 0.9rem;
    }

    .fs-11 {
        font-size: 1rem;
        line-height: 1.1;
    }

    .fs-12 {
        font-size: 1.1rem;
    }

    .fs-13 {
        font-size: 1.2rem;
    }

    .fs-14 {
        font-size: 1.3rem;
    }

    .fs-15 {
        font-size: 1.4rem;
    }

    .fs-16 {
        font-size: 1.5rem;
    }

    .fs-18 {
        font-size: 1.6rem;
    }

    .fs-30 {
        font-size: 2rem;
    }

    .fs-35 {
        font-size: 2.5rem;
    }

    .fs-40 {
        font-size: 3rem;
    }

    .fs-45 {
        font-size: 3.5rem;
    }

    .fs-50 {
        font-size: 4rem;
    }

    .sec-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .sec-desc {
        font-size: 1rem;
        line-height: 1.5;
    }

    .product-card .product-details h2 {
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
    }

    .wm-50 {
        max-width: 100%;
    }

    .footer .footer-top {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .tab-content img {
        width: 100% !important;
        height: auto !important;
    }

    .slider-item img {
        height: auto;
    }

    .title h2 {
        padding-bottom: 10px !important;
        border-bottom: solid 2px #999;
    }

    .title h2:after {
        display: none;
    }

    .title h2:before {
        display: none;
    }

    .img-category h3 {
        margin-top: 5px;
        font-size: 0.9rem;
    }

    .img-category {
        margin: 5px;
    }

    .product-grid {
        margin: 0 0 10px;
    }

    .copyright-section p {
        font-size: 0.8rem;
    }

    .affiliate-input .w-50 {
        width: 100% !important;
    }

    .container-lg {
        padding-right: calc(var(--bs-gutter-x) * 0.15);
        padding-left: calc(var(--bs-gutter-x) * 0.15);
    }

    .row > * {
        padding-right: calc(var(--bs-gutter-x) * 0.15);
        padding-left: calc(var(--bs-gutter-x) * 0.15);
    }

    .product-grid .btn {
        --bs-btn-padding-x: 0.25rem;
        --bs-btn-padding-y: 0.15rem;
    }

    .product-cart-table .product-title {
        line-height: 1;
    }

    .whatsapp-floating {
        position: fixed;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-link {
        width: 45px;
        height: 45px;
    }

    .whatsapp-link i {
        font-size: 30px;
        line-height: 1.4;
    }
}
