/* Start Global Rules */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --main-color: #7b5244;
    --sec-color: #333333;
}
body {
    font-family: 'Roboto', sans-serif;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.container {
    width: 85%;
    margin: auto;
}
.main-heading {
    margin: 50px 0;
    text-align: center;
}
.main-heading h2 {
    font-size: 30px;
}
.main-heading span {
    width: 70px;
    height: 3px;
    background-color: var(--main-color);
    display: inline-block;
    transition: 0.5s;
}
.main-heading:hover span {
    width: 100px;
}
h1, h2, h3, h4, h5, h6 {
    color: #262626;
}
/*  Start Header */
header {
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    position: fixed;
    z-index: 99;
    background-color: #ffffff;
    width: 100%;
}
header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}
header .header-content nav {
    font-size: 14px;
}
header .header-content nav ul {
    display: flex;
}
header .header-content nav ul li .link-item {
    display: block;
    font-weight: bold;
    color: var(--sec-color);
    padding: 10px 15px;
    position: relative;
}
header .header-content nav ul li .link-item::before,
header .header-content nav ul li .link-item::after {
    position: absolute;
    content: "";
    border-color: var(--main-color);
    border-style: solid;
    top: 0;
    left: 0;
    transition: 0.3s;
}
header .header-content nav ul li .link-item::before {
    border-width: 0 2px;
    width: 96%;
    height: 100%;
    transform: scale3d(1, 0, 1);
    transform-origin: 0% 50%;
    transition-delay: 0.2s;
}
header .header-content nav ul li .link-item::after {
    border-width: 2px 0;
    width: 100%;
    height: 95%;
    transform: scale3d(0, 1, 1);
    transform-origin: 0% 0%;
}
header .header-content nav ul li .link-item:hover::before,
header .header-content nav ul li .link-item:hover::after {
    transform: scale3d(1, 1, 1);
}
header .header-content .dropdown {
    position: relative;
}
header .header-content .dropdown .dropdown-menu {
    position: absolute;
    background-color: white;
    border: 2px solid var(--main-color);
    padding: 15px 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
    transform: scale(0);
}
header .header-content .dropdown:hover .dropdown-menu {
    transform: scale(1);
}
header .header-content .dropdown .dropdown-menu ul {
    text-align: left;
    flex-direction: column;
    margin-right: 50px;
}
header .header-content .dropdown .dropdown-menu ul li {
    padding: 10px 0;
}
header .header-content .dropdown .dropdown-menu ul li a {
    display: block;
    min-width: 100px;
    color: var(--sec-color);
}
header .header-content .dropdown .dropdown-menu ul li a.head {
    color: var(--main-color);
    padding-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    
}
header .header-content .dropdown .dropdown-menu ul li a:hover {
    color: var(--main-color);
}
header .header-content .login ul {
    display: flex;
    color: var(--sec-color);
}
header .header-content .login ul li {
    padding: 0 10px;
    font-size: 25px;
    cursor: pointer;
}
header .header-content .login ul li:hover {
    color: var(--main-color);
}
header .header-content .login ul li span {
    font-size: 16px;
    margin-left: 15px;
}
header .header-content .login ul li i.bag {
    position: relative;
}
header .header-content .login ul li i.bag::after {
    content: "0";
    position: absolute;
    right: -11px;
    bottom: 0;
    padding: 5px;
    background-color: var(--main-color);
    color: white;
    font-size: 7px;
    border-radius: 50%;
}
header i.bar {
    font-size: 30px;
    margin-right: 20px;
    color: var(--main-color);
    cursor: pointer;
}
/* Large */
@media (min-width: 1091px) {
    header i.bar {
        display: none;
    }
    header .mini-nav {
        display: none;
    }
}
/* Small */
@media (max-width: 1090px) {
    header .header-content nav:not(.mini-nav) {
        display: none;
    }
    header .container {
        position: relative;
    }
    header .container .header-content {
        margin-left: 50px;
    }
    header i.bar {
        position: absolute;
        padding: 35px 0;
    }
    header .mob-nav:hover .mini-nav {
        display: flex;
    }
    header .mini-nav {
        max-height: 200px;
        overflow-y: scroll;
        position: absolute;
        display: none;
        width: 100%;
        padding: 10px 20px;
        background-color: white;
        box-shadow: 0 4px 16px rgba(0,0,0,.15);
        top: 99px;
        transition: 0.1s;
    }
    header .mini-nav ul {
        font-size: 16px;
        font-weight: 400;
        flex-direction: column;
    }
    header .mini-nav ul.main li {
        color: var(--sec-color);
        margin: 10px 0;
        cursor: pointer;
        transition: 0.3s;
    }
    header .mini-nav ul.main li:last-child {
        padding-bottom: 20px;
    }
    header .mini-nav ul.main li:hover {
        color: var(--main-color);
    }
    header .mini-nav ul.child li {
        font-size: 14px;
        font-weight: 400;
        padding-left: 15px;
    }
}
@media (max-width: 555px) {
    .slider {
        padding-top: 200px;
    }
    header .header-content img {
        width: 120px;
    }
    header i.bar {
        font-size: 25px;
    }
    header .header-content .login li i {
        font-size: 20px;
    }
    header .header-content .login li span {
        display: none;
    }
    header .mini-nav {
        top: 90px;
    }
}
/* Start Slider */
.slider {
    padding-top: 100px;
}
@media (max-width: 565px) {
    .slider {
        padding-top: 90px;
    }
}
.slider .image {
    position: relative;
    overflow: hidden;
}
.slider .image img {
    max-width: 100%;
}
.slider .image .bullets {
    position: absolute;
    cursor: pointer;
    bottom: 30px;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.7s;
}
.slider .image .bullets .bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    transition: 0.3s;
}
.slider .image .bullets .bullet:hover,
.slider .image .bullets .bullet.active {
    background-color: black;
}
.slider .image .swipe {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    background-color: white;
    transition: 0.2s;
    cursor: pointer;
}
.slider .image .swipe:hover {
    background-color: black;
    color: white;
}
.slider .image .swipe::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border: 4px solid white;
    top: -8px;
    transition: 0.2s;
}
.slider .image .right::after {
    right: -8px;
}
.slider .image .left::after {
    left: -8px;
}
.slider .image .swipe:hover::after {
    border-color: black;
}
.slider .image .left {
    left: -50px;
}
.slider .image .right {
    right: -50px;
}
@media (min-width: 992px) {
    .slider .image .bullets {
        visibility: hidden;
        opacity: 0;
    }
    .slider .image:hover .bullets {
        visibility: visible;
        opacity: 1;
        cursor: pointer;
    }
    .slider .image:hover .right {
        right: 50px;
    }
    .slider .image:hover .left {
        left: 50px;
    }
}
.owl-pagination {
    text-align: right;
}
.owl-pagination .owl-page {
    width: 50px;
    height: 2px;
    bottom: 0;
    background-color: #888888;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
}
.owl-pagination .owl-page.active,
.owl-pagination .owl-page:hover {
    background-color: var(--main-color);
}
/* Start Category */
.category .category-items {
    position: relative;
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(250px, 1fr) );
    gap: 20px;
    padding-bottom: 60px;
}
.category .category-items .item {
    position: relative;
}
@media (max-width: 643px) {
    .category .category-items {
        text-align: center;
    }
}
.category .category-items .item img {
    max-width: 100%;
    transition: 0.5s;
}
.category .category-items .item:hover img {
    box-shadow: 0 0 15px 0px #bbb;
}
.category .category-items .item span {
    display: block;
    color: #888888;
    margin: 10px 0;
}
.category .category-items .item h3 {
    margin-top: 10px;
}
.category .category-items .item i {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
    color: white;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    cursor: pointer;
}
.category .category-items .item i:hover {
    background-color: var(--sec-color);
}
.category .category-items .item:hover i {
    opacity: 1;
    visibility: visible;
}
.category .category-items .bullets {
    position: absolute;
    cursor: pointer;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.category .category-items .bullets .bullet {
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    transition: 0.3s;
}
.category .category-items .bullets .bullet:hover,
.category .category-items .bullets .bullet.active {
    background-color: black;
    transform: scale(1.2);
}
/* Start Discount Section */
.discount-section {
    padding-top: 100px;
}
.discount-section .discount {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
}
.discount-section .discount .disc-area {
    background-color: #f7f3ef;
    padding: 25px 50px;
    grid-column: 1/2;
}
.discount-section .discount .disc-area .head {
    padding-left: 90px;
    position: relative;
}
.discount-section .discount .disc-area .head i {
    font-size: 80px;
    color: var(--main-color);
    position: absolute;
    left: 0;
}
.discount-section .discount .disc-area .head h3 {
    padding-top: 10px;
}
.discount-section .discount .disc-area .head span {
    color: #888888;
    font-size: 14px;
}
.discount-section .discount .disc-area p {
    padding: 30px 0;
    color: #888888;
    line-height: 2;
}
.discount-section .discount .disc-item {
    position: relative;
    overflow: hidden;
}
@media (min-width: 575px) and (max-width: 991px) {
    .discount-section .discount .disc-area {
        grid-column: 1/5;
    }
    .discount-section .discount .disc-item.one {
        grid-column: 1/3;
    }
    .discount-section .discount .disc-item.two {
        grid-column: 3/5;
    }
}
@media (max-width: 575px) {
    .discount-section .discount .disc-area {
        grid-column: 1/5;
    }
    .discount-section .discount .disc-item {
        grid-column: 1/5;
        margin: 0 auto;
    }
}
.discount-section .discount .disc-item img {
    max-width: 100%;
    height: 100%;
    transition: 0.5s;
}
.discount-section .discount .disc-item .text {
    position: absolute;
    top: 30px;
    left: 25px;
}
.discount-section .discount .disc-item .text span {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 200;
}
.discount-section .discount .disc-item:hover img {
    transform: scale(1.1);
}
/* Start Sprites */
.discount-section .sprites {
    margin-top: 70px;
    display: flex;
}
.discount-section .sprites .sprite-item {
    text-align: center;
    padding: 0 25px;
    margin-bottom: 70px;
}
@media (min-width: 920px) {
    .discount-section .sprites .sprite-item {
        width: 20%;
    }
    .discount-section .sprites .sprite-item:not(:last-child) {
        border-right: 1px solid #eeeeee;
    }
}
@media (max-width: 919px) {
    .discount-section .sprites {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
}
@media (max-width: 574px) {
    .discount-section .sprites {
        flex-direction: column;
    }
}
.discount-section .sprites .sprite-item .icon {
    background-image: url(../images/service-icon.png);
    height: 55px;
    background-repeat: no-repeat;
    transition: 0.5s;
}
.discount-section .sprites .sprite-item .one {
    background-position: center 5px;
}
.discount-section .sprites .sprite-item:hover .one {
    background-position: center -85px;
}
.discount-section .sprites .sprite-item .two {
    background-position: center -180px;
}
.discount-section .sprites .sprite-item:hover .two {
    background-position: center -265px;
}
.discount-section .sprites .sprite-item .three {
    background-position: center -545px;
}
.discount-section .sprites .sprite-item:hover .three {
    background-position: center -635px;
}
.discount-section .sprites .sprite-item .four {
    background-position: center -364px;
}
.discount-section .sprites .sprite-item:hover .four {
    background-position: center -455px;
}
.discount-section .sprites .sprite-item .five {
    background-position: center -725px;
}
.discount-section .sprites .sprite-item:hover .five {
    background-position: center -820px;
}
.discount-section .sprites .sprite-item .info h4 {
    font-weight: 500;
    font-size: 14px;
    margin: 10px 0;
}
.discount-section .sprites .sprite-item .info span {
    color: #888888;
    font-size: 13px;
}
.discount-section .container {
    border-bottom: 1px solid #eeeeee;
}
/* Start Products */
.products .list-product {
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 600px) {
    .products .list-product {
        /* text-align: left; */
    }
}
.products .list-product li {
    display: inline-block;
    cursor: pointer;
    margin: 0 20px 10px;
    font-size: 16px;
}
.products .list-product li.active,
.products .list-product li:hover {
    color: var(--main-color);
}
.products .products-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
}
.products .products-items .item {
    position: relative;
}
@media (max-width: 743px) {
    .products .products-items .item {
        text-align: center;
    }
}
.products .products-items .item .image {
    position: relative;
    cursor: pointer;
}
.products .products-items .item .image img {
    max-width: 100%;
}
.products .products-items .item .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
}
.products .products-items .item .image .overlay img {
    transform: scaleX(0);
    opacity: 0;
    transition: 0.5s;
    max-width: 100%;
}
.products .products-items .item:hover .image .overlay img {
    transform: scaleX(1);
    opacity: 1;
}
.products .products-items .item .image .overlay ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.7s;
}
.products .products-items .item:hover .image .overlay ul {
    opacity: 1;
}
.products .products-items .item .image .overlay ul li {
    display: inline-block;
    padding: 10px;
    background-color: black;
    color: white;
    transition: background-color 0.5s;
    cursor: pointer;
}
.products .products-items .item .image .overlay ul li:hover {
    background-color: var(--main-color);
}
.products .products-items .item .info {
    color: var(--sec-color);
    padding: 10px 0;
}
.products .products-items .item .info i {
    font-size: 12px;
}
.products .products-items .item .info i.gold {
    color: #ffb700;
}
.products .products-items .item .info span {
    display: block;
    padding: 10px 0;
    font-size: 15px;
}
.products .products-items .item .info p {
    font-weight: 500;
    color: black;
    font-size: 15px;
}
.products .products-items .item .info p span {
    display: inline-block;
    text-decoration: line-through;
    color: #888888;
    font-weight: 400;
    padding-left: 5px;
}
/* Start Blog */
.blog {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 100px;
}
.blog .image {
    position: relative;
}
.blog .image img {
    max-width: 100%;
    height: 100%;
}
.blog .image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #262626;
    cursor: pointer;
    transition: 0.5s;
}
.blog .image i:hover {
    color: var(--main-color);
}
.blog .blog-box {
    background-color: #f7f3ef;
    padding: 30px;
}
.blog .blog-box .top {
    display: flex;
    margin-bottom: 5px;
}
.blog .blog-box .top .time {
    color: var(--main-color);
}
.blog .blog-box .top .time span:first-child {
    font-size: 35px;
    font-weight: bold;
}
.blog .blog-box .top .time span:last-child {
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.blog .blog-box .top h4 {
    cursor: pointer;
    transition: 0.3s;
}
.blog .blog-box .top h4:hover {
    color: var(--main-color);
}
.blog .blog-box p {
    padding: 10px 20px;
    color: #888888;
    font-size: 14px;
    word-spacing: 2px;
    letter-spacing: 0.3px;
    line-height: 2;
}
@media (min-width: 992px) {
    .blog {
        flex-direction: row;
    }
    .blog .image {
        flex-basis: 34%;
    }
    .blog .blog-box {
        flex-basis: 63%;
    }
}
@media (max-width: 991px) {
    .blog .image {
        flex-basis: 80%;
    }
    .blog .blog-box {
        flex-basis: 80%;
        margin: 20px 0;
    }
}
/* Start Banner Slider */
.banner-slider {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 60px 0;
}
.banner-slider .slide-item {
    margin: 0 5px;
    opacity: 0.7;
    transition: 0.5s;
}
.banner-slider .slide-item:hover {
    opacity: 1;
}
@media (max-width: 545px) {
    .banner-slider {
        text-align: center;
        flex-direction: column;
    }
    .banner-slider .slide-item {
        margin-bottom: 20px;
    }
}
/* Start Footer */
footer {
    background-color: black;
    color: white;
}
footer .footer-block {
    padding: 50px 0 10px;
    display: flex;
    justify-content: space-between;
}
footer .footer-block .left p {
    color: #888888;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .7px;
    line-height: 26px;
    margin: 38px 0 10px;
}
footer .footer-block .left .footer-inner img {
    cursor: pointer;
    margin-right: 10px;
    max-width: 135px;
}
footer .footer-block .lists {
    display: flex;
}
footer .footer-block .footer-list {
    padding: 0 10px;
    flex-basis: 50%;
}
footer .footer-block .footer-list h5 {
    color: white;
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    font-weight: 400;
    display: inline-block;
}
footer .footer-block .footer-list ul li {
    padding: 5px 0;
}
footer .footer-block .footer-list ul li a {
    color: #888888;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: 0.5s;
    padding: 0 10px 0 0;
}
footer .footer-block .footer-list ul li a:hover {
    color: white;
    padding: 0 5px;
}
footer .footer-block .subscribe {
    color: white;
}
footer .footer-block .subscribe h5 {
    color: white;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}
footer .footer-block .subscribe .input-email {
    position: relative;
    margin: 50px 0 30px;
}
footer .footer-block .subscribe .input-email input {
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #3a3a3a;
    padding: 7px;
    caret-color: #888888;
    color: white;
    width: 100%;
}
footer .footer-block .subscribe .input-email input::placeholder {
    font-size: 12px;
}
footer .footer-block .subscribe .input-email span {
    position: absolute;
    right: 5px;
    cursor: pointer;
    transition: 0.3s;
}
footer .footer-block .subscribe .input-email span:hover {
    color: var(--main-color);
}
footer .footer-block .subscribe .social {
    margin: 20px 10px;
}
footer .footer-block .subscribe .social li {
    display: inline-block;
    margin-right: 10px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
    padding: 4px;
}
footer .footer-block .subscribe .social li:hover {
    opacity: 1;
}
@media (min-width: 1146px) {
    footer .footer-block .left p {
        max-width: 600px;
        margin: 38px 0;
    }
    footer .footer-block .footer-list h5 {
        margin-bottom: 15px;
    }
    footer .footer-block .footer-list ul li {
        padding: 7px 0;
    }
}
@media (max-width: 1145px) {
    footer {
        text-align: center;
    }
    footer .footer-block {
        flex-direction: column;
        margin: 0 30px;
    }
    footer .footer-block .left {
        margin-bottom: 50px;
    }
    footer .footer-block .left .footer-inner img {
        margin: 5px auto 0;
    }
    footer .footer-block .subscribe .social {
        text-align: center;
    }

}
@media (max-width: 680px) {
    footer {
        padding: 10px;
    }
    footer .footer-block {
        text-align: center;
    }
    footer .footer-block .lists {
        flex-direction: column;
    }
    footer .footer-block .lists {
        display: flex;
    }
    footer .footer-block .footer-list {
    margin-bottom: 30px;
    flex-basis: 50%;
    }
}
/* Start Footer Bottom */
.footer-bottom {
    border-top: 1px solid #3a3a3a;
    text-align: center;
    padding: 20px 0;
}
.footer-bottom .pay img {
    margin-left: 10px;
    width: 36px;
    transition: 0.3s;
    filter: grayscale(1);
}
.footer-bottom .pay img:hover {
    filter: grayscale(0);
}
.footer-bottom p {
    color: #888888;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 10px;
}
.footer-bottom p span {
    color: var(--main-color);
}
@media (min-width: 1146px) {
    .footer-bottom {
        display: flex;
        justify-content: space-between;
    }
    .footer-bottom .pay {
        order: 2;
    }
}