:root {
    --theme-color: #ec8951;
    --bs-table-color: #222;
}

.category-block .category-image {
    margin: 0 auto;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 100%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}

.category-block .category-image .icon {
    width: 40px;
}

.category-block .category-image .furniture-icon {
    width: unset;
}

.category-block .category-image.svg-image {
    background-color: #ffffff;
}

.category-block .category-image.svg-image svg {
    width: 50px;
    fill: var(--theme-color);
}

.category-block .category-details {
    margin-top: 15px;
    text-align: center;
}

.category-block .category-details h5 {
    font-weight: 700;
    margin: 0 auto;
    transition: 0.5s ease;
    text-transform: uppercase;
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
}

.category-block .category-details h6 {
    margin-bottom: -6px;
    margin-top: -4px;
}

.category-block:hover .category-image {
    background-color: var(--theme-color);
    transition: all 0.3s ease-in-out;
}

.category-block:hover .category-image img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
}

.category-block:hover .category-image svg {
    fill: #ffffff;
    transition: all 0.3s ease-in-out;
}

.category-block:hover .category-details h5 {
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
}

.category-nft {
    padding-bottom: 12px;
}

.category-nft a {
    border: 1px solid #eeeeee;
    display: block;
    width: max-content;
    padding: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 5px 5px 8px 1px #dfdfdf;
}

.category-nft .category-image {
    margin: 0 auto;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 100%;
    width: 110px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    border-radius: 9px;
    overflow: hidden;
}

.category-nft .category-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.category-nft .category-details {
    margin-top: 3px;
    text-align: center;
}

.category-nft .category-details h5 {
    font-weight: 700;
    margin: 0 auto;
    transition: 0.5s ease;
    text-transform: uppercase;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.category-nft .category-details h6 {
    margin-bottom: -6px;
    margin-top: -4px;
}

.category-nft:hover .category-details h5 {
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
}

.category-border {
    background-color: #f1f5f4;
    padding: 20px 10px;
}

.category-border .border-padding {
    padding: 0 10px;
}

.category-border div .category-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.category-border div .category-banner img,
.category-border div .category-banner .bg-size {
    transform: scale(1);
    transition: 0.5s ease;
}

.category-border div .category-banner:hover img,
.category-border div .category-banner:hover .bg-size {
    transform: scale(1.1) translateX(14px);
    transition: 0.5s ease;
}

.category-border div .category-banner:hover h2 {
    color: var(--theme-color);
    transition: 0.5s ease;
}

.category-border div .category-banner .category-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-border div .category-banner .category-box h2 {
    background-color: #ffffff;
    display: inline-block;
    padding: 20px 35px;
    margin-bottom: 0;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.4);
    transition: 0.5s ease;
}

.category-border.category-border-2 div .category-banner .category-box h2 {
    font-size: 26px;
    padding: 16px 17px;
    text-transform: capitalize;
}

.category-bg-section .category-border-2:nth-child(2) {
    padding-top: 0;
}

.category-bg {
    padding: 40px 50px;
    position: relative;
    z-index: 1;
}

.category-bg .image-block img {
    width: 100%;
}

.category-bg .image-block.even:after {
    bottom: 94%;
}

.category-bg .image-block:after {
    content: "";
    position: absolute;
    background-color: var(--theme-color);
    height: 0;
    width: 40px;
    z-index: 1;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    transition: 0.5s ease;
    margin-top: -40px;
}

.category-bg .image-block:hover:after {
    opacity: 0.3;
    transition: 0.5s ease;
    height: 80px;
}

.category-bg .contain-block {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #ffffff;
}

.category-bg .contain-block.even:after {
    top: 94%;
}

.category-bg .contain-block:after {
    content: "";
    position: absolute;
    background-color: var(--theme-color);
    height: 0;
    width: 40px;
    z-index: 1;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    transition: 0.5s ease;
    bottom: 94%;
}

.category-bg .contain-block:hover h2 {
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
}

.category-bg .contain-block:hover h6 span {
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
}

