* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary-color: #3F3322;
    --color-secondary: #BC9C37;
    --white-color: #ffffff;
}

body {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;

}

html {
    font-size: 62.5%;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}
.container, .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.row {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}
.row>* {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1450px;
    }
}




.theme-btn {
    min-width: 15.2rem;
    padding: 1rem 1.4rem;
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
}

.theme-btn.primary {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.vertical-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slick-next:before {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--primary-color);
}

.slick-prev:before {
    content: '\f053';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--primary-color);
}

.slider-gap .slick-next,
.slider-gap .slick-prev {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.slider-gap .slick-next {
    right: -5rem;
}

.slider-gap .slick-prev {
    left: -5rem;
}

.slider-gap .slick-next:before,
.slider-gap .slick-prev::before {
    font-size: 1.4rem;
    color: var(--white-color);
}

.slider-gap .slick-slide {
    margin: 0 1.5rem;
}

.slider-gap .slick-list {
    margin: 0 -1.5rem;
}

.slick-dots li button:before {
    font-size: 1rem;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
    color: var(--primary-color);
}

.section-padding {
    padding-block: 8rem;
}

.sub-heading h2 {
    font-size: 5.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.sub-heading h4 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}


.house-metal-header {
    position: fixed;
    top: 0;
    z-index: 9999999999;
    width: 100%;

}

.house-metal-header .navbar .navbar-nav {
    column-gap: 1.4rem;
}

.house-metal-header .navbar .navbar-nav .nav-item {
    position: relative;
}

.house-metal-header .navbar .navbar-nav .nav-item .nav-link {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.house-metal-header .navbar .navbar-nav .nav-item .nav-link i {
    font-size: 1.3rem;
    margin-left: 0.2rem;
    transform: translateY(1px);
}

.house-metal-header .navbar .navbar-nav .nav-item .mega_menu {
    width: 200px;
    min-height: 200px;
    background-color: var(--white-color);
    font-size: 1.4rem;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    position: absolute;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.house-metal-header .navbar .navbar-nav .nav-item:hover .mega_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.house-metal-header .navbar .navbar-nav .nav-item:hover .mega_menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
}

.house-metal-header .navbar .navbar-nav .nav-item:hover .mega_menu ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.house-metal-header .navbar .navbar-nav .nav-item:hover .mega_menu ul li a {
    width: 100%;
    color: var(--primary-color);
    display: inline-block;
}

.house-metal-header .navbar .navbar-brand img {
    max-width: 20rem;
    height: 6rem;
}

.house-metal-header .navbar .header-right-action-list {
    column-gap: 2rem;
}

.house-metal-header .navbar .header-right-action-list li a i {
    font-size: 2rem;
}

.home-hero-banner {
    position: relative;
    background-color: var(--primary-color);
    padding-top: 6.9rem;
    height: 100vh;

}


.home-hero-banner :is(.hero-banner-slider, .slick-list, .slick-track, .slick-slide, .slick-slide > div, .slide) {
    height: 100%;
}

.home-hero-banner .banner-wrapper {
    display: flex;
    height: 100%;
}

.home-hero-banner .banner-wrapper .left-img-wrapper {
    width: 60%;
}

.home-hero-banner .banner-wrapper .left-img-wrapper .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-banner .banner-wrapper .right-content-sec {
    width: 40%;
    padding: 2rem 3rem;
    text-align: center;
}

.home-hero-banner .banner-wrapper .right-content-sec .heading {
    color: var(--white-color);
    font-size: 5.5rem;
    line-height: 1.2;
    margin-bottom: 3.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.home-hero-banner .slick-next,
.home-hero-banner .slick-prev {
    top: auto;
    bottom: 2px;
    transform: none;
    z-index: 9;
    width: 6rem;
    height: 6rem;
    background-color: var(--white-color);
}


.home-hero-banner .slick-next {
    right: 2px;
}

.home-hero-banner .slick-prev {
    left: auto;
    right: 6.8rem;
}


/* ---------------------------feature-section-css-start----------------- */
.feature-sec {
    background-color: var(--white-color);
    padding-block: 7rem;
}

.feature-sec .features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.feature-sec .features .feature {
    text-align: center;
    width: calc(25% - 1rem);
}

.feature-sec .features .feature .feature-img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 2rem;
}

.feature-sec .features .feature .feature-text {
    font-size: 3.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

.feature-sec .features .feature .feature-text span {
    display: block;
    font-weight: 500;
}

/* ----------------------------feature-section-css-end------------------ */


/* ----------------------home-categories-section-start---------------- */
.home-decore-categories-sec {
    background-color: #EEEAE4;
}
.home-decore-categories-sec .decore-category-wrapper{
    display: block;
}

.home-decore-categories-sec .decore-category-wrapper {
    text-align: center;
}

.home-decore-categories-sec .decore-category-wrapper .category-img {
    width: 23rem;
    height: 23rem;
    border-radius: 50%;
    margin-inline: auto;
    object-fit: cover;
}

.home-decore-categories-sec .decore-category-wrapper .category-name {
    font-size: 2.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

.home-decore-categories-sec .decore-category-wrapper .item-count {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--white-color);
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    border-radius: 1.4rem;
    min-width: 7.5rem;
}

/* ----------------------home-categories-section-end------------ */


/* --------------------product-gllery-section-start-------------------- */
.product-gallery-section .gallery-wrapper .gallery-item {
    position: relative;
}

.product-gallery-section .gallery-wrapper .gallery-item {
    position: relative;
    height: 100%;
    height: 80rem;
}

.product-gallery-section .gallery-wrapper .gallery-item .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-section .gallery-wrapper .gallery-item .product-detail {
    position: absolute;
    bottom: 6rem;
    left: 4rem;
    width: 55%;
}

.product-gallery-section .gallery-wrapper .gallery-item .product-detail.top-right {
    bottom: auto;
    left: auto;
    right: 2rem;
    top: 4rem;
}


.product-gallery-section .gallery-wrapper .gallery-item .product-detail h4 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 1.6rem;

}

.product-gallery-section .gallery-wrapper .gallery-item.right-gallery-sec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.product-gallery-section .gallery-wrapper .gallery-item.right-gallery-sec .right-image-item {
    height: calc((100% - 3rem) / 2);
    position: relative;
}

.product-gallery-section .gallery-wrapper .gallery-item .product-detail h3 {
    font-size: 3.2rem;
    color: var(--white-color);
    margin-bottom: 1.6rem;

}

/* ------------------product-gallery-section-end------------------- */

/* -----------------top-selling-products-section-strt------------ */
.top-selling-products.top-selling-products-slider .top-selling-product-card {
    margin-top: 3rem;
    display: block;
}

.top-selling-products .top-selling-product-card .img-box {
    width: 100%;
    /* height: 50rem; */
    aspect-ratio: 130 / 169;
    position: relative;
    overflow: hidden;
}

.top-selling-products .top-selling-product-card .img-box .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.top-selling-products .top-selling-product-card .img-box ul.action-list {
    position: absolute;
    right: -100%;
    top: 1.4rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    transition: all 1s;
}

.top-selling-products .top-selling-product-card:hover .img-box ul.action-list {
    right: 1.3rem;
}

.top-selling-products .top-selling-product-card .img-box ul.action-list .action .action-btn {
    font-size: 1.8rem;
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 1rem;
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}


.top-selling-products .top-selling-product-card .product-detail {
    padding-top: 2.6rem;
}

.top-selling-products .top-selling-product-card .product-detail ul.rating-list li {
    font-size: 1.6rem;
    color: var(--color-secondary);
}

.top-selling-products .top-selling-product-card .product-detail .product-name {
    font-size: 1.6rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.top-selling-products .top-selling-product-card .product-detail .product-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.8rem;

}

/* -----------------top-selling-products-section-end-------------- */


/* ------------------------bottom-gallery-tab-sec-cs-start----------- */
.bottom-gallery-tab-sec .tab-wrapper {
    width: 50%;
    aspect-ratio: 6/5;
}

.bottom-gallery-tab-sec .tab-wrapper .full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-gallery-tab-sec .tab-wrapper.text-tab {
    background-color: var(--primary-color);
    padding-inline: 3rem;
    text-align: center;
}

.bottom-gallery-tab-sec .tab-wrapper.text-tab .logo-img {
    max-width: 20rem;
    margin-bottom: 3rem;
    height: 10rem;
}

/* ------------------------bottom-gallery-tab-sec-cs-end----------- */


/* -------------------footer-css-start--------------------- */
.hm-footer .top-sec {
    background-color: #EEEAE4;
}

.hm-footer .top-sec h3 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.hm-footer .top-sec .des-sec .logo-img {
    max-width: 20rem;
    margin-bottom: 3rem;
    height: 6rem;
}

.hm-footer .top-sec .des-sec p {
    font-size: 1.6rem;
    margin-bottom: 0;
    line-height: 1.8;
}

.hm-footer .top-sec .link-list {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.hm-footer .top-sec .link-list li a {
    font-size: 1.5rem;
    color: #373737;
    transition: all 0.5s;

}

.hm-footer .top-sec .link-list li a:hover {
    color: var(--color-secondary);

}

.hm-footer .top-sec .link-list.info-list li {
    display: flex;
    column-gap: 0.4rem;
    align-items: center;
    font-size: 1.5rem;

}

.hm-footer .top-sec .social-link li a {
    font-size: 1.8rem;
    color: var(--primary-color);

}

.copy-right-sec {
    padding-block: 2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1.6rem;
}

/* -------------------footer-css-end----------------- */


/* ------------------inner-page-banner-css-start----------- */
.inner-page-banner {
    padding-top: 14rem;
    padding-bottom: 8rem;
    background-color: var(--primary-color);
}

.inner-page-banner .content-sec{
    color: var(--white-color);
}
.inner-page-banner .content-sec .heading{
    font-size: 5rem;
    margin-bottom: 2rem;
}
.inner-page-banner .content-sec .breadcrumb{
    display: flex;
    column-gap: 0.4rem;
    font-size: 1.6rem;
}
.inner-page-banner .content-sec .breadcrumb a{
    transition: all 0.5s;
}

.inner-page-banner .content-sec .breadcrumb a:hover{
    color: var(--color-secondary);
}
.product-listing-page.product-listing-sec .filter-sorting-sec{
    font-size: 1.6rem;
}

.product-listing-page.top-selling-products{
    row-gap: 3rem;
}
/* ------------------inner-page-banner-css-end------------ */


.coming-soon{
    height: 100vh;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding-top: 9rem;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8), 
            rgba(0, 0, 0, 0.8)
        ),
        url("../images/wall-art.png"); 

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coming-soon .content-wrapper{
    text-align: center;
}

.coming-soon .content-wrapper h1{
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}
.coming-soon .content-wrapper p{
    font-size: 2.4rem;
    margin-inline: auto;
}


/* ------------------------responsive-css----------------- */
@media screen and (max-width:1599px) {

    .theme-btn {
        min-width: 12rem;
        font-size: 1.4rem;
    }

    .section-padding {
        padding-bottom: 6rem;
    }

    .sub-heading h2 {
        font-size: 4.4rem;
    }

    .sub-heading h4 {
        font-size: 1.6rem;
    }

    .house-metal-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 1.5rem;
    }

    .house-metal-header .navbar .header-right-action-list {
        column-gap: 1.8rem;
    }

    .house-metal-header .navbar .header-right-action-list li a i {
        font-size: 1.8rem;
    }

    .home-hero-banner {
        padding-top: 6.1rem;
    }

    .home-hero-banner .banner-wrapper .right-content-sec {
        padding: 1rem 2rem;
    }

    .home-hero-banner .banner-wrapper .right-content-sec .heading {
        font-size: 4.4rem;
    }

    .feature-sec {
        padding-block: 5rem;
    }

    .feature-sec .features .feature {
        text-align: center;
        width: calc(20% - 1rem);
    }

    .feature-sec .features .feature .feature-img {
        width: 6rem;
        height: 6rem;
        margin-bottom: 1.6rem;
    }

    .feature-sec .features .feature .feature-text {
        font-size: 2.4rem;
    }

    .home-decore-categories-sec .decore-category-wrapper .category-img {
        width: 18rem;
        height: 18rem;
    }


    .product-gallery-section .gallery-wrapper .gallery-item {
        position: relative;
        height: 60rem;
    }

    .product-gallery-section .gallery-wrapper .gallery-item .product-detail {
        bottom: 3rem;
        left: 2rem;
    }

    .product-gallery-section .gallery-wrapper .gallery-item .product-detail h4 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .product-gallery-section .gallery-wrapper .gallery-item .product-detail h3 {
        font-size: 2.8rem;
        margin-bottom: 1.4rem;

    }

    .bottom-gallery-tab-sec .tab-wrapper.text-tab .logo-img,
    .house-metal-header .navbar .navbar-brand img {
        max-width: 17rem;
    }

    .hm-footer .top-sec h3 {
        font-size: 2rem;
    }

    .hm-footer .top-sec .des-sec .logo-img {
        max-width: 17rem;
        margin-bottom: 2rem;
    }

    .hm-footer .top-sec .des-sec p {
        font-size: 1.5rem;
    }

    .hm-footer .top-sec .link-list {
        row-gap: 0.8rem;
    }

    .hm-footer .top-sec .link-list li a {
        font-size: 1.4rem;
    }

    .hm-footer .top-sec .link-list.info-list li {
        font-size: 1.4rem;
    }

    .hm-footer .top-sec .social-link li a {
        font-size: 1.6rem;
    }

}


@media screen and (max-width:1199px) {
    .house-metal-header .navbar .navbar-nav {
        column-gap: 0.8rem;
    }


    .house-metal-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 1.3rem;
    }

    .house-metal-header .navbar .header-right-action-list {
        column-gap: 1.4rem;
    }

    .house-metal-header .navbar .header-right-action-list li a i {
        font-size: 1.6rem;
    }

    .home-hero-banner .banner-wrapper .left-img-wrapper {
        width: 50%;
    }

    .home-hero-banner .banner-wrapper .right-content-sec {
        width: 50%;
    }

    .home-hero-banner .banner-wrapper .right-content-sec .heading {
        font-size: 3.8rem;
    }
}

