/*
Template Name: Eatpure - Online Grocery Supermarket HTML Template
Author: iamosahan
Author URI: https://wrapbootstrap.com/user/iamosahan
Version: 1.0
*/

/*
-- Body
-- Colors
-- Buttons
-- Typography
-- Navbar
-- Homepage
-- Banners
-- Product Detail
-- Listing
-- My Account
-- Checkout
-- Footer
-- Mobile Media
*/

/* Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons%401.10.4/font/bootstrap-icons.css");

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&amp;display=swap');

:root {
    --primary: #0096c7;
    --danger: #2570AA;
    --danger-hover:#B21D3D;
    --warning: #B21D3D;
    --info: #95d9df;
    --muted: #e9ecef;
    --light-dark: #444444;
    --bs-warning-bg-subtle:#b7dfff;
}

/* Body */
body {
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
}
a {
    text-decoration: none;
    color: var(--danger);
}



.shop-item img {
    width: 100%;            /* Make the image take up the full width of the container */
    height: 120px;   /* Set a fixed height for the images */
    object-fit: cover;      /* Stretch small images and squeeze large images to cover the space */
    object-position: center;/* Center the image if it's too large to fit */
}
    

.card-body1 {
    flex: 1 1 auto;
    padding: 0.25rem 0.5rem; /* Reduced padding */
    color: var(--bs-card-color);
    text-align: center;
}
.animated-banner {
    position: relative;
    display: inline-block; /* Shrinks the div to fit the image */
    overflow: hidden; /* Keeps shine effect within the image bounds */
    border-radius: 4px; /* Rounds the corners to match the image */
}

.animated-banner img {
    display: block;
    width: 100%; /* Ensures the image fills the width of the container */
    height: auto; /* Adjusts the image height proportionally */
    border-radius: 4px;
}

/* Shine Effect */
.animated-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Starts the shine effect off-screen */
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-30deg);
    transition: left 0.6s ease; /* Smooth transition */
    border-radius: 4px; /* Matches the rounded corners of the div */
}

/* Move the shine effect across the image on hover */
.animated-banner:hover::before {
    left: 100%; /* Moves shine effect across the image */
    transition: left 0.6s ease; /* Controls the speed of the shine */
}



.pay-4{
    padding: 2.2rem !important;
}


