* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    list-style: none;
    text-decoration: none;
    font-family: "Geist", sans-serif;
}

/* Variables */
:root {
    --theme-bg-color: #ffffff;
    --gray-color: #eeeeee;
    --light-gray-color: #fafafa;
    --deep-gray-color: #838181;
    --black-color: #000000;
    --cancel-color: #ee544b;
    --default-bg-color: #f5f5f5;
    --whishlist-bg-color: #d5d5d5;
    --rating-color: #ffc03b;
    --outline-color: rgba(124, 88, 223, 0.564);
}

/* :root[data-theme="dark"] {
    --theme-bg-color: #1E1E1E;
    --gray-color: #2C2C2C;
    --light-gray-color: #2F2F2F;
    --deep-gray-color: #AAAAAA;
    --black-color: #FFFFFF;
    --cancel-color: #FF6B6B;
    --default-bg-color: #252525;
    --whishlist-bg-color: #3A3A3A;
    --rating-color: #FFC03B;
} */

/* Custom Scrollbar */
html::-webkit-scrollbar {
    width: 0.7rem;
    background-color: var(--light-gray-color);
}

html::-webkit-scrollbar-thumb {
    border-radius: 4rem;
    background-color: var(--gray-color);
    -webkit-border-radius: 4rem;
    -moz-border-radius: 4rem;
    -ms-border-radius: 4rem;
    -o-border-radius: 4rem;
}

img {
    width: 100%;
}

section {
    padding: 2rem 0 3rem;
}

body {
    color: var(--black-color);
    background-color: var(--theme-bg-color);
}

.container {
    max-width: 1200px;
    margin: auto;
    width: 90%;
}