@media screen and (max-width:991px) {
    .house-metal-header .navbar-collapse {
        width: 310px;
        background-color: #fff;
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 20px 15px;
        padding-top: 20px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 15px;
        overflow-y: auto;
        display: block;
        transform: translateX(100%);
        transition: all .3s ease-in-out;
    }

    .house-metal-header .navbar-collapse.show {
        transform: translateX(0);
    }

    .house-metal-header .navbar-toggler[aria-expanded=true] {
        z-index: 9;
        position: absolute;
        right: 310px;
        top: 15px;
        box-shadow: 0 0 3px 0 #ccc !important;
        transition: all 1s;
    }

    .house-metal-header .navbar .navbar-nav .nav-item .mega_menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: transparent;
        min-height: auto;
    }

    .house-metal-header .navbar .navbar-nav .nav-item:hover .mega_menu {
        position: static;
        display: block;
    }

    .house-metal-header .navbar .navbar-nav {
        row-gap: 1rem;
    }

    .house-metal-header .navbar .navbar-nav .nav-item .nav-link {
        font-weight: 500;
    }

    .home-hero-banner {
        height: 60vh;
    }

    .home-hero-banner .banner-wrapper {
        flex-wrap: wrap;
        position: relative;
    }

    .home-hero-banner .banner-wrapper .left-img-wrapper {
        width: 100%;
    }

    .home-hero-banner .banner-wrapper .right-content-sec {
        width: 100%;
        position: absolute;
        top: 0;
        background: rgba(0, 0, 0, 0.5);
        height: 100%;

    }
    .home-hero-banner .banner-wrapper .right-content-sec .heading{
        width: 70%;
    }

}