* {
    padding: 0;
    margin: 0;
    font-family: "DM Sans";
}

.container {
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    overflow: hidden;
    margin-right: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 0px;
    overflow: hidden;
}

.header-wrapper {
    position: relative;
    width: -webkit-fill-available;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
}

.brand-hlogo {
    width: 235px;
    height: 50px;
}

.brand-hlogo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.header-widgets {
    display: flex;
    align-items: center;
    z-index: 1;
}

.header-widgets button {
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 100%;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-widgets button:hover {
    background-color: #e9e8e8;
}

.header-nav {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: fit-content;
    display: flex;
    align-items: center;
}

.header-nav a {
    color: #535353;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    padding: 15px 10px;
}

.header-nav a.highlighted {
    color: black;
    font-weight: 500;
}

.header-nav a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    height: 2px;
    content: ' ';
    transition: .2s;
    transform: scaleX(0);
}

.header-nav a:hover {
    color: black;
}

.header-nav a:hover::before {
    transform: scaleX(1);
}

.header-widgets button:nth-last-child(1) {
    margin-right: 0;
}

.offer-bar {
    background-color: #e9e8e8;
    color: black;
    height: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 10px 0px;
}

.slider-sitem {
    height: 100%;
    width: -webkit-fill-available;
}

.slider-swiper .slider-sitem {
    position: relative;
}

.slider-sitem img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.collection-section {
    padding: 40px 0px;
}

.blogs-section h1,
.products-section h1,
.collection-section h1 {
    text-transform: uppercase;
}

.collection-box {
    width: 200px;
    height: 330px;
    margin-top: 30px;
}

.collection-box:hover .colbox-name {
    color: black;
}