/* Button */
.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 6px 6px 6px 18px;
    font-weight: 500;
    border: none;
    outline: none;
    background-color: var(--theme-bg-color);
    color: var(--black-color);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    transform: translateX(-101%);
    transition: all 0.3s ease;
    z-index: -1;
    -webkit-transform: translateX(-101%);
    -moz-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    -o-transform: translateX(-101%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.btn:hover {
    color: var(--theme-bg-color);
}

.btn i {
    padding: 0.5rem;
    background-color: var(--black-color);
    color: var(--theme-bg-color);
    border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn:hover i {
    color: var(--black-color);
    background-color: var(--theme-bg-color);
}

a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}

/*
*
*
* [ ====== Main Page ======]
*
*
*/

/* ====== Header Section Start ====== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header.shadow {
    background: rgba(159, 155, 155, 0.163);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    position: relative;
}

.nav .nav-top-bar {
    width: 100%;
    max-width: 55%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black-color);
}

.logo .image-container {
    width: 40px;
    height: 40px;
    overflow: hidden;
    /* border: 2px solid var(--gray-color); */
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-icon {
    display: grid;
    row-gap: 5px;
    padding: 14px 12px;
    cursor: pointer;
    z-index: 200;
    transition: 0.3s;
    border-radius: 0.7rem;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-border-radius: 0.7rem;
    -moz-border-radius: 0.7rem;
    -ms-border-radius: 0.7rem;
    -o-border-radius: 0.7rem;
}

.menu-icon div {
    display: block;
    height: 2.6px;
    width: 25px;
    transition: 0.3s;
    background-color: var(--black-color);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.move .line1 {
    rotate: 45deg;
    translate: 5px 5px;
}

.move .line2 {
    opacity: 0;
}

.move .line3 {
    rotate: -45deg;
    translate: 5px -5px;
}

.nav-icons {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    z-index: 200;
}

.nav-icons i {
    font-size: 1.1rem;
    padding: 10px;
    cursor: pointer;
    border: 2px solid var(--gray-color);
    border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.nav-icons i:hover {
    background-color: var(--black-color);
    color: var(--theme-bg-color);
}

.nav-icons .say-hi {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 3px 10px 3px 3px;
    cursor: pointer;
    border: 2px solid var(--gray-color);
    border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.nav-icons .say-hi i {
    font-size: 1.1rem;
    cursor: pointer;
    border: 2px solid var(--gray-color);
    border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.nav-icons .say-hi:hover {
    border-color: rgba(37, 211, 101, 0.409);
}

.nav-icons .say-hi:hover i {
    color: var(--theme-bg-color);
    background-color: #25d366;
}

.say-hi .handwave {
    display: inline-block;
    transform-origin: 70% 70%;
}

.say-hi:hover .handwave {
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(4.5px);
    z-index: 106;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.navbar.active {
    display: flex;
}

.navbar a {
    padding: 6px 16px;
    font-size: 1.3rem;
    color: var(--black-color);
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.navbar a:hover {
    border-color: var(--black-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* ====== Header Section End ====== */

/* ====== Home Section Start ====== */

.home {
    position: relative;
}

.home .home-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    height: 27rem;
    background-color: var(--default-bg-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;

    transition:
        background-image 1s ease-in-out,
        opacity 0.5s ease-in-out;
    -webkit-transition:
        background-image 1s ease-in-out,
        opacity 0.5s ease-in-out;
    -moz-transition:
        background-image 1s ease-in-out,
        opacity 0.5s ease-in-out;
    -ms-transition:
        background-image 1s ease-in-out,
        opacity 0.5s ease-in-out;
    -o-transition:
        background-image 1s ease-in-out,
        opacity 0.5s ease-in-out;
}

#home-bg {
    transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
}

.home .home-bg h1 {
    color: var(--theme-bg-color);
    font-weight: 600;
    font-size: 3.9rem;
}

.home .home-bg p {
    text-align: center;
    font-size: 0.9rem;
    max-width: 20rem;
    color: var(--theme-bg-color);
}

.home .cat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.home .cat-bg {
    display: flex;
    align-items: last baseline;
    justify-content: space-between;
    width: 100%;
    height: 9rem;
    background-color: var(--default-bg-color);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1.2rem;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.home .cat-bg-1 {
    background-image: url("../images/hero-cat-bg.png");
}

.home .cat-bg-2 {
    background-image: url("../images/hero-cat-bga-2.png");
}

.home .cat-bg h2 {
    font-size: 1.48rem;
    line-height: 25px;
    font-weight: 400;
}

.home .cat-bg .btn {
    padding: 6px 10px;
    font-size: 0.7rem;
}

/* ====== Home Section End ====== */

/* ====== Heading Section Start ====== */

.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.heading h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.heading .category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heading .category-btn button {
    width: 100%;
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    outline: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.7rem;
    background-color: var(--theme-bg-color);
    border: 2px solid var(--gray-color);
    border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.heading .category-btn button.active {
    background-color: var(--black-color);
    color: var(--theme-bg-color);
}

.heading .category-btn button:hover {
    background-color: var(--black-color);
    color: var(--theme-bg-color);
}

/* ====== Heading Section End ====== */

/* ====== Video Section Start ====== */

.video {
    border-top: 2px solid var(--gray-color);
    border-bottom: 2px solid var(--gray-color);
}

.video-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 2rem;
}

.video-content .box {
    display: grid;
    row-gap: 0.7rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.video-content .box .video-box {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--default-bg-color);
    overflow: hidden;
    outline: 3px solid transparent;
    outline-offset: 4px;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.video-content .box:hover .video-box {
    outline-color: var(--outline-color);
}

.video-content .box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content .box .box-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.1rem;
}

.video-content .box .box-text h3 {
    font-size: 1rem;
    font-weight: 500;
}

/* ====== Video Section End ====== */

/* ====== Popular Section Start ====== */

.popular {
    border-top: 2px solid var(--gray-color);
    border-bottom: 2px solid var(--gray-color);
}

.popular-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 2rem;
}

.popular-content .box {
    display: grid;
    row-gap: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.popular-content .box .image-box {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--default-bg-color);
    overflow: hidden;
    outline: 3px solid transparent;
    outline-offset: 4px;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.popular-content .box:hover .image-box {
    outline-color: var(--outline-color);
}

.popular-content .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content .box .box-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.1rem;
}

.popular-content .box .box-text h3 {
    font-size: 1rem;
    font-weight: 500;
}

.popular-content .box .box-text span {
    font-size: 0.89rem;
    font-weight: 400;
}

.popular-content .box button {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    width: 30px;
    height: 30px;
    color: var(--theme-bg-color);
    cursor: pointer;
    background-color: var(--whishlist-bg-color);
    border: 2px solid var(--default-bg-color);
    border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.popular-content .box button.active {
    background-color: var(--cancel-color);
    border: 2px solid #dc463e;
}

.popular-content .box button:hover {
    background-color: var(--cancel-color);
    border: 2px solid #dc463e;
}

.popular-content .box button i {
    font-size: 1rem;
}

/* ====== Popular Section End ====== */

/* ====== Offer Section Start ====== */

.offer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    background: #dcbdbd;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.offer span {
    font-size: 0.8rem;
    padding: 5px 14px;
    border: 1.5px solid var(--black-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.offer h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.offer .btn {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* ====== Offer Section End ====== */

/* ====== Review Section Start ====== */

.review .heading {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin-top: 3rem;
}

.review .heading h2 {
    font-size: 2.2rem;
}

.review .client-box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1rem;
}

.review .client-box-container .box {
    position: relative;
    height: 145px;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--default-bg-color);
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.review .client-box-container .box::before {
    content: "See Review";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--theme-bg-color);
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
    border-radius: 1.5rem;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -ms-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.review .client-box-container .box:hover::before {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.review .client-box-container .box:hover img {
    filter: brightness(0.7) blur(1px);
    transform: scale(1.02);
    transition: all 0.5s ease;
    -webkit-filter: brightness(0.7) blur(1px);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.review .client-box-container .box.combined {
    grid-column: span 2;
}

.review .client-box-container .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

/* review popup */
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: var(--theme-bg-color);
    padding: 1rem;
    border-radius: 1.5rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.popup-content .box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.popup-content .box .popup-main-img {
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    object-fit: cover;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.popup-content .box .data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.popup-content .box .data h3 {
    font-size: 1.3rem;
}

.popup-content .box .data .dandv {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.69rem;
    color: var(--deep-gray-color);
    flex-wrap: wrap;
}

.popup-content .box .data .dandv i {
    color: #4caf50;
}

.popup-content .stars {
    text-align: center;
    margin-bottom: 1rem;
}

.popup-content .stars i {
    color: var(--rating-color);
    font-size: 1.2rem;
}

.popup-content .review-text-container {
    position: relative;
    margin-bottom: 2.5rem;
}

.popup-content .review-text-container img {
    position: absolute;
    top: -20px;
    left: 0;
    width: 40px;
    height: 40px;
    rotate: 180deg;
    opacity: 0.6;
}

.popup-content .review-text {
    text-indent: 3rem;
    font-size: 0.9rem;
    color: var(--deep-gray-color);
}

.popup-content .gallery {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.popup-content .gallery::-webkit-scrollbar {
    height: 0.3rem;
}

.popup-content .gallery::-webkit-scrollbar-track {
    background: var(--light-gray-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.popup-content .gallery::-webkit-scrollbar-thumb {
    background: var(--gray-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.popup-content .gallery::-webkit-scrollbar-thumb:hover {
    background: var(--deep-gray-color);
}

.popup-content .gallery img {
    width: 100px;
    height: 150px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #ccc;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.popup-content .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    font-size: 2rem;
    cursor: pointer;
}

.popup-content {
    animation: fadeIn 0.5s ease-in-out;
    -webkit-animation: fadeIn 0.5s ease-in-out;
}

.popup.hide {
    animation: fadeOut 0.3s ease-in-out forwards;
    -webkit-animation: fadeOut 0.3s ease-in-out forwards;
}

.popup-content.hide {
    animation: scaleOut 0.3s ease-in-out forwards;
    -webkit-animation: scaleOut 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes scaleOut {
    from {
        transform: scale(1);
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    to {
        transform: scale(0.95);
        opacity: 0;
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
    }
}

@media (max-width: 400px) {
    .review .client-box-container .box.combined {
        grid-column: span 1;
    }
}

/* ====== Review Section End ====== */

/* ====== Also Like Section Start ====== */

.alsolike {
    margin-bottom: 2rem;
}

.alsolike .heading {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.alsolike .heading h2 {
    font-size: 2.2rem;
}

.alsolike .alsolike-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 2rem;
    margin-top: 3rem;
}

.alsolike .alsolike-content .box {
    display: grid;
    row-gap: 0.7rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.alsolike .alsolike-content .box .image-box {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: var(--default-bg-color);
    overflow: hidden;
    outline: 3px solid transparent;
    outline-offset: 4px;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.alsolike .alsolike-content .box:hover .image-box {
    outline-color: var(--outline-color);
}

.alsolike .alsolike-content .box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alsolike .alsolike-content .box .image-box span {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 7px;
    font-size: 0.7rem;
    color: var(--cancel-color);
    background-color: rgba(238, 83, 75, 0.098);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.alsolike .alsolike-content .box .box-text {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 0.2rem;
}

.alsolike .alsolike-content .box .box-text h3 {
    font-size: 0.9rem;
    font-weight: 500;
}

.alsolike .alsolike-content .box .box-text .rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
}

.alsolike .alsolike-content .box .box-text .rating .star {
    color: var(--rating-color);
}

.alsolike .alsolike-content .box .box-text .price {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.alsolike .alsolike-content .box .box-text .price span {
    color: var(--deep-gray-color);
    text-decoration: line-through;
}

.alsolike-failed {
    text-align: center;
    color: var(--cancel-color);
}

/* ====== Also Like Section End ====== */

/* ====== Delivery Partner Start ====== */
.delivery-partner {
    margin-bottom: 4rem;
}

.delivery-partner .heading {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.delivery-partner .heading h2 {
    font-size: 2.2rem;
}

.delivery-partner .image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.delivery-partner .image-container .image-box {
    width: 15rem;
    height: 10rem;
    overflow: hidden;
    background-color: var(--default-bg-color);
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.delivery-partner .image-container .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====== Delivery Partner End ====== */

/* ====== Newsletter Section Start ====== */

.newsletter {
    position: relative;
    z-index: 10;
    max-width: 860px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem;
    margin-bottom: -5rem;
    background-color: #315272;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.newsletter .newsletter-text h3 {
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--theme-bg-color);
}

.newsletter form {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.newsletter form input {
    width: 70%;
    outline: none;
    border: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    background: var(--light-gray-color);
    border-radius: 50px;
}

.newsletter form .btn:hover {
    background-color: var(--black-color);
    color: var(--theme-bg-color);
}

/* ====== Newsletter Section End ====== */

/* ====== Footer Section Start ====== */

.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, auto));
    gap: 1rem;
    padding: 8.5rem 1.8rem 1.8rem 1.8rem;
    background-color: var(--gray-color);
    border-radius: 1.5rem 1.5rem 0 0;
    -webkit-border-radius: 1.5rem 1.5rem 0 0;
    -moz-border-radius: 1.5rem 1.5rem 0 0;
    -ms-border-radius: 1.5rem 1.5rem 0 0;
    -o-border-radius: 1.5rem 1.5rem 0 0;
}

.footer-box {
    display: flex;
    flex-direction: column;
}

.footer-box h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-box p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: var(--deep-gray-color);
}

.footer-box a {
    color: var(--text-color);
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
    color: var(--deep-gray-color);
}

.footer-box a:hover {
    color: var(--main-color);
}

.social {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.social i {
    padding: 5px;
    background: var(--theme-bg-color);
    font-size: 18px;
    color: var(--black-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.social i:hover {
    color: var(--theme-bg-color);
    background: var(--black-color);
}

/* ====== Footer Section End ====== */

/* ====== Copyright Section Start ====== */

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    padding: 30px;
    margin-bottom: 2rem;
    border-top: 2px solid var(--theme-bg-color);
    background-color: var(--gray-color);
    border-radius: 0 0 1.5rem 1.5rem;
    -webkit-border-radius: 0 0 1.5rem 1.5rem;
    -moz-border-radius: 0 0 1.5rem 1.5rem;
    -ms-border-radius: 0 0 1.5rem 1.5rem;
    -o-border-radius: 0 0 1.5rem 1.5rem;
}

.copyright p {
    font-size: 0.75rem;
    color: var(--deep-gray-color);
}

.copyright a {
    color: var(--outline-color);
    text-decoration: underline;
}

.copyright .cards {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copyright .cards .card {
    width: 60px;
    height: 30px;
    background-color: var(--default-bg-color);
    overflow: hidden;
    border-radius: 0.8rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}

.copyright .cards .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====== Copyright Section End ====== */

/* ====== Scroll Top Section Start ====== */

.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: -100%;
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 20px;
    background: var(--black-color);
    color: var(--theme-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 40%;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.scroll-top:hover {
    opacity: 100%;
    transition: 0.3s all ease;
}

.scroll-top.active {
    right: 1.5rem;
    transition: 0.3s;
}

/* ====== Scroll Top Section End ====== */

/* 
*
*
* [ ====== Product Page ====== ]
*
*
*/

.per-product {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: flex-start;
}

.per-product .image-side {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 1rem;
    background-color: var(--theme-bg-color);
    border: 1px solid var(--gray-color);
    padding: 1rem;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.per-product .image-side .main-image {
    width: 100%;
    height: 550px;
    /* max-width: 450px; */
    overflow: hidden;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.per-product .image-side .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.per-product .image-side .sliders-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.per-product .image-side .sliders-image .image-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
    cursor: pointer;
    transition: outline-color 0.5s ease;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    -webkit-transition: outline-color 0.5s ease;
    -moz-transition: outline-color 0.5s ease;
    -ms-transition: outline-color 0.5s ease;
    -o-transition: outline-color 0.5s ease;
}

.per-product .image-side .sliders-image .image-box.active {
    outline-color: var(--outline-color);
}

.per-product .image-side .sliders-image .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.per-product .image-side .shop-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background-color: var(--theme-bg-color);
    border: 1px solid var(--gray-color);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.per-product .image-side .shop-info .shop-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.per-product .image-side .shop-info .shop-details .verified-icon {
    color: #4caf50;
}

.per-product .image-side .shop-info .shop-details .rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
    color: var(--deep-gray-color);
}

.per-product .image-side .shop-info .shop-details .rating .star {
    color: var(--rating-color);
}

.per-product .image-side .shop-info .view-more {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-color);
    background-color: transparent;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 0.75rem;
    transition: all 0.5s ease;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    -ms-border-radius: 0.75rem;
    -o-border-radius: 0.75rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.per-product .image-side .shop-info .view-more:hover {
    background-color: var(--black-color);
    color: var(--theme-bg-color);
}

/* Fade Animation */
.per-product .image-side .fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.per-product .image-side .fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* description side */
.per-product .description-side {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 1rem;
    background-color: var(--theme-bg-color);
    border: 1px solid var(--gray-color);
    margin-bottom: 5rem;
    padding: 1rem;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.per-product .description-side .badge {
    font-size: 0.7rem;
    padding: 6px 16px;
    border: 1px solid var(--gray-color);
    background-color: var(--theme-bg-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.per-product .description-side .title {
    font-size: 1.4rem;
    margin: 0;
}

.per-product .description-side .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--deep-gray-color);
}

.per-product .description-side .rating .star-fill {
    color: var(--rating-color);
}

.per-product .description-side .rating span {
    font-weight: 500;
}

.per-product .description-side .price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.per-product .description-side .price-container .star-txt {
    color: #7C58DF;
}

.per-product .description-side .price-container .star-txt .price-flexi {
    text-transform: uppercase;
    font-size: 0.9rem;
}

.per-product .description-side .price {
    font-size: 2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.per-product .description-side .stock {
    font-size: 0.7rem;
    color: var(--deep-gray-color);
    margin-top: 0.5rem;
}

.per-product .description-side .color-container,
.per-product .description-side .size-container,
.per-product .description-side .description-container,
.per-product .description-side .shipping-container,
.per-product .description-side .review-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
}

.per-product .description-side .color-container p,
.per-product .description-side .size-container p,
.per-product .description-side .description-container p,
.per-product .description-side .shipping-container p,
.per-product .description-side .review-container .title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.per-product .description-side .color-container .color-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.per-product .description-side .color-container .color-box .box {
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    border: 1px solid var(--gray-color);
    background-color: var(--theme-bg-color);
    color: var(--black-color);
    border-radius: 0.5rem;
    transition: all 0.5s ease;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.per-product .description-side .color-container .color-box .box.active,
.per-product .description-side .color-container .color-box .box:hover {
    border-color: var(--black-color);
    color: var(--black-color);
}

.per-product .description-side .size-container .size-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.per-product .description-side .size-container .size-box .box {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    padding: 6px 16px;
    cursor: pointer;
    border: 1px solid var(--gray-color);
    border-radius: 0.5rem;
    background-color: var(--theme-bg-color);
    transition: all 0.5s ease;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.per-product .description-side .size-container .size-box .box.active,
.per-product .description-side .size-container .size-box .box:hover {
    background-color: var(--black-color);
    color: var(--theme-bg-color);
}

.per-product .description-side .description-container ul {
    padding-left: 1.25rem;
    margin: 0;
    list-style-type: disc;
}

.per-product .description-side .description-container ul li {
    font-size: 0.89rem;
    color: var(--deep-gray-color);
    margin-bottom: 0.25rem;
    list-style: disc;
}

.per-product .description-side .get-quote-btn {
    position: sticky;
    bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.3rem 2rem;
    border: 2px solid transparent;
    color: var(--theme-bg-color);
    background-color: var(--black-color);
}

.per-product .description-side .get-quote-btn:hover {
    border-color: var(--black-color);
    color: var(--black-color);
    background-color: var(--theme-bg-color);
}

.per-product .description-side .get-quote-btn i {
    color: var(--black-color);
    background-color: var(--theme-bg-color);
}

.per-product .description-side .get-quote-btn:hover i {
    rotate: 50deg;
    color: var(--theme-bg-color);
    background-color: var(--black-color);
}

.per-product .description-side .get-quote-btn:hover::before {
    background-color: var(--theme-bg-color);
}

.per-product .description-side .shipping-container .shipping-box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 1fr);
    gap: 0.7rem;
    border: 1px solid var(--gray-color);
    padding: 1rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.per-product .description-side .shipping-container .shipping-box .box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.per-product .description-side .shipping-container .shipping-box .box .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 1rem;
    border: 1px solid var(--gray-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.per-product .description-side .shipping-container .shipping-box .box .texts {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.per-product .description-side .shipping-container .shipping-box .box .texts span {
    font-size: 0.7rem;
    color: var(--deep-gray-color);
}

.per-product .description-side .shipping-container .shipping-box .box .texts p {
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}

.per-product .description-side .review-container {
    overflow-x: scroll;
}

.per-product .description-side .review-container::-webkit-scrollbar {
    height: 0.3rem;
}

.per-product .description-side .review-container::-webkit-scrollbar-track {
    background: var(--light-gray-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.per-product .description-side .review-container::-webkit-scrollbar-thumb {
    background: var(--gray-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.per-product .description-side .review-container::-webkit-scrollbar-thumb:hover {
    background: var(--deep-gray-color);
}

.per-product .description-side .review-container .review-box {
    width: 300px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.per-product .description-side .review-container .review-box .box {
    min-width: 300px;
    border: 1px solid var(--gray-color);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.per-product .description-side .review-container .review-box .box h3 {
    font-size: 0.9rem;
    margin: 0;
}

.per-product .description-side .review-container .review-box .box .rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.per-product .description-side .review-container .review-box .box .rating .star {
    display: flex;
    gap: 0.2rem;
}

.per-product .description-side .review-container .review-box .box .rating .star i {
    font-size: 0.8rem;
    color: var(--rating-color);
}

.per-product .description-side .review-container .review-box .box .rating .date {
    font-size: 0.7rem;
    color: var(--deep-gray-color);
}

.per-product .description-side .review-container .review-box .box p {
    font-size: 0.8rem;
    color: var(--deep-gray-color);
    margin: 0;
}

/* 
*
*
* [ ====== Search Page ====== ]
*
*
*/

.search .search-bar {
    width: 60%;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.search .search-bar input {
    width: 100%;
    outline: none;
    border: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    background: var(--light-gray-color);
    border-radius: 50px;
    outline: 2px solid transparent;
    outline-offset: 3px;
}

.search .search-bar input:focus {
    outline-color: var(--outline-color);
}

.search .popular-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
    margin: auto;
    justify-content: center;
    align-items: start;
}

.search .popular-content .box {
    max-width: 250px;
    width: 100%;
}

/* 
*
*
* [ ====== About Page ====== ]
*
*
*/

.about .about-bg {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    height: 32rem;
    overflow: hidden;
    background-color: var(--default-bg-color);
    background-image: url("../images//about-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.about .about-bg h1 {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    text-align: center;
    font-size: 8rem;
    text-transform: uppercase;
    color: var(--theme-bg-color);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.about .narrow-about-bg {
    margin-top: 1rem;
    width: 100%;
    height: 18rem;
    overflow: hidden;
    background-color: var(--default-bg-color);
    background-image: url("../images/narrow-about-bg.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.quote {
    position: relative;
    width: 70%;
    margin-top: 4rem;
}

.quote img {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100px;
    height: 100px;
    rotate: 180deg;
    opacity: 0.6;
}

.quote h2 {
    text-indent: 7rem;
    font-size: 2rem;
    font-style: italic;
    color: var(--deep-gray-color);
}

.about-us,
.why-choose-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.about-us .image-container,
.why-choose-us .image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.about-us .image-container img,
.why-choose-us .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us .image-container h2,
.why-choose-us .image-container h2 {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    font-size: 4rem;
    color: var(--theme-bg-color);
    pointer-events: none;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.about-us .description p,
.why-choose-us .description p {
    font-size: 1.5rem;
    line-height: 30px;
}

.why-choose-us .image-container h2 {
    font-size: 3rem;
}

.why-choose-us {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* 
*
*
* [ ====== Blog Page ====== ]
*
*
*/

.blog .blog-bg {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    height: 32rem;
    overflow: hidden;
    background-color: var(--default-bg-color);
    background-image: url("../images/blog-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.blog .blog-bg h1 {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    text-align: center;
    font-size: 8rem;
    text-transform: uppercase;
    color: var(--theme-bg-color);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.blog-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 1rem;
    margin-bottom: 3rem;
}

.blog-card-container .box {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* background-color: var(--default-bg-color); */
}

.blog-card-container .box .image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.blog-card-container .box .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-container .box {
    outline: 3px solid transparent;
    outline-offset: 5px;
    padding: 0.1rem;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.blog-card-container .box:hover {
    outline-color: var(--outline-color);
}

.blog-card-container .box h2 {
    font-size: 1.3rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.blog-card-container .box .desc {
    font-size: 0.89rem;
    color: var(--deep-gray-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Show only 3 lines */
    -webkit-box-orient: vertical;
}

.blog-card-container .box .catanddat {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 0.8rem;
    padding-top: 0.8rem;
    color: var(--deep-gray-color);
    border-top: 0.1rem solid var(--gray-color);
}

.blog-card-container .box .catanddat .category {
    font-size: 0.66rem;
    padding: 3px 10px;
    text-transform: uppercase;
    background-color: var(--gray-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* 
*
*
* [ ====== Contact Page ====== ]
*
*
*/

.form-section {
    position: relative;
    display: grid;
    align-items: center;
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
    margin-bottom: 10rem;
}

.form-section .contact-form {
    width: 100%;
    margin: auto;
    display: grid;
    text-align: center;
    row-gap: 1rem;
    padding: 10px;
}

.form-section .contact-form h3 {
    font-size: 1.4rem;
    font-weight: 500;
}

.form-section .contact-form input {
    width: 100%;
    outline: none;
    border: none;
    font-size: 0.9rem;
    padding: 14px 20px;
    background: var(--light-gray-color);
    outline: 2px solid transparent;
    outline-offset: 3px;
    border-radius: 50px;
    transition: all 0.5s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.form-section .contact-form input:hover {
    outline-color: var(--outline-color);
}

.form-section .contact-form textarea {
    width: 100%;
    min-height: 200px;
    max-height: 300px;
    outline: none;
    border: none;
    font-size: 0.9rem;
    padding: 14px;
    background: var(--light-gray-color);
    border: 2px solid var(--main-color);
    outline: 2px solid transparent;
    resize: vertical;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.form-section .contact-form textarea:hover {
    outline-color: var(--accent-color);
}

.form-section .contact-form input::placeholder,
.form-section .contact-form textarea::placeholder {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--deep-gray-color);
}

.form-section .contact-form .btn {
    background-color: var(--black-color);
    color: var(--theme-bg-color);
    border: 2px solid transparent;
}

.form-section .contact-form .btn:hover {
    background-color: var(--theme-bg-color);
    color: var(--black-color);
    border-color: var(--black-color);
}

.form-section .map {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 1rem;
    background: var(--default-bg-color);
    border: 2px solid var(--main-color);
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.form-section .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.success-message {
    position: absolute;
    bottom: 20px;
    transform: translate(50%, 50%);
}

/* status color */
.color-red {
    color: hsl(4, 71%, 50%);
}

.color-green {
    color: hsl(152, 69%, 31%);
}


/* 
*
*
* [ ====== Review Page ====== ]
*
*
*/

.form-section .range-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

/* Style for the range input */
#rating-slider {
    width: 80%;
    margin: 10px 0;
    appearance: none;
    height: 6px;
    background: #ddd;
    border-radius: 50px;
    outline: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* Track line */
#rating-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: var(--gray-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

#rating-slider::-moz-range-track {
    height: 6px;
    background: var(--deep-gray-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* Thumb (slider knob) */
#rating-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--rating-color);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

#rating-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--rating-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


.form-section .review-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 1rem;
    overflow: hidden;
    background: var(--default-bg-color);
    border: 2px solid var(--main-color);
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.form-section .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

/* ====== Responsive Section Start ====== */

/* For Large Devices */
@media (max-width: 1024px) {
    .container {
        margin: 0 auto;
        width: 90%;
    }

    /* product page */
    .per-product {
        margin-top: 5rem;
        gap: 1.5rem;
    }

    .per-product .image-side .main-image {
        max-width: 400px;
    }

    /* contact page */
    .form-section {
        margin-top: 4rem;
    }
}

@media (max-width: 880px) {
    section {
        padding: 3rem 0 2rem;
    }

    .btn {
        padding: 4px 4px 4px 16px;
    }

    .nav {
        padding: 12px 0;
    }

    .home .home-bg {
        height: 25rem;
    }

    .home .home-bg h1 {
        font-size: 2.5rem;
    }

    .heading h2 {
        font-size: 1.4rem;
    }

    .heading .category-btn button {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }

    .offer {
        margin-top: 3rem;
    }

    .offer h2 {
        font-size: 2rem;
    }

    .offer .btn {
        font-size: 0.78rem;
    }

    .review .heading {
        margin-top: 1.5rem;
    }

    .review .heading h2,
    .alsolike .heading h2 {
        font-size: 2.1rem;
    }

    .alsolike .alsolike-content {
        grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    }

    .delivery-partner .image-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    }

    .delivery-partner .image-container .image-box {
        width: auto;
        height: 10rem;
    }

    .newsletter {
        max-width: 680px;
        margin-bottom: -5rem;
    }

    .newsletter .newsletter-text h3 {
        font-size: 1.8rem;
    }

    .newsletter form .btn {
        font-size: 0.8rem;
    }

    /* Product Page */
    .per-product {
        grid-template-columns: 1fr;
    }

    .per-product .image-side .main-image {
        max-width: 100%;
    }

    .per-product .image-side .shop-info {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }

    /* about us page */
    .about .about-bg {
        height: 30rem;
    }

    .about .about-bg h1 {
        font-size: 7rem;
    }

    .about .narrow-about-bg {
        height: 12rem;
    }

    .quote {
        width: 80%;
        margin-top: 3rem;
    }

    .quote h2 {
        font-size: 1.7rem;
    }

    .about-us .image-container h2 {
        bottom: -15px;
        font-size: 3rem;
    }

    .why-choose-us .image-container h2 {
        bottom: -13px;
        font-size: 2.3rem;
    }

    .about-us .description p,
    .why-choose-us .description p {
        font-size: 1.3rem;
    }

    /* blog page */
    .blog .blog-bg {
        height: 30rem;
    }

    .blog .blog-bg h1 {
        font-size: 7rem;
    }
}

/* For Medium Devices */
@media (max-width: 768px) {
    header.shadow {
        background: transparent !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .nav-top-bar {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 85% !important;
        flex-direction: row-reverse;
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
        will-change: transform;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
    }

    .nav-top-bar .menu-icon {
        border: 2px solid var(--gray-color);
        padding: 10px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    .nav-top-bar .menu-icon div {
        width: 15px;
        height: 2px;
    }

    .logo {
        gap: 0.8rem;
    }

    .nav-icons {
        position: fixed;
        bottom: 10px !important;
        left: 50%;
        transform: translateX(-50%) !important;
        transition: none !important;
        width: 57%;
        display: flex;
        justify-content: space-between;
        padding: 0.5rem;
        z-index: 1000 !important;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
        -webkit-transform: translateX(-50%) !important;
        -moz-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
        -o-transform: translateX(-50%) !important;
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
    }

    .nav-icons .say-hi i {
        padding: 5px;
    }

    .home .home-bg {
        height: 20rem;
    }

    .home .home-bg h1 {
        font-size: 2.4rem;
    }

    .heading .category-btn button {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .offer h2 {
        font-size: 1.9rem;
    }

    .offer .btn {
        font-size: 0.68rem;
    }

    .review .heading {
        margin-top: 1.5rem;
    }

    .review .heading h2,
    .alsolike .heading h2,
    .delivery-partner .heading h2 {
        font-size: 2rem;
    }

    .alsolike .alsolike-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-partner .image-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    }

    .delivery-partner .image-container .image-box {
        width: auto;
        height: 9rem;
        border-radius: 1rem;
        -webkit-border-radius: 1rem;
        -moz-border-radius: 1rem;
        -ms-border-radius: 1rem;
        -o-border-radius: 1rem;
    }

    .newsletter {
        max-width: 580px;
        margin-bottom: -5rem;
    }

    .newsletter .newsletter-text h3 {
        font-size: 1.6rem;
    }

    .newsletter form .btn {
        font-size: 0.8rem;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
    }

    /* Product Page */
    .per-product .image-side .main-image {
        max-width: 450px;
    }

    .per-product .description-side .shipping-container .shipping-box {
        grid-template-columns: repeat(2, 1fr);
    }

    /* contact page */
    .form-section {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 1rem;
    }

    .form-section .map {
        height: 400px;
    }

    /* blog page */
    .blog .blog-bg {
        height: 20rem;
    }

    .blog .blog-bg h1 {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
    }

    .navbar a {
        padding: 15px;
        display: block;
    }

    .home .cat-bg {
        height: 7rem;
    }

    .home .cat-bg h2 {
        font-size: 1.2rem;
    }

    .home .cat-bg .btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .video-content .box .video-box {
        height: 380px;
    }

    .popular-content .box .image-box {
        height: 380px;
    }

    .offer h2 {
        font-size: 1.8rem;
    }

    .review .heading h2,
    .alsolike .heading h2,
    .delivery-partner .heading h2 {
        font-size: 1.8rem;
    }

    .delivery-partner .image-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .delivery-partner .image-container .image-box {
        width: auto;
        height: 5rem;
    }

    .newsletter {
        max-width: 460px;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 3rem;
    }

    .newsletter .newsletter-text h3 {
        text-align: center;
        font-size: 1.8rem;
    }

    .newsletter form {
        flex-direction: column;
        align-items: center;
    }

    .copyright {
        justify-content: center;
        row-gap: 2rem;
    }

    /* Product Page */
    .per-product .image-side .main-image {
        max-width: 100%;
    }

    .per-product .image-side .sliders-image {
        /* justify-content: space-between; */
        gap: 1.5rem;
    }

    .per-product .image-side .sliders-image .image-box {
        width: 80px;
        height: 80px;
    }

    .per-product .description-side .shipping-container .shipping-box {
        grid-template-columns: 1fr;
    }

    /* about us page */
    .about .about-bg {
        height: 20rem;
    }

    .about .about-bg h1 {
        bottom: -20px;
        font-size: 5rem;
    }

    .about .narrow-about-bg {
        height: 8rem;
    }

    .quote {
        width: 75%;
        margin-top: 3rem;
    }

    .quote h2 {
        line-height: 35px;
        font-size: 1.5rem;
    }

    .about-us,
    .why-choose-us {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-us .image-container {
        height: 300px;
    }

    .about-us .image-container h2 {
        bottom: -15px;
        font-size: 4rem;
    }

    .why-choose-us {
        display: grid;
        grid-template-areas:
            "image"
            "text";
        grid-template-columns: 1fr;
    }

    .why-choose-us .image-container {
        grid-area: image;
    }

    .why-choose-us .description {
        grid-area: text;
    }

    .why-choose-us .image-container h2 {
        bottom: -13px;
        font-size: 3rem;
    }

    /* blog page */
    .blog .blog-bg {
        height: 20rem;
    }

    .blog .blog-bg h1 {
        bottom: -20px;
        font-size: 4rem;
    }
}

/* For Small Devices */
@media (max-width: 480px) {
    .btn {
        font-size: 0.7rem;
        padding: 3px 3px 3px 15px;
    }

    .nav {
        padding: 8px 0;
    }

    .menu-icon {
        padding: 8px;
    }

    .logo {
        font-size: 1.09rem;
    }

    .menu-icon div {
        height: 2px;
        width: 20px;
    }

    .nav-icons i {
        padding: 8px;
    }

    .home .home-bg {
        height: 18rem;
    }

    .home .home-bg h1 {
        text-align: center;
        font-size: 2rem;
    }

    .home .home-bg p {
        width: 14rem;
        font-size: 0.7rem;
    }

    .home .cat {
        grid-template-columns: repeat(1, 1fr);
    }

    .heading {
        justify-content: center;
        row-gap: 1rem;
    }

    .heading .category-btn {
        justify-content: center;
    }

    .video-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .video-content .box .video-box {
        height: 230px;
    }

    .popular-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .popular-content .box .image-box {
        height: 230px;
    }

    .offer h2 {
        font-size: 1.3rem;
    }

    .review .heading h2,
    .alsolike .heading h2,
    .delivery-partner .heading h2 {
        font-size: 1.6rem;
    }

    .review .client-box-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .review .client-box-container .box.combined {
        grid-column: span 2;
    }

    .alsolike .alsolike-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .newsletter {
        margin-bottom: 2rem;
    }

    .newsletter .newsletter-text h3 {
        font-size: 1.9rem;
    }

    .newsletter form input {
        width: 100%;
    }

    .footer {
        padding: 1.5rem;
    }

    .copyright {
        margin-bottom: 5rem;
    }

    .copyright .cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll-top {
        width: 30px;
        height: 30px;
    }

    /* Product Page */
    .per-product .image-side {
        padding: 1rem;
    }

    .per-product .image-side .main-image {
        height: 300px;
    }

    .per-product .description-side {
        padding: 1rem;
    }

    .per-product .image-side .sliders-image .image-box {
        width: 70px;
        height: 70px;
    }

    .per-product .image-side .shop-info .shop-details .location {
        display: none;
    }

    .per-product .description-side .price {
        font-size: 1.5rem;
    }

    /* about us page */
    .about .about-bg {
        height: 20rem;
    }

    .about .about-bg h1 {
        font-size: 4.5rem;
    }

    .about .narrow-about-bg {
        height: 8rem;
    }

    .quote {
        width: 70%;
    }

    .quote img {
        width: 80px;
        height: 80px;
        top: -35px;
    }

    .quote h2 {
        font-size: 1.5rem;
        text-indent: 6rem;
    }

    .why-choose-us .image-container h2 {
        bottom: -13px;
        font-size: 2.7rem;
    }
}

@media (max-width: 416px) {

    .cart-content .button-container,
    .login-form form .button-container {
        flex-wrap: nowrap;
        gap: 0;
    }

    /* about us page */
    .about .about-bg {
        height: 16rem;
    }

    .about .about-bg h1 {
        bottom: -1rem;
        font-size: 3.5rem;
    }

    .about .narrow-about-bg {
        height: 7rem;
    }

    .quote img {
        width: 70px;
        height: 70px;
        top: -25px;
    }

    .quote h2 {
        font-size: 1.5rem;
        text-indent: 5rem;
    }

    .about-us .image-container h2,
    .why-choose-us .image-container h2 {
        bottom: -13px;
        font-size: 3rem;
    }

    .why-choose-us .image-container h2 {
        bottom: -13px;
        font-size: 2.2rem;
    }

    /* blog page */
    .blog .blog-bg {
        height: 16rem;
    }

    .blog .blog-bg h1 {
        bottom: -1rem;
        font-size: 3.5rem;
    }
}

/* ====== Responsive Section End ====== */