.category-bg .contain-block:hover .category-btn {
    background-image: linear-gradient(30deg, #222222 50%, transparent 50%);
    border: 2px solid #222222;
    transition: all 0.3s ease-in-out;
}

.category-bg .contain-block:hover:after {
    opacity: 0.3;
    transition: all 0.3s ease-in-out;
    height: 80px;
}

.category-bg .contain-block h2 {
    margin-bottom: 0;
    margin-top: 15px;
    transition: 0.5s ease;
    color: #222222;
}

.category-bg .contain-block h6 {
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    line-height: 1;
    margin-bottom: 0;
}

.category-bg .contain-block h6 span {
    color: #7f786d;
    letter-spacing: 0.03em;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.category-bg .contain-block .category-btn {
    letter-spacing: 0.07em;
    margin-bottom: 25px;
    margin-top: 25px;
    transition: all 0.3s ease-in-out;
}

.category-bg:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-color: var(--theme-color);
    opacity: 0.3;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.category-m .slick-list {
    margin: 0 -10px;
}

.category-m .slick-slide > div {
    margin: 0 10px;
}

.category-m .category-wrapper {
    border: 1px solid #eeeeee;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.category-m .category-wrapper > div:after,
.category-m .category-wrapper > div:before {
    content: "";
    width: 1px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    background: var(--theme-color);
    transition-delay: 0s;
}

.category-m .category-wrapper > div:before {
    left: 0;
    top: 0;
}

.category-m .category-wrapper > div:after {
    right: 0;
    bottom: 0;
}

.category-m .category-wrapper .bg-size {
    max-width: 100px;
    margin: 0 auto;
}

.category-m .category-wrapper:after,
.category-m .category-wrapper:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    transition: all 0.2s linear;
    background: var(--theme-color);
}

.category-m .category-wrapper:before {
    right: 0;
    top: 0;
}

.category-m .category-wrapper:after {
    left: 0;
    bottom: 0;
}

.category-m .category-wrapper:hover {
    transition: all 0.3s ease-in-out;
}

.category-m .category-wrapper:hover:after,
.category-m .category-wrapper:hover:before {
    transition-delay: 0s;
    width: 100%;
}

.category-m .category-wrapper:hover > div:after,
.category-m .category-wrapper:hover > div:before {
    transition-delay: 0.2s;
    height: 100%;
}

.category-m .category-wrapper img {
    display: inline;
}

.category-m .category-wrapper h4 {
    text-transform: uppercase;
    color: #2d2a25;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 25px;
    padding-top: 25px;
}

.category-m .category-wrapper .btn {
    margin-top: 20px;
}

.category-m .category-wrapper .category-link li {
    display: block;
    text-transform: capitalize;
    margin-top: 5px;
}

.category-m .category-wrapper .category-link li:first-child {
    margin-top: 0;
}

.category-m .category-wrapper .category-link li a {
    color: #948e8c;
}

.category-m .category-wrapper .category-link li a:hover {
    color: var(--theme-color);
}

.category-m.w-bg .category-wrapper {
    background-color: #ffffff;
    border-color: transparent;
    padding-bottom: 20px;
}

.category-m.w-bg .category-wrapper h4 {
    padding-top: 0;
}

.category-m.w-bg .category-wrapper .bg-size {
    margin: 20px auto 0;
}

.category-m.w-bg .category-wrapper img {
    max-width: 140px;
    margin: 10px auto 0;
}

.background {
    background-color: #f1f5f4;
    padding: 20px 10px;
    margin: 0;
}

.background .contain-bg {
    width: 100%;
    background-color: #ffffff;
    padding-top: 45px;
    padding-bottom: 45px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.background .contain-bg:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.background .contain-bg h4 {
    color: #222222;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.background .contain-bg:hover:after {
    opacity: 0.07;
    transition: all 0.3s ease-in-out;
}

.background .contain-bg:hover h4 {
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
}

.category-bake {
    margin-top: -40px;
}

.category-bake .category-box {
    padding: 30px 0;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.category-bake .category-box h3 {
    color: #000000;
    text-transform: capitalize;
    font-weight: 600;
}

.category-bake .category-box img {
    width: 25%;
    margin-bottom: 12px;
}

.img-category {
    text-align: center;
}

.img-category .img-sec {
    border-radius: 100%;
    margin: 0 auto;
    width: 85%;
    border: 3px solid #ffffff;
    transition: all 0.3s ease-in-out;
}

.img-category h4 {
    text-transform: capitalize;
    margin-top: 12px;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.img-category .pattern-bg {
    background-image: url("../images/vector-pattern/1.jpg");
    border-radius: 100%;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-position: 0 0;
    background-repeat: repeat-y;
    transition: all 0.3s ease-in-out;
}

.img-category .pattern-bg .img-sec {
    width: 100%;
    border: none !important;
}

.img-category .pattern-bg.bg2 {
    background-image: url("../images/vector-pattern/2.jpg");
}

.img-category .pattern-bg.bg3 {
    background-image: url("../images/vector-pattern/3.jpg");
}

.img-category .pattern-bg.bg4 {
    background-image: url("../images/vector-pattern/4.jpg");
}

.img-category .pattern-bg.bg5 {
    background-image: url("../images/vector-pattern/5.jpg");
}

.img-category .pattern-bg.bg6 {
    background-image: url("../images/vector-pattern/6.jpg");
}

.img-category:hover .img-sec,
.img-category.hover-effect .img-sec {
    border: 3px solid var(--theme-color);
    transition: all 0.3s ease-in-out;
}

.img-category:hover .pattern-bg,
.img-category.hover-effect .pattern-bg {
    animation: 15s linear 0s infinite normal none running animatedBackground2;
    transition: all 0.3s ease-in-out;
}

.deal-category {
    position: relative;
}

.deal-category .deal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-category .deal-content h2 {
    text-transform: capitalize;
}

.gradient-category {
    text-align: center;
    margin-top: 18px;
}

.gradient-category .gradient-border {
    background: #654ea3;
    background: linear-gradient(
        to right,
        var(--theme-color),
        var(--theme-color2)
    );
    padding: 3px;
    width: 100%;
    height: 220px;
    position: relative;
    z-index: 1;
    transform: scale(0.94);
}

.gradient-category .gradient-border .img-sec {
    background-color: #efefef;
    width: calc(100% - 1px);
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.gradient-category .gradient-border .img-sec:after {
    content: "";
    background-image: url("../images/vector-pattern/wave-bg.jpg");
    background-position: 0 0;
    background-repeat: repeat-y;
    width: 100%;
    height: 100%;
    animation: animatedBackground2 15s linear infinite;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    z-index: -1;
}

.gradient-category .gradient-border .img-sec img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-category h4 {
    text-transform: capitalize;
    margin-top: 12px;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.gradient-category:hover .gradient-border .img-sec:after,
.gradient-category.hover-effect .gradient-border .img-sec:after {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

@keyframes animatedBackground2 {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 0 100%;
    }
}

.category-slide {
    margin-bottom: -10px;
}

.category-slide .img-category h4 {
    font-size: 14px;
}

.category-slide .img-category .img-sec {
    width: 65%;
}

.vector-category {
    padding-top: 0;
    margin-top: -70px;
}

.vector-category .container {
    background-color: #ffffff;
    position: relative;
    padding-top: 30px;
    box-shadow: 0 0 8px #dddddd;
    padding-bottom: 30px;
}

.vector-category .margin-default > div {
    margin-bottom: 0;
}

.vector-category .category-slide .slick-prev:before {
    content: "\f104";
}

.vector-category .category-slide .slick-next:before {
    content: "\f105";
}

.vector-category .category-slide .slick-prev,
.vector-category .category-slide .slick-next {
    z-index: 1;
    background: #ffffff;
    padding: 0px 8px 2px 10px;
    height: auto;
    width: auto;
    line-height: 1;
    box-shadow: 0 0 8px #dddddd;
}

.vector-category .category-slide .slick-prev:before,
.vector-category .category-slide .slick-next:before {
    color: black;
    font: normal normal normal 28px/1 FontAwesome;
}

.vector-category .category-slide .img-category .img-sec {
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 0;
}

.vector-category .category-slide .img-category .img-sec img,
.vector-category .category-slide .img-category .img-sec svg {
    width: 60px;
}

.vector-category.vector-style-2 {
    padding-top: 30px;
    margin-top: 0;
    box-shadow: 0 0 8px #dddddd;
    padding-bottom: 40px;
}

.vector-category.vector-style-2 .container {
    padding: 0;
    box-shadow: none;
}

.vector-category.vector-style-2 .category-slide .img-category {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vector-category.vector-style-2 .category-slide .img-category h4 {
    margin: 0;
    color: #565656;
    font-weight: 500;
    font-size: 16px;
}

.vector-category.vector-style-2 .category-slide .img-category .img-sec {
    width: 58px;
    height: 58px;
    margin-right: 22px;
    margin-left: 0;
}

.vector-category.vector-style-2 .category-slide .img-category .img-sec img {
    width: 35px;
}

.category-img-wrapper .category-wrap .category-content {
    text-align: center;
    padding-top: 14px;
}

.category-img-wrapper .category-wrap .category-content .bg-size,
.category-img-wrapper .category-wrap .category-content img {
    filter: none;
    transition: all 0.3s ease-in-out;
}

.category-img-wrapper .category-wrap .category-content h3 {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    color: #000000;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: calc(0px + (4 - 0) * ((100vw - 320px) / (1920 - 320)));
}

.category-img-wrapper .category-wrap .category-content a {
    color: #909090;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.category-img-wrapper .category-wrap .category-content.top-content {
    padding-top: 0;
    padding-bottom: 14px;
}

.category-img-wrapper .category-wrap:hover .bg-size,
.category-img-wrapper .category-wrap:hover img {
    filter: saturate(0.3);
    transition: all 0.3s ease-in-out;
}

.category-style-1 .category-block .category-image {
    width: 85%;
    height: auto;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.category-style-1 .category-block .category-image:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 38px;
    background-color: var(--theme-color);
    opacity: 0.2;
    z-index: -1;
}

.category-style-1 .category-block:hover .category-image {
    background-color: transparent;
}

.category-style-1 .category-block:hover .category-image img {
    filter: none;
}

.button-dark.category-button .btn {
    border: 2px solid #232323;
    background-color: #232323;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.button-dark.category-button .btn:before {
    display: none;
}

.button-dark.category-button .btn img {
    filter: invert(1);
    width: 35px;
    margin-right: 14px;
}

.button-dark.category-button .btn:hover {
    background-color: #232323;
    transition: all 0.3s ease-in-out;
}

.category-rounded .category-block .category-details h5 {
    padding: 2px 14px;
    display: inline-block;
    background-color: var(--theme-color);
    border-radius: 15px;
    color: #ffffff;
}

.category-rounded .category-block .category-image.svg-image {
    border-radius: 10px;
}

.category-width .category-block .category-image img {
    width: 40px;
}

.vegetables-category .slick-list {
    padding-bottom: 3px;
}

.vegetables-category .category-boxes {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 18px;
    border-radius: 0;
}

.vegetables-category .category-boxes .img-sec {
    width: 52%;
    margin: 0 auto 12px;
}

.vegetables-category .category-boxes h4 {
    margin-bottom: 0;
    color: #222222;
}

.tbar {
    background: #161616;
    justify-content: center;
    text-align: center;
    height: 22px;
}

.tbar .row .container p {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .clix {
        display: block !important;
    }

    .ulx {
        display: none;
    }
}

.ulx {
    list-style: none;
    padding: 8px 0;
    margin: 0;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.ulx li {
    position: relative;
    width: 100%;
}

.ulx li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.ulx li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #d6385d, #f9664f) 1;
    transition: width 0.3s ease;
    z-index: -1;
}

.ulx li a {
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.ulx li form {
    width: 100%;
}

.ulx li form a {
    display: flex;
    width: 100%;
    padding: 10px 16px;
    box-sizing: border-box;
}

.ulx li a:hover::before {
    width: 100%;
}

.ulx li a:hover {
    color: #4a6cf7;
    transform: translateX(5px);
}

.ulx li a i {
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.ulx li a:hover i {
    transform: scale(1.2);
    color: #4a6cf7;
}

.ulx li:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
}

.onhover-show-div {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.3s ease;
}

.parent:hover .onhover-show-div {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.quickview-modal {
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

.quickview-img {
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
}

.quickview-img img {
    object-fit: contain;
    border-radius: 10px;
}

.quickview-content {
    padding: 35px !important;
}

.quickview-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-box {
    margin: 10px 0 15px;
}

.new-price {
    font-size: 24px;
    color: #ff4c3b;
    font-weight: 700;
}

.quickview-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quickview-content .btn {
    padding: 10px 20px;
    border-radius: 8px;
}

.custom-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    color: white;
    background: #000;
}

.custom-modal {
    background: #fff;
    border-radius: 18px;
    border: none;
    padding: 0;
    overflow: hidden;
}

.quickview-content {
    padding: 30px !important;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 12px;
}

.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    filter: invert(1);
}

.new-price {
    color: #ff4c3b;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 8px;
}

.qv-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qv-btn {
    border-radius: 30px;
    padding: 10px 18px;
    border: none;
    transition: 0.3s;
    font-weight: 500;
}

.cart-btn {
    color: #000;
}

.cart-btn:hover {
    transform: scale(1.05);
}

.wishlist-btn:hover {
    background: #ff4c3b;
    color: #fff;
}

.buy-btn:hover {
    transform: scale(1.05);
}

.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-close i {
    color: #fff;
    font-size: 18px;
}

.quickview-img {
    background: linear-gradient(135deg, #fff0f5, #f3eaff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
}

.quickview-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #090909;
}

#qv-description {
    color: #000000;
}

#qv-name {
    font-family:
        "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.view-btn:hover {
    background: #6a5cff;
    color: #fff;
    transform: translateY(-2px);
}

.qv-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.view-btn {
    width: 100%;
    text-align: center;
}

.in-stock {
    color: #28a745;
    font-weight: 600;
}

.out-stock {
    color: #dc3545;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    font-size: 14px;
}

.quickview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#qv-stock {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.out-stock {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.view-btn {
    width: 100%;
    border-radius: 30px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #000;
    color: #fff;
}

.buy-btn {
    border-radius: 30px;
}

.quick-view-modal .modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-body.modern-layout {
    padding: 0;
    background: #fff;
}

.quickview-img-container {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    height: 100%;
    min-height: 400px;
}

#qv-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

#qv-image:hover {
    transform: scale(1.05);
}

.quickview-details {
    padding: 40px !important;
    display: flex;
    flex-direction: column;
}

#qv-name {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
}

#qv-stock {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.in-stock {
    background: #dcfce7;
    color: #15803d;
}

.out-stock {
    background: #fee2e2;
    color: #b91c1c;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.new-price {
    font-size: 26px;
    font-weight: 800;
    color: #ffa874;
}

.old-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

#qv-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.qv-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.btn-modern {
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cart-btn {
    background: #ff9b9b;
    color: white;
    width: 100%;
}

.cart-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.buy-btn {
    background: #ff4c3b;
    color: white;
    width: 100%;
}

.buy-btn:hover {
    background: #e63e30;
    transform: translateY(-2px);
}

.wishlist-btn {
    width: 50px;
    background: #f3f4f6;
    color: #1a1a1a;
    font-size: 20px;
}

.wishlist-btn:hover {
    background: #fee2e2;
    color: #ff4c3b;
}

.view-details-link {
    margin-top: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.view-details-link:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.custom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 50;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.2s;
}

.custom-close:hover {
    transform: rotate(90deg);
}
.product-card .img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background-color: #f8f9fa;
}

.product-card .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cart-offcanvas .media img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.quick-view-modal .view-main-slider img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

img {
    max-width: 100%;
    height: auto;
}

.product-wrapper-grid .col-grid-box {
    margin-bottom: 20px;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.product-card .product-image {
    transition: transform 0.5s ease;
}
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4c3b;
    color: #fff;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 4px;
    z-index: 2;
}

.product-box {
    transition: all 0.3s ease;
}

.product-box:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    height: 380px;
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-5 .slick-prev,
.product-5 .slick-next {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-5 {
    position: relative;
}

.product-5 .slick-prev,
.product-5 .slick-next {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;

    display: flex !important;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

    position: absolute;

    top: 191px !important;
    transform: translateY(-50%) !important;
}

.product-5 .slick-prev {
    left: 5px;
}

.product-5 .slick-next {
    right: 5px;
}

.product-5 .slick-prev:before,
.product-5 .slick-next:before {
    content: "" !important;
}

.product-5 .slick-prev::after {
    content: "←";
    font-size: 16px;
    color: #333;
}

.product-5 .slick-next::after {
    content: "→";
    font-size: 16px;
    color: #333;
}

.product-5 .slick-prev:hover,
.product-5 .slick-next:hover {
    background: #000;
}

.product-5 .slick-prev:hover::after,
.product-5 .slick-next:hover::after {
    color: #fff;
}
.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.home {
    position: relative;
    min-height: 60vh;
    height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .home {
        min-height: 45vh;
    }

    .home img.bg-img {
        object-fit: cover;
        object-position: calc(50% - 80px) center;
    }
}

@media (max-width: 480px) {
    .home {
        min-height: 35vh;
    }

    .home img.bg-img {
        object-fit: cover;
        object-position: calc(50% - 80px) center;
    }
}

.slider-contain h1 {
    font-size: 48px;
    line-height: 1.2;
}

.slider-contain h4 {
    font-size: 18px;
}

@media (max-width: 768px) {
    .slider-contain h1 {
        font-size: 32px;
    }

    .slider-contain h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slider-contain h1 {
        font-size: 24px;
    }

    .slider-contain h4 {
        font-size: 14px;
    }
}

.slider-contain {
    padding: 20px;
}

@media (max-width: 480px) {
    .slider-contain {
        text-align: center;
        padding: 10px;
    }
}

.home .container-lg {
    position: relative;
    z-index: 2;
}

.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.header-tools {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .bg-img {
        object-position: 85% center;
    }
}