.pay-1{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.gradient-bg {
    background: linear-gradient(135deg, #0076CE, #00A5E0);
    color: white; /* Ensure text color contrasts with background */
}

.card {
    height: 100%; /* Ensure all cards take full height */
}

.explore-card {
    height: 100%; /* Make sure the Explore card has the same height as others */
    display: flex; /* Use flexbox to align items */
    flex-direction: column; /* Align items vertically */
    justify-content: center; /* Center content vertically */
}



.card-body1 {
    flex-grow: 1; /* Allow the body to grow and take up space */
    text-align: center; /* Center text horizontally */
}

.card-body1 a {
    width: 100%; /* Make button full width */
    text-align: center; /* Center button text */
}



.text-muted1.small {
    white-space: nowrap; /* Prevents text from wrapping to a new line */
    overflow: hidden;    /* Hides any overflowed content */
    text-overflow: ellipsis; /* Adds ellipsis for overflowed text */
}

.product-item1 {
    height: 110px; /* Set a minimum height for all product items */
}

/* Base styling for product cards */
.product-item1 .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Deeper shadow for a stronger 3D effect */
    border-radius: 15px;
    overflow: hidden;
    position: relative; /* Enables use of pseudo-elements */
}

/* Hover effect for the 3D "lift" */
.product-item1 .card:hover {
    transform: translateY(-12px) scale(1.05); /* Slight lift and zoom on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

/* Styling for images */
.product-item1 .card img {
    width: calc(100% - 20px); /* Padding of 10px on each side */
    height: 60px; /* Set a fixed height */
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px; /* Add rounded corners to the image */
    margin: 10px; /* Padding effect for the image */
}

/* Slight zoom-in effect on the image on hover */
.product-item1 .card:hover img {
    transform: scale(1.08); /* Zooms in the image a bit more */
}

/* Shadow and color adjustments for card footer */
.product-item1 .card-footer {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

/* Adding a glow effect using pseudo-element */
.product-item1 .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Glowing effect on hover */
.product-item1 .card:hover::before {
    opacity: 1;
}


/*item 2*/


.product-item2 {
    height: 110px; /* Set a minimum height for all product items */
}

/* Base styling for product cards */
.product-item2 .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Deeper shadow for a stronger 3D effect */
    border-radius: 15px;
    overflow: hidden;
    position: relative; /* Enables use of pseudo-elements */
}

/* Hover effect for the 3D "lift" */
.product-item2 .card:hover {
    transform: translateY(-12px) scale(1.05); /* Slight lift and zoom on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

/* Styling for images */
.product-item2 .card img {
    width: calc(100% - 20px); /* Padding of 10px on each side */
    height: 90px; /* Set a fixed height */
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px; /* Add rounded corners to the image */
    margin: 10px; /* Padding effect for the image */
}

/* Slight zoom-in effect on the image on hover */
.product-item2 .card:hover img {
    transform: scale(1.08); /* Zooms in the image a bit more */
}

/* Shadow and color adjustments for card footer */
.product-item2 .card-footer {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

/* Adding a glow effect using pseudo-element */
.product-item2 .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Glowing effect on hover */
.product-item2 .card:hover::before {
    opacity: 1;
}


.navbar-nav .nav-link1 {
    color: #fff !important; /* White font color */
}


.blinking {
    animation: blinker 1.5s linear infinite;
    color: #fff; /* Adjust color as desired */
    background: red;
    font-size: 1em; /* Smaller font for superscript */
    vertical-align: super;
}

@keyframes blinker {
    50% { opacity: 0; }
}


.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    color: #2570AA;               /* Customize primary color */
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5%;           /* Circular buttons */
    border: none;                 /* Remove borders */
    background-color: #fff;    /* Light background */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.pagination .page-link:hover {
    background-color: #2570AA;    /* Highlight on hover */
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: #B21D3D;    /* Active page color */
    color: #fff;
    border: none;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;                  /* Disabled color */
    background-color: #e9ecef;
}

.pagination .page-link[aria-label="« Previous"],
.pagination .page-link[aria-label="Next »"] {
    padding: 10px 15px;
    font-size: 18px;
}


.custom-padding{
    padding-bottom: 10px;
    padding-top: 20px;
}

.bg-warning-subtle-payaaramse {
    background-color: var(--bs-warning-bg-subtle)!important
}

.form-control, .form-select, .form-check-input {
    box-shadow: none !important;
}
.offcanvas-footer{
    padding: 1rem;
}
.form-check-input:checked{
    background-color: var(--danger) !important;
    border-color: var(--danger) !important;
}
.accordion .accordion-button{
    box-shadow: none;
    background-color: #fff;
    color: #000;
}
.dropdown .dropdown-menu .dropdown-item:active{
    background-color: var(--danger);
}
.osahan-dropdown {
    font-size: 14px;
    min-width: 256px;
}
.osahan-dropdown .dropdown-item {
    padding: 6px 1rem;
    font-size: 14px;
}
.shop-category,.popular-products,.coupons,.cold-drinks,.top-picks,.big-img,.small-img,.hero-slider {
    display: none;
}
.intro-logo {
    height: 80px;
}

/* Colors */
.text-danger{
    color: var(--danger) !important;
}

.text-warning{
    color: var(--warning) !important;
}


.bg-danger{
    background-color: var(--danger) !important;
}

.bg-warning{
    background-color: var(--warning) !important;
}


.bg-payaaramse{
    background-color: #B21D3D; !important;
    color:#fff;
}
.border-end, .border, .border-start, .border-top, .border-bottom, .card, .card-header {
    border-color: #eaecef !important;
}

/* Buttons */
.osahan-arrow {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #d2d2d2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 50px;
    top: 0;
    bottom: 0;
    font-size: 20px;
    border: 1px solid #dbdbdb;
    margin: auto;
    cursor: pointer;
    transition: all 0.2s;
}
.osahan-arrow:hover {
    border-color: var(--warning) !important;
    background-color: var(--warning) !important;
    color: #fff !important;
}
.osahan-right {
    right: -11px;
}
.osahan-left {
    z-index: 9;
    left: -10px;
}
.shop-category .osahan-arrow {
    bottom: auto;
    top: 41px;
}
.top-picks .osahan-arrow {
    bottom: auto;
    top: 59px;
}
.big-img .osahan-left {
    left: 20px;
}
.big-img .osahan-right {
    right: 20px;
}
.small-img .slick-current.slick-active .border {
    border:2px solid #d72900 !important;
}
.small-img .border{
    cursor: pointer;
    transition: all 0.2s;
}
.small-img .border:hover{
    border:2px solid #d72900 !important;
}
.osahan-new-btn {
/*    padding: 6px 0;*/
    border-radius: 11px !important;
}
.btn-outline-danger{
    border-color: var(--danger) !important;
    color: var(--danger) !important;
}
.btn-outline-danger:hover{
     border-color: var(--warning) !important;
    background-color: var(--warning) !important;
    color: #fff !important;
}
.btn-danger{
    background-color: var(--danger) !important;
    border-color: var(--danger) !important;
}
.btn-danger-hover:hover{
    background-color: var(--danger) !important;
    border-color: var(--danger) !important;
}

.btn-danger-hover{
    background-color: var(--danger-hover) !important;
    border-color: var(--danger-hover) !important;
    color:#fff !important;
}
.value{
    width: 100px;
    border: none !important;
}
.value .btn {
    font-size: 23px;
    padding: 0px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0px;
    border: 1px solid #ffd9ce !important;
    min-width: 32px;
    background: #ffe8e1;
    border-radius: 50px !important;
    color: #B21D3D;
    font-weight: 100;
    transition: all 0.2s;
}
.value .btn:hover, .value .btn:focus {
    background: #B21D3D !important;
    color: #fff;
    border-color: #B21D3D !important;
}

/* Typography */
.small-sm{
    font-size: 10px;
}
.fw-bold {
    font-weight: 500!important;
}
.h6, h6 {
    font-size: 12px;
}

/* Navbar */
.navbar .navbar-brand {
    padding-bottom: .2rem;
    padding-top: 0
}
.navbar .navbar-toggler {
    padding: 4px 5px 0px 6px;
}
.navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: 0
}
.navbar .navbar-collapse .navbar-toggler {
    position: absolute;
    right: .5rem;
    top: .6rem;
    z-index: 1
}
@media (max-width: 992px) {
    .navbar .navbar-nav .nav-item .nav-link {
        color: #595c5f;
        padding: 11px 0 !important;
    }
    .navbar .navbar-nav .nav-item .nav-link:after {
        float: right;
        margin-top: 7px;
    }
    .navbar .offcanvas {
        overflow: auto;
    }
}
.navbar .dropdown-fullwidth {
    position: static
}
.navbar .dropdown-fullwidth .dropdown-menu {
    left: 0;
    margin: auto;
    max-width: 1290px;
    padding: 1rem 0;
    right: 0;
}
.navbar .dropdown .dropdown-toggle:after {
    background-repeat: no-repeat;
    border: none;
    content: "\eb11";
    font: normal normal normal 0.9em/1 'lineicons';
    margin-left: 0.375rem;
    vertical-align: middle;
}
.navbar .dropdown-menu {
    border-radius: .5rem;
    box-shadow: 0 0 2px rgba(145,158,171,.2),0 12px 24px -4px rgba(145,158,171,.12);
    color: var(--fc-gray-600);
    line-height: 1.2rem;
    min-width: 12rem;
}
.navbar .dropdown-menu .dropdown-list-group-item {
    min-width: 100%
}
.navbar .dropdown-menu .dropdown-submenu a:after {
    position: absolute;
    right: 1rem;
    transform: rotate(-90deg)
}
.navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
    left: 100%;
    min-width: 12rem;
    right: 0;
    top: -18px
}
.navbar .dropdown-menu .dropdown-submenuBig a:after {
    position: absolute;
    right: 1rem;
    transform: rotate(-90deg)
}
.navbar .dropdown-menu .dropdown-submenuBig.dropend .dropdown-menu {
    left: 105%;
    min-width: 12rem;
    right: 0;
    top: -35px
}
.navbar .navbar-right-wrap .list-group-item {
    padding: 1rem 1.25rem
}
.navbar .nav-badge {
    position: absolute;
    right: 3px;
    top: -9px
}
@media (min-width: 1200px) {
    .navbar-default .dropdown-menu {
        display:block;
        opacity: 0;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden
    }
    .navbar-default .dropdown-menu-end {
        left: auto;
        right: 0
    }
    .navbar-default .dropdown-menu-start {
        left: 0;
        right: auto
    }
    .navbar-default .dropdown-submenu:hover>.dropdown-menu,.navbar-default .dropdown-submenuBig:hover>.dropdown-menu,.navbar-default .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }
}
.navbar-nav-offcanvac .nav-item .nav-link {
    border-bottom: 1px solid #eaecef;
}
.navbar-dark .navbar-nav .nav-link {
    border-bottom: transparent
}
.navbar-toggler-icon {
    height: 1.2em
}
.dropdown-menu {
    box-shadow: 0 0 2px rgba(145,158,171,.2), 0 12px 24px -4px rgba(145,158,171,.12);
    padding: 10px;
    border-color: #eaecef;
}
.dropdown-item {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    color: #656565;
}
.osahan-header a.p-3 {
    height: 68px;
}
.logo-img{
    height: 36px;
}
.osahan-location small.small {
    width: 198px;
}
.category .card{
    transition: all 0.2s;
}
.category .card:hover{
    border-color: var(--danger) !important;
    box-shadow: 0 0 10px 1px #efefef;
    color: var(--danger);
}
.osahan-listing-page-nav{
    position: sticky;
    top: 0;
    z-index: 9;
}
.osahan-listing-page-nav  a.dropdown-item {
    font-size: 14px;
    padding: 6px 19px;
}
.osahan-location p {
    font-size: 12px;
    width: 140px;
}
.osahan-location p.small {
    font-size: 9px;
}
.top-search-bar .form-control {
    font-size: 14px;
}
.top-search-bar .btn {
    font-size: 14px;
}
.osahan-top-search {
    height: 44px;
}
.osahan-second-nav .nav-link {
    font-size: 15px;
    padding: 15px 12px !important;
}
.navbar.navbar-dark.navbar-default.bg-danger.osahan-second-nav .nav-link {
    color: #fff;
}
.my-account-dropdown {
    margin-top: 10px !important;
    right: auto !important;
    left: 26px !important;
    width: 250px;
}