.colbox-img {
    height: calc(100% - 25px);
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.colbox-img img {
    height: 100%;
    width: 100%;
    user-select: none;
    object-fit: cover;
}

.colbox-name {
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0;
    color: #535353;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.collection-swiper .swiper-slide {
    width: 200px !important;
}

.products-section {
    padding: 40px 0px 80px 0px;
}

.home-products-grid {
    display: grid;
    row-gap: 0px;
    column-gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.product-card {
    width: -webkit-fill-available;
    max-width: 348px;
    margin-top: 30px;
}

.prod-img {
    border-radius: 8px;
    overflow: hidden;
    width: -webkit-fill-available;
    height: auto;
    position: relative;
    height: 420px;
    max-width: 348px;
    transition: .3s;
}

.prod-img img:hover:nth-child(2) {
    opacity: 1 !important;
}

.prod-img img:nth-child(2) {
    opacity: 0;
}

.prod-img img {
    border-radius: 8px;
    width: 100%;
    transition: .3s;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: -webkit-fill-available;
    margin: auto;
}

.product-name {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    color: #535353;
}

.product-name a:hover {
    color: black;
}

.product-price {
    color: black;
    font-weight: 600;
}

.product-dta {
    margin: 5px 0px;
    width: -webkit-fill-available;
    text-align: left;
    text-align: -webkit-left;
}

.swiper-pagination-bullet-active {
    background-color: black !important;
    width: 35px;
    border-radius: 4px;
}

.swiper-pagination-bullet {
    background-color: #00000036;
    opacity: 1;
    transition: .4s;
}

.blogs-swiper-pagination,
.collection-swiper-pagination {
    bottom: 0 !important;
    display: flex;
}

.blogs-swiper,
.collection-swiper {
    padding-bottom: 35px !important;
}

.collection-swiper .swiper-pagination-bullet {
    background-color: #00000036;
}

footer {
    padding: 60px 0px;
    background-color: #e9e8e8;
}

.social-flex {
    display: flex;
    align-items: center;
}

.social-flex a {
    height: 40px;
    width: 40px;
    margin: 10px 5px 10px 0px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-flex svg {
    height: 22px;
    width: 22px;
}

.social-flex a:hover {
    background-color: #fff;
}

.social-flex a:hover svg {
    fill: white !important;
}

.footer-nav-col {
    width: 320px;
}

.footer-nav-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

footer h3 {
    font-size: 20px;
}

.flex-pft {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 0fr));
    column-gap: 50px;
    row-gap: 25px;
}

.pft-item {
    margin-right: 50px;
}

.pft-item p {
    margin-top: 10px;
    color: #535353;
}

.prod-actions {
    position: absolute;
    bottom: 16px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.prod-actions button {
    height: 45px;
    width: 45px;
    box-shadow: 0 0 10px 0 #00000059;
    border: none;
    background-color: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.prod-actions button svg {
    pointer-events: none;
}

.prod-actions button:nth-last-child(1) {
    margin-bottom: 0;
}

.ftul-nav {
    list-style: none;
}

.ftul-nav li {
    margin: 10px 0px;
}

.ftul-nav li a {
    color: #535353;
    font-size: 14px;
    text-decoration: none;
}

.ftul-nav li a:hover {
    color: black;
}

.footer-nav-row {
    display: grid;
    row-gap: 25px;
    margin-bottom: 25px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.footer-copyright {
    background-color: white;
    padding: 20px 0px;
    font-size: 14px;
    text-align: center;
    text-align: -webkit-center;
}

.blogimg-bk {
    height: 250px;
    width: -webkit-fill-available;
    background-color: black;
    border-radius: 8px;
    overflow: hidden;
}

.blgbk-dta {
    margin: 5px 0px;
}

.blgbk-name {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #535353;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogimg-bk img {
    height: 100%;
    width: 100%;
    user-select: none;
    object-fit: cover;
}

.blog-card {
    margin-top: 30px;
    width: 380px;
}

.flex-payicon-ft {
    display: flex;
    flex-wrap: wrap;
    max-width: 400px;
    margin-top: 10px;
}

.pmimg-item {
    height: 28px;
    width: 46px;
    margin-right: 5px;
    border-radius: 4px;
    overflow: hidden;
    margin: 4px 0px;
}

.pmimg-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.blogs-section {
    padding: 40px 0px;
}

@media screen and (max-width: 700px) {
    .product-card {
        place-items: center;
    }

    .header-nav {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .prod-img {
        max-width: -webkit-fill-available;
    }

    .home-products-grid {
        grid-template: none;
    }

    .collection-section {
        padding-bottom: 0;
    }
}

.mobile-header {
    display: none;
}

.mobile-header-menu {
    transform: translateX(-100%);
    transition: .2s;
    background-color: rgba(0, 0, 0, 0.822);
    width: 280px;
    height: 100dvh;
    padding: 0px 20px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11111;
}

.menumhmm-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: white;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 100%;
}

.menumhmm-close svg {
    pointer-events: none;
}

@media screen and (max-width: 500px) {
    .mobile-header {
        display: flex;
    }

    .mobile-cartcata {
        display: block !important;
    }

    .product-card,
    .collection-box {
        margin-top: 20px;
        max-width: 325px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-header-menu.active {
        transform: translateX(0%);
        display: block;
    }

    .mobile-header-menu ul {
        list-style: none;
        padding: 0;
        margin-top: 120px;
    }

    .mobile-header-menu ul li {
        padding: 10px 0px;
        display: flex;
        align-items: center;
    }

    .mobile-header-menu ul li a {
        color: white;
        width: -webkit-fill-available;
        font-size: 16px;
    }

    .header-widgets button {
        height: 40px;
        width: 40px;
    }

    .desktop-header {
        display: none;
    }

    .offer-bar {
        font-size: 14px;
        padding: 8px 0px;
    }

    .header-wrapper {
        padding: 15px 0px;
        justify-content: space-between;
    }

    .brand-hlogo {
        width: 200px;
        height: 40px;
    }

    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.crt-btn {
    position: relative;
}

.numbs_crt_iem {
    position: absolute;
    top: -4px;
    right: -4px;
    height: 20px;
    width: 20px;
    color: white;
    font-size: 11px;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 100%;
    background-color: #77DD77;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.mobile-cartcata {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}

.mobile-cartcata button {
    height: 50px;
    cursor: pointer;
    border: none;
    background-color: #e9e8e8;
    width: 50px;
    border-radius: 100%;
}

.prod-saletabg {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    font-size: 13px;
    z-index: 11;
    padding: 5px 9px;
    border-radius: 8px;
}

.bdcum-head h1 {
    font-size: 16px;
    font-weight: 600;
}

.shemty-loader {
    display: flex;
    justify-content: center;
}

.prod-iagaj {
    height: 70px;
    width: 70px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    background-color: #e9e8e8;
}

.prod-nmiwprice{
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
    margin-top: 4px;
}

.prod-iagaj img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.prod-nime{
    text-transform: capitalize;
    font-size: 15px;
    line-height: 1.4em;
    font-weight: 500;
}