/* Homepage */
.homepage-nav-one-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}
.homepage-nav-one-header .navbar {
    background: transparent !important;
    box-shadow: none !important;
}
.hero-slider-1 {
    /*padding-top: 20px !important;*/
    background-color: #d7eff2;
}
.hero-slider-2 {
   /*padding-top: 20px !important;*/
    background-color: #ffeaa2;
}
.hero-slider-main .slick-dots {
    bottom: 10px;
}
.top-picks-item h6.card-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 16px;
}
.bg-pink-light {
    background: #f5e5ec;
}

/* Banners */
.store-sidebar{
    margin-top: -114px;
}
.ch-50{
    height: 40px;
}
.btn-icon {
    font-size: 14px;
    padding: 0px;
    width: 40px;
    height: 40px;
    min-height: 40px !important;
    display: flex;
    color: #0d6efd;
    align-items: center;
    justify-content: center;
}
.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    font-size: 1.5rem;
}
.icon-xl {
    height: 3.5rem;
    line-height: 3.5rem;
    width: 3.5rem;
}
.svg-border-rounded svg {
    height: 3rem;
    width: 100%;
}
.banner-icon {
    width: 48px;
}
.adver-banner-1 {
    background-image: url(../img/adver-banner-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.adver-banner-2 {
    background-image: url(../img/adver-banner-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.adver-banner-3 {
    background-image: url(../img/adver-banner-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.grocery-banner-1 {
    background-image: url(../img/grocery-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* Styling for the main banner container */
.grocery-banner-2 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Styling for the image to cover the entire container */
.grocery-banner-2 .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-box{
    height: 150px;
    width: auto;
    border: 1px solid #e5e5e5;
}
.osahan-badge{
    font-size: 10px;
    letter-spacing: 0.8px;
    line-height: 13px;
    padding: 5px 4px 4px 4px;
    border-radius: 0 0 6px 6px;
}
.osahan-badge b {
    font-size: 12px;
}

/* Product Detail */
.why-shop-img{
    width: 60px;
}
.sticky-sidebar {
    position: sticky;
    top: 0px;
}
.sticky-sidebar2 {
    position: sticky;
    top: 0px;
}
.qr-code{
    width: 85px;
}
.small-img .osahan-arrow{
    z-index: 9;
}
.small-img:after {
    content: "";
    position: absolute;
    right: 0;
    width: 40px;
    background: #000;
    top: 0;
    bottom: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.99) 99%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.99) 99%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.99) 99%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
.small-img:before {
    content: "";
    position: absolute;
    left: 0;
    width: 40px;
    background: #000;
    top: 0;
    bottom: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,0.01) 99%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.01) 99%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.01) 99%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
    z-index: 1;
}

/* Listing */
.osahan-listing-page-nav-sidebar .nav-pills .nav-link{
    background-color: transparent;
    color:#fff; /*var(--light-dark);*/
    border-radius: 0;
    padding: 0px 1rem;
    border-left: 0px solid transparent;
}
.osahan-listing-page-nav-sidebar .nav-pills .nav-link img{
    width: 37px;
    background-color: var(--muted);
}
.osahan-listing-page-nav-sidebar .nav-pills .nav-link.active img{
    background-color: #ffdeda !important;
}
.osahan-listing-page-nav-sidebar .nav-pills .nav-link.active{
    border-left: 1px solid var(--danger) !important;
    color: #000;
    font-weight: 600;
}
.osahan-card-list .card-img-top {
    padding: 15px;
    transition: all 0.2s;
}
.osahan-card-list:hover .card-img-top {
    padding: 5px;
}
.shop-list-page .osahan-card-list .card-img-top {
    height: 110px;
}

/* My Account */
.my-account-pills .nav-link{
    border: none;
    background-color: transparent;
    text-align: start;
    color: var(--light-dark);
    font-size: 14px;
    padding: 14px 14px;
    display: flex;
    position: relative;
    align-items: center;
}
.my-account-pills .nav-link.active:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f8f9fa;
    right: -1px;
}
.my-account-pills .nav-link.active{
    background-color: #f8f9fa;
}
.my-account-pills .nav-link i {
    background: #ffede8;
    color: #fc3400;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 50px;
}
.my-account-pills .nav-link:hover i, .my-account-pills .nav-link.active i {
    background: #fc3400;
    color: #ffffff;
}
.order-img{
    width: 60px;
}
.my-account-main-page-sidebar .nav-link{
    border: none;
    background-color: #fff;
    text-align: start;
    color: var(--light-dark);
    font-size: 14px;
    padding: 18px 20px;
    display: flex;
    position: relative;
    align-items: center;
    border-bottom: 1px solid #eceded;
    border-radius: 0px;
}
.my-account-main-page-sidebar .nav-link.active{
    color: #fc3400;
    background: none !important;
}
.my-account-main-page-sidebar .nav-link i {
    background: #ffede8;
    color: #fc3400;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 50px;
}
.my-account-main-page-sidebar .nav-link:hover i, .my-account-main-page-sidebar .nav-link.active i {
    background: #fc3400;
    color: #ffffff;
}
.h-700{
    height: 700px;
}

/* Checkout */
.checkout-img{
    height: 27px;
    border: 1px solid #dadada;
    padding: 6px 6px;
    border-radius: 6px;
    background: #fff;
}
.osahan-checkout-item .img-fluid {
    height: 57px;
}
.osahan-netbanking .d-flex.justify-content-between.mb-2 {
    height: 42px;
    border: 1px solid #eaeaea;
    padding: 5px 5px;
    border-radius: 50px;
    width: 42px;
}
.upi-img{
    height: 20px;
    border: 1px solid #dadada;
    padding: 4px 4px;
    border-radius: 4px;
    background: #fff;
}
.osahan-radio-box-action  a {
    position: absolute;
    right: 16px;
    background: #fff;
    font-size: 11px;
    bottom: 12px;
}
.osahan-radio-box {
    position: relative;
}
.osahan-radio-box .form-check-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    bottom: 0;
    cursor: pointer;
}
.osahan-radio-box .form-check-input {
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    position: absolute;
    margin: 0px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: no-repeat;
}
.osahan-radio-box .form-check-input:checked[type=radio] {
    background: none !important;
    border: 2px solid #000;
}
.osahan-radio-box .form-check-input:after {
    content: "";
    width: 19px;
    height: 19px;
    border-radius: 50px;
    background: #f8f9fa;
    position: absolute;
    right: 15px;
    top: 15px;
    border: 1px solid #dee2e6;
}
.osahan-radio-box .form-check-input:checked[type=radio]:before {
    content: "";
    width: 19px;
    height: 19px;
    border-radius: 50px;
    background: #ffffff;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
    border: 5px solid #fe3000;
}

/* Footer */
footer a {
    color: var(--light-dark);
}
footer a:hover {
    color: var(--danger);
}
.mobile-app-link {
    width: 102px;
}
.social-links a {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--light-dark);
    transition: all 0.2s;
    color: #000;
}
.social-links a:hover {
    background-color: var(--danger);
    color: #fff;
    border: none;
}
.footer-payment {
    height: 23px;
    border: 1px solid #dadada;
    padding: 4px 5px;
    border-radius: 4px;
    background: #fff;
}

/* Mobile Media */
@media (max-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
    .osahan-left {
        z-index: 9;
        left: -1px;
    }
    .osahan-right {
        right: -2px;
    }
    .osahan-arrow {
        width: 22px;
        height: 23px;
        font-size: 11px;
    }
    .osahan-listing-page-nav .navbar-toggler {
        padding: 0 0;
        position: absolute;
        top: -37px;
        right: 41px;
    }
    .osahan-listing-page-nav .container {
        padding: 0px;
    }
    .osahan-listing .osahan-listing-page-nav-sidebar {
        padding: 0px !important;
    }
    .osahan-listing .container {
        padding: 0px;
    }
    .product-details {
        display: none;
    }
    .product-detail-page .sticky-sidebar2.border-start.overflow-auto.vh-100.p-5 {
        padding: 0 0 50px 0px !important;
        border: none !important;
        height: auto !important;
    }
    .product-detail-page .col-lg-6.col-12.py-5 {
        padding-bottom: 10px !important;
    }
    .store-sidebar {
        margin-top: 0px;
    }
    .my-account-dropdown li.d-flex.align-items-center.gap-2.bg-light.p-3.mt-2 img {
        width: 32px;
        margin-bottom: auto;
        margin-top: 2px;
    }
    .my-account-dropdown {
        margin-top: 10px !important;
        right: 0 !important;
        left: 0 !important;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
    .osahan-location small.small, .osahan-location h6 {
        width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .osahan-location {
        padding-right: 0px !important;
    }
    .osahan-header ul.list-inline li.list-inline-item:first-child a.p-3 {
        padding-left: 0px !important;
    }
    footer.bg-light.py-5 {
        display: none;
    }
    .bg-white.py-4.footer-app {
        display: none;
    }
    .footer-copyright .col-auto {
        margin: auto;
        padding: 4px 0;
    }
    .footer-copyright  p.m-0.text-muted.pe-1 {
        display: none;
    }
    .osahan-location p {
        font-size: 12px;
        width: 100%;
    }
    .top-search-bar input {
        border: none;
        box-shadow: none !important;
    }
    .shop-category .osahan-arrow{
        display: none !important;
    }
    .osahan-left {
        z-index: 9;
        left: -1px;
    }
    .osahan-right {
        right: -2px;
    }
    .osahan-arrow {
        width: 22px;
        height: 23px;
        font-size: 11px;
    }
    .osahan-listing .osahan-listing-page-nav-sidebar {
        padding: 0px !important;
    }
    .osahan-listing .container {
        padding: 0px;
    }
    .osahan-listing-page-nav .navbar-toggler {
        padding: 0 0;
        position: absolute;
        top: -37px;
        right: 41px;
    }
    .osahan-listing-page-nav .container {
        padding: 0px;
    }
    .product-details {
        display: none;
    }
    .product-detail-page .sticky-sidebar2.border-start.overflow-auto.vh-100.p-5 {
        padding: 0 0 50px 0px !important;
        border: none !important;
        height: auto !important;
    }
    .product-detail-page .col-lg-6.col-12.py-5 {
        padding-bottom: 10px !important;
    }

    .shop-list-page .text-truncate {
        width: 160px;
    }
    .shop-list-page .card-footer {
        flex-direction: column;
        gap: 5px !important;
    }
    .shop-list-page .card-footer br {
        display: none;
    }
    .shop-list-page .card-footer del {
        margin-right: 7px;
    }
    .shop-list-page .osahan-card-list .card-img-top {
        height: 91px;
    }
    .store-sidebar {
        margin-top: 0px;
    }
    .my-account-dropdown li.d-flex.align-items-center.gap-2.bg-light.p-3.mt-2 img {
        width: 32px;
        margin-bottom: auto;
        margin-top: 2px;
    }
    .my-account-dropdown {
        margin-top: 10px !important;
        right: 0 !important;
        left: 0 !important;
        width: 100%;
    }
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.atm-card {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 16 / 9; /* Maintain responsive aspect ratio */
    background-size: contain; /* Ensure full visibility of the background */
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center; /* Align content vertically */
    justify-content: center; /* Center the content */
    padding: 15px;
    position: relative;
    overflow: hidden; /* Prevent content from spilling out */
}

.card-content {
    width: 100%;
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 40%; /* Slightly down from the top */
}

.card-amount {
    font-size: 15px;
    margin-bottom: 5px;
}

.card-number {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    word-wrap: break-word; /* Break long numbers */
}

.card-holder-name {
    font-size: 15px;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .atm-card {
        max-width: 250px;
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .card-amount {
        font-size: 12px; /* Reduce font size for small screens */
    }

    .card-number {
        font-size: 13px; /* Adjust font size */
        letter-spacing: 1px; /* Reduce spacing */
    }

    .card-holder-name {
        font-size: 12px; /* Reduce font size */
    }
}

@media (max-width: 480px) {
    .atm-card {
        max-width: 200px;
        padding: 8px; /* Further reduce padding */
    }

    .card-amount,
    .card-number,
    .card-holder-name {
        font-size: 10px; /* Further reduce font sizes for very small screens */
    }
}




/* Specific backgrounds for each card */
.card-one {
    background-image: url('https://app-backend-images.s3.ap-south-1.amazonaws.com/assets/emicard.svg'); /* Replace with actual path */
}

.card-two {
    background-image: url('https://app-backend-images.s3.ap-south-1.amazonaws.com/assets/bnplcard.svg'); /* Replace with actual path */
}



.img-resize {
    object-fit: cover;
    width: 100%;
    height: 150px;
    border-radius: 8px;
}

.image-container {
    width: 100%;
    height: 150px;
}


footer ul li {
   font-size: 12px; /* Slightly larger font size */
   line-height: 1; /* Increase line height for better spacing */
   margin-bottom: 10px; /* Add margin between list items */
}

footer h6 {
   font-size: 14px; /* Slightly increase font size for headings */
}

footer a {
   font-size: 12px; /* Match font size for links */
}

footer ul {
   padding-left: 0; /* Remove default padding for a cleaner look */
}

footer img {
   margin-top: 10px; /* Add spacing above the logo or Google Play button */
}


.card-footer h6 span.text-danger {
   font-size: 1.2em; /* Make sale price larger */
   font-weight: bold;
}

.card-footer del.text-muted {
   font-size: 0.9em; /* Make regular price smaller */
}


/* Add shadow effect */
.shadow-effect {
   box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Adds a light shadow */
   transition: box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.shadow-effect:hover {
   box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Optional: make the image more visually appealing */
img.rounded-4 {
   border-radius: 10px; /* Rounded corners for images */
}


/* For most modern browsers */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


.description-text {
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 4; /* Show only 4 lines */
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   word-wrap: break-word;
}

.description-expanded {
   -webkit-line-clamp: unset;
   -webkit-box-orient: unset;
   overflow: visible;
}