@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Mulish", serif;
}

:root {
    --primary-color: rgba(0, 104, 200, 1);
    --secondary-color: rgba(221, 40, 49, 1);
    --black: #000000;
    --white: #ffffff;
    --yelllow: #ffc904;
    --gray-color: rgba(132, 132, 132, 1);
    --gray-light: #848484;
    --gray-light-2: #e9e9e9;
    --border: rgb(243, 243, 243);
    --transition-fast: .4s ease-in-out;
    --transition-slow: .6s ease-in-out;
    --Kaushan-font: "Kaushan Script", serif;
}

body {
    overflow-x: hidden;
}

button {
    background-color: var(--primary-color) !important;
    cursor: pointer;
    color: #fff !important;
}

button:hover {
    color: #fff !important;
}


/* custome css */

section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 5% 12%;
}


.Section_Image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9;
}

.Section_Image img {
    width: 100%;
    height: 100%;
}

.Section_title {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
}


.btn {
    width: 170px;
    height: 50px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    border-radius: 8px;
}

.btn a {
    font-size: 1.1rem;
    color: var(--white);
}


/* navbar */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.nav_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    padding: 10px 12%;
}

.nav_top_content {
    display: flex;
    width: 50%;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.nav_top_right {
    justify-content: flex-end;
}

.nav_top_left .main_menu {
    display: flex;
    align-items: center;
    position: relative;
}

.main_menu li span {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.main_menu li i {
    font-size: 0.7rem;
    padding-left: 5px;
    transform: translateY(-1px);
}

.main_menu:hover .main_menu_text {
    color: var(--primary-color);
}

.nav_top_left p {
    font-size: 0.9rem !important;
}

.sub_menu {
    width: 140px;
    padding: 20px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    background-color: var(--white);
    color: var(--black);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: scaleY(0.7);
    transform-origin: top;
    z-index: 999;
    animation: Anim_menu 300ms ease-in-out;
}

@keyframes Anim_menu {
    0% {
        opacity: 0;
        transform: scaleY(0.7);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.main_menu:hover .sub_menu {
    visibility: visible;
    display: flex;
    opacity: 1;
    transform: scaleY(1);
    animation: Anim_menu 300ms ease-in-out;
}

.sub_menu li span {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.nav_top_right li a {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav_top_right li a:hover {
    color: var(--primary-color);
}

.nav_top_right li:nth-child(1) {
    color: var(--yelllow);
}

.nav_top_right li:nth-child(1) a {
    color: var(--yelllow);
}

.nav_middel {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 30px 12%;
    gap: 30px;
}

.nav_middel .logo {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_middel .logo h2 {
    font-size: 2rem;
    color: var(--black);
    font-weight: 600;
    font-family: var(--Kaushan-font);
}

.nav_middel .logo h2 span {
    color: var(--primary-color);
    font-family: var(--Kaushan-font);
}

.nav_middel_input_box {
    height: 55px;
    width: 55%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.nav_middel_input_box select {
    height: 100%;
    width: 30%;
    border: none;
    outline: none;
    font-size: 1rem;
    background-color: #F8F8F8;
    padding: 0px 12px;
    position: relative;
    font-weight: 600;
}

.nav_middel_input_box input {
    height: 100%;
    width: 70%;
    font-size: 1rem;
    padding-left: 12px;
    border: none;
    position: relative;
    outline: none;
    font-weight: 500;
    background-color: #F8F8F8;
}


.nav_middel_input_box::after {
    content: '';
    position: absolute;
    left: 31%;
    top: 5px;
    width: 1px;
    height: 80%;
    background-color: var(--gray-light);
}


.nav_middel_input_box .btn {
    width: 180px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0;
}

.nav_middel_input_box .btn a {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}


.nav_middel_right {
    width: 35%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav_middel_right_content:nth-child(1) .nav_middel_right_info span:nth-child(2) {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.nav_middel_right_content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav_middel_right .nav_middel_right_content:nth-child(4) {
    display: none;
}

.nav_middel_right_icon {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_middel_right_icon i {
    font-size: 2.5rem;
    color: var(--black);
    cursor: pointer;
}

.nav_middel_right_info {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.nav_middel_right_info span:nth-child(1) {
    color: var(--gray-light);
    font-size: 0.8rem;
}

.nav_middel_right_info span:nth-child(2) {
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
}


.nav_bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 12%;
    gap: 30px;
}

.nav_bottom_left {
    width: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.categorys_Item_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    height: 0;
    z-index: 999;
    overflow: hidden;
    transition: var(--transition-slow);
}

.categorys_Item_menu a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}


.categorys_Item_menu li {
    width: 100%;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.categorys_Item_menu li:nth-child(7) {
    border-bottom: 0;
}

.nav_bottom_left:hover .categorys_Item_menu {
    height: 430px;
}

.categorys {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.categorys_text {
    display: flex;
    align-items: center;
}

.categorys_text span {
    font-size: 1.1rem;
    font-weight: 800;
    padding-left: 10px;
}

.categorys i {
    font-size: 1.3rem;
    font-weight: 500;
}


.nav_bottom_menu {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav_bottom_menu li a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    transition: var(--transition-slow);
}

.nav_bottom_menu li a:hover {
    color: var(--primary-color);
}

.nav_bottom_menu li:nth-child(1) a {
    color: var(--primary-color);
}


.vislist {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.vislist i {
    font-size: 1.8rem;
}

.today_deals {
    display: flex;
    align-items: center;
    gap: 20px;
}

.today_deals span {
    font-size: 1rem;
    font-weight: 800;
    position: relative;
}

.today_deals span:nth-child(2) {
    background-color: var(--secondary-color);
    text-transform: uppercase;
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 2px;
}

.today_deals span:nth-child(2)::after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 4px 6px 4px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
}

#close_menu {
    display: none;
}

/* Hero Section ===============================================================================================================================*/
.Hero {
    background-color: #F1F1F1;
    flex-direction: column;
}

.Hero_Ctg_Swiper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.Product_Ctg_Item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    gap: 10px;
}

.Product_Ctg_Item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.Product_Ctg_Item span {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--black);
}

.Hero_Item {
    height: 500px;
    width: 100%;
    background-color: #2C2C46;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.Hero_Content {
    padding: 80px;
}

.Hero_Content .Hero_text {
    background-color: var(--secondary-color);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px;
    border-radius: 2px;
}

.Hero_Content h2 {
    font-size: 3rem;
    color: var(--white);
    padding: 10px 0;
    font-weight: 800;
}

.Hero_Content h2 span {
    display: block;
    color: var(--white);
    text-transform: capitalize;
}

.Hero_Content p {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
}

.Hero_Content h6 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 0;
}

.Hero_Content h6 .Price {
    font-size: 2rem;
    padding-left: 12px;
    font-weight: 700;
    transform: translateY(5px) rotate(0deg);
    animation: moves 1s infinite linear;
    display: inline-block;
}


@keyframes moves {
    0% {
        transform: translateY(5px) rotate(0deg);
    }

    10% {
        transform: translateY(-2px) rotate(-2deg);
        color: #f3c93d;
    }

    20% {
        transform: translateY(-2px) rotate(2deg);
        color: #f3c93d;
    }

    30% {
        transform: translateY(-2px) rotate(-2deg);
        color: #f3c93d;
    }

    40% {
        transform: translateY(-2px) rotate(2deg);
        color: #f3c93d;
    }

    50% {
        transform: translateY(-2px) rotate(-2deg);
        color: #f3c93d;
    }

    70% {
        transform: translateY(-2px) rotate(2deg);
        color: #f3c93d;
    }

    100% {
        transform: translateY(5px) rotate(0deg);
    }
}


.Hero_Image {
    height: 100%;
    align-items: flex-end;
}

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

.Hero_Swiper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.Hero_Item1 {
    background-color: #192C57;
}

.Hero_Item2 {
    background-color: #2C2C46;
}

.Hero_Item3 {
    background-color: #202F22;
}














@media screen and (max-width:1400px) {
    section {
        padding: 120px 4%;
    }

    .nav_top {
        padding: 10px 4%;
    }

    .nav_middel {
        padding: 30px 4%;
    }

    .nav_middel_right_icon i {
        font-size: 2rem;
    }

    .nav_middel_right {
        gap: 10px;
    }

    .nav_middel_right_content:nth-child(1) .nav_middel_right_info span:nth-child(2) {
        font-size: 0.8rem;
    }

    .nav_bottom {
        padding: 30px 4%;
    }
}

@media screen and (max-width:1200px) {
    .nav_middel .logo h2 {
        font-size: 1.5rem;
    }

    .nav_middel_input_box .btn {
        width: 140px;
    }

    .nav_middel_right_info {
        display: none;
    }

    .nav_middel_right_content {
        width: auto;
        gap: 0;
    }

    .nav_middel_right_content:nth-child(1) .nav_middel_right_info {
        display: flex;
    }

    .nav_middel_right {
        width: 20%;
    }

    .nav_middel_input_box {
        width: 65%;
    }

    .Hero_Content h2 {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
}


@media screen and (max-width:1000px) {
    .nav_middel_right_content:nth-child(1) .nav_middel_right_info {
        display: none;
    }

    .nav_middel_right {
        width: 10%;
    }

    .nav_middel_input_box {
        width: 70%;
    }

    .nav_middel {
        padding: 30px 2%;
    }

    .nav_top {
        padding: 10px 2%;
    }

    .nav_bottom {
        padding: 30px 2%;
    }

    .categorys_text span {
        display: none;
    }

    .nav_bottom_left {
        width: 30%;
    }

    .categorys i:nth-child(2) {
        display: none;
    }

    .nav_bottom_menu {
        transform: translateX(-180px);
    }

    .nav_bottom_menu li a {
        font-size: 1rem;
    }

    .nav_bottom_menu {
        width: 40%;
    }

    .vislist {
        width: 25%;
    }

    .Hero_Content h2 {
        font-size: 2rem;
        line-height: 3rem;
    }

    .Hero_Content {
        padding: 50px;
    }

    .Hero_Image img {
        object-fit: contain;
    }

    .Hero_Item {
        height: 400px;
    }

    .Hero_Content p {
        font-size: 1rem;
    }

    .Hero_Content h6 .Price {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:768px) {
    .nav_top {
        display: none;
    }

    .nav_middel_input_box {
        display: none;
    }

    .nav_middel .logo {
        width: 20%;
    }

    .nav_middel_right_icon i {
        font-size: 1.5rem;
    }

    .nav_bottom {
        height: 100vh;
        position: absolute;
        top: 0%;
        left: -100%;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        background-color: var(--white);
        transition: var(--transition-slow);
        z-index: 999;
        opacity: 0;
    }

    .vislist {
        display: none;
    }

    .nav_bottom_menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        transform: translateX(0);
        margin-top: 50px;
        gap: 0;
    }

    .categorys i {
        font-size: 1.4rem;
    }

    .nav_bottom_menu li {
        border-bottom: 1px solid var(--border);
        width: 100%;
        padding: 20px 0;
    }

    .categorys_text span {
        display: block;
        font-size: 1.3rem;
    }

    .nav_bottom_left {
        width: 100%;
    }

    .nav_middel_right .nav_middel_right_content:nth-child(4) {
        display: block;
        font-size: 1.2rem;
    }

    .nav_middel_right {
        width: 40%;
        gap: 14px;
    }

    #close_menu {
        display: block;
        font-size: 1.5rem;
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .active {
        opacity: 1;
        left: 0;
    }

    .Hero_Item {
        height: 800px;
        flex-direction: column;
    }

    .Hero_Image {
        width: 100%;
    }

    .Hero_Content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .Hero_Image {
        width: 70%;
        padding: 50px;
    }

}

@media screen and (max-width:500px) {
    .nav_middel .logo {
        width: auto;
    }

    .nav_middel_right {
        width: auto;
    }

    .Hero_Image {
        width: 100%;
    }

    .Hero_Content h2 {
        font-size: 1.6rem;
        line-height: 2.3rem;
    }

    .Hero_Content p {
        font-size: 0.9rem;
    }

    .Hero_Content h6 .Price {
        font-size: 1.3rem;
    }
}


/* Banner Section  */


.banner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sale-top {
    width: 100%;
    background-image: url(Image/banner-7.jpg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    padding: 50px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sale-top small {
    color: red;
    font-size: 22px;
}

.sale-top h1 {
    font-size: 50px;
    width: 50%;
}

.sale-top button {
    font-size: 20px;
}


.sale-bottom {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sale-bottom .banner {
    background: #000000;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
    border-radius: 12px;

    padding: 30px;


    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sale-bottom .banner small {
    background-color: red;
    padding: 2px 20px;
    width: fit-content;
    color: white;
    border-radius: 5px;
    border-top-left-radius: 0;

}

.sale-bottom .banner h3 {
    font-size: 25px;
}

.sale-bottom .banner p {
    font-size: 20px;
}

.sale-bottom .banner.banner1 {
    background: url(Image/banner-8-2.jpg);
    background-size: 100%;
}

.sale-bottom .banner.banner2 {
    background: url(Image/banner-11.jpg);
    background-size: 100%;
}

.sale-bottom .banner.banner3 {
    background: url(Image/banner-10.jpg);
    background-size: 100%;
}

.sale-bottom .banner.banner4 {
    background: url(Image/banner-9.jpg);
    background-size: 100%;
}

@media screen and (max-width:1500px) {
    .sale-bottom .banner h3 {
        font-size: 16px;
    }

    .sale-bottom .banner p {
        font-size: 14px;
    }

    .sale-bottom .banner small {
        padding: 2px 10px;
    }
}

@media screen and (max-width:1200px) {
    .sale-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .sale-bottom .banner {
        background-size: cover !important;
        height: 430px;
    }

    .sale-bottom .banner h3 {
        font-size: 26px;
    }

    .sale-bottom .banner p {
        font-size: 16px;
    }

    .sale-top h1 {
        font-size: 40px;
    }

}

@media screen and (max-width:900px) {
    .sale-top {
        display: none;
    }
}

@media screen and (max-width:500px) {
    .sale-bottom {
        grid-template-columns: repeat(1, 1fr);
    }

    .sale-bottom .banner {
        background-size: cover !important;
        height: 430px;
    }

    .sale-bottom .banner h3 {
        font-size: 26px;
    }

    .sale-bottom .banner p {
        font-size: 16px;
    }

}

/* Brands Section */

/* Brands sections */

.Brands_swiper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.Brands_Image {
    height: 40px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Brands_Image img {
    object-fit: contain;
    opacity: 0.5;
    transition: var(--transition-slow);
}

.Brands_Image:hover img {
    opacity: 1;
}

@media screen and (max-width:500px) {
    .Brands_Image {
        width: 100%;
    }
}


/* Footer */


/* footer */

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-letter-wrapper {
    width: 100%;
    background: url(Image/bg-newsletter.jpg) no-repeat;
    background-size: cover;
    height: 280px;
    z-index: 1;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.news-letter-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.news-letter {
    width: 70%;
    border-radius: 8px;
    margin: 30px auto;
    z-index: 9;
    background-color: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.news-letter h3 {
    font-size: 30px;
    width: 30%;
    font-weight: 800;
}

.news-letter div {
    width: 70%;
    height: 50px;
    position: relative;
}

.news-letter div input {
    width: 100%;
    height: 100%;
    outline: none;
    padding: 20px;

    border-radius: 8px;

    border: 1px solid var(--border);

}

.news-letter div button {
    position: absolute;
    top: 0;
    right: 0;

    height: 100%;
    width: 140px;

    background-color: var(--black);
    color: var(--white);

    font-size: 15px;
}

.features-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 12%;
    gap: 30px;
    border-bottom: 1px solid var(--border);
}

.features-wrapper .features {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.features-wrapper .features i {
    font-size: 60px;
    color: var(--primary-color);
}

.features-wrapper .features p {
    display: flex;
    flex-direction: column;
}


.footer {
    padding: 30px 12%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;

    border-bottom: 1px solid var(--border);
}

.footer .footer-link {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.footer .footer-link a {
    color: var(--black);
    font-size: 15px;
}


.footer .footer-link .logo {
    width: 100%;
    justify-content: flex-start;
}

.footer .social {
    display: flex;
    gap: 20px;
}

.footer .social i {
    font-size: 20px;
}

.footer .social p a {
    font-size: 15px;
}

.footer .social p a:hover {
    color: var(--primary-color);
}

.footer .footer-link h3 {
    font-size: 25px;
    font-weight: 800;
}

.tranding-tags {
    width: 100%;
    padding: 0 12%;
}

.tranding-tags .tags {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;

    padding: 50px 0;

}

.tranding-tags .tags span {
    width: fit-content;
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.copyright {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

@media screen and (max-width:1200px) {
    .features-wrapper .features p {
        font-size: 12px;
    }

    .features-wrapper .features p strong {
        font-size: 16px;
    }

    .news-letter h3 {
        font-size: 20px;
    }
}

@media screen and (max-width:900px) {

    .footer,
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .news-letter {
        flex-direction: column;
        gap: 20px;
    }

    .news-letter h3 {
        width: 100%;
        text-align: center;
    }

    .news-letter div {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .news-letter div button {
        width: 100%;
        height: 40px;
        position: relative;
    }
}


@media screen and (max-width:900px) {

    .footer,
    .features-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-wrapper .features {
        flex-direction: column;
    }

    .features-wrapper .features p {
        text-align: center;
    }

}

/* Products */
/* best seller section  */

.best_seller {
    display: flex;
    flex-direction: column;

}

.heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.side_links {
    display: flex;
    gap: 20px;
}

.card_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    position: relative;
    width: 100%;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: all 0.3s;
    background-color: transparent;
    border-radius: 10px;
}

.card .off {
    position: absolute;
    top: 2%;
    left: 5%;
    padding: 2px 5px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--white);
}

.card .wishlist {
    opacity: 0;
    position: absolute;
    top: 2%;
    right: 3%;
    background-color: var(--primary-color);
    padding: 10px 12px;
    border-radius: 50px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.card:hover .wishlist {
    opacity: 1;
}

.card:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.card .product_title {
    color: var(--gray-light);
}

.card .rating {
    color: #FDC904;
}

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

.card .price .lined {
    font-size: 13px;
    text-decoration: line-through;
}

.card .addtocartbtn {
    margin-top: 5px;
    width: 100%;
    font-size: 1.1rem;
    padding: 5px 16px;
    border: 1px solid var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}

.addtocartbtn:hover {
    cursor: pointer;
    background-color: var(--primary-color);
    border: 1px solid transparent;
    color: var(--white);
}

.card .hidden {
    opacity: 0;


    position: absolute;
    bottom: -90px;
    left: 0;
    z-index: -1;
    width: 100%;

    padding: 5px 16px;
    background-color: var(--white);
    border-radius: 5px;

    transition: all .5s;
}


.card:hover .hidden {
    opacity: 1;
    z-index: 9;
}

.card:hover .hidden {
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:900px) {
    .card_container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width:768px) {
    .card_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:500px) {
    .card_container {
        grid-template-columns: repeat(1, 1fr);
    }

    .heading {
        flex-direction: column;
        gap: 30px;
    }

    .side_links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}



/*=============================== ABOUT PAGE SECTION ===============================*/

.page-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 12%;
    background-color: var(--gray-light-2);
}

.page-section h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
}

.page-section h2 a {
    color: var(--black);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.page-section h2 a:hover {
    text-decoration: underline;
}

.page-section h2 p {
    color: var(--black);
}

/* ABOUT BANNER SECTION  */

.ab-banner {
    flex-direction: column;
}

.ab-wrapper-box {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    color: var(--white);
    background-image: url(Image/about-1.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.ab-wrapper-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.ab-wrapper-box h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 15px 0;
}

.ab-wrapper-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 4rem;
    width: 50%;
    text-align: center;
}

.ab-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.ab-col-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ab-col-box h1 {
    font-size: 5rem;
    line-height: 5rem;
}

.ab-col-box p {
    font-size: 1rem;
}

.ab-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: start;
    place-items: start;
    gap: 50px;
}

.ab-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-col h2 {
    font-size: 2rem;
    font-weight: 800;
}

.ab-col p {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--gray-color);
}

/* ABOUT BANNER MQ SECTION  */

@media (max-width:1400px) {
    .ab-wrapper-box h2 {
        width: 70%;
    }
}

@media (max-width:1200px) {
    .ab-wrapper-box h2 {
        width: 80%;
    }

    .ab-col p {
        font-size: 0.9rem;
    }
}

@media (max-width:900px) {
    .ab-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-wrapper-box h2 {
        font-size: 3rem;
        width: 100%;
    }

    .page-section h2 {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
}

@media (max-width:500px) {
    .ab-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .ab-wrapper-box h2 {
        font-size: 2rem;
        line-height: 2.5rem;
        width: 80%;
    }

    .ab-col-box h1 {
        font-size: 3rem;
        line-height: 3rem;
    }
}


/* ABOUT TEAMS SECTION  */

.ab-teams {
    flex-direction: column;
    background-color: var(--section-bg);
}

.ab-team-top {
    width: 100%;
    border-bottom: 1px solid rgba(131, 131, 131, 0.5);
    padding-bottom: 20px;
}

.ab-team-top h2 {
    font-size: 2rem;
}

.ab-teams-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-content: start;
    place-items: start;
    gap: 30px;
}

.ab-team-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition-fast);
    border-radius: 10px;
    overflow: hidden;
}

.ab-team-col:hover {
    box-shadow: 0 0 15px rgba(131, 131, 131, 0.2);
    cursor: pointer;
}

.ab-team-img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.ab-team-img img {
    object-fit: cover;
    transition: var(--transition-fast);
    border-radius: 10px;
}

.ab-team-col:hover .ab-team-img img {
    transform: scale(1.05);
}

.ab-team-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ab-team-info h2 {
    font-size: 1.5rem;
    margin: 3px 0;
    transition: var(--transition-fast);
}

.ab-team-info h2:hover {
    color: var(--primary-color);
}

.ab-team-info p {
    font-size: 1rem;
    color: var(--gray-color);
}

.ab-team-social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.ab-team-social-icon i {
    font-size: 1.5rem;
    color: var(--gray-color);
}

/* ABOUT TEAMS MQ SECTION  */

@media (max-width:900px) {
    .ab-teams-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:500px) {
    .ab-teams-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ABOUT PERFORMANCE SECTION  */

.ab-performance-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.ab-performance-content h2 {
    font-size: 1.2rem;
    font-weight: 500;
}

.ab-performance-content h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    width: 80%;
    font-weight: 800;
    margin: 10px 0;
}

.ab-performance-content p {
    font-size: 1rem;
    font-weight: 400;
    margin: 15px 0;
    width: 80%;
}

.ab-performance-img {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

/* ABOUT PERFORMANCE SECTION  */

@media (max-width:1400px) {
    .ab-performance-content h1 {
        width: 90%;
    }
}

@media (max-width:1200px) {
    .ab-performance-content h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

@media (max-width:900px) {
    .ab-performance {
        flex-direction: column;
    }

    .ab-performance-content,
    .ab-performance-content p,
    .ab-performance-content h1,
    .ab-performance-img {
        width: 100%;
    }

    .ab-performance-content h1 {
        font-size: 4rem;
        line-height: 4rem;
    }
}

@media (max-width:500px) {
    .ab-performance-content h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}


/* ABOUT SWIPER  */

.ab-slider {
    padding-top: 0;
}

.ab-swiper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #E8F3FE;
    border-radius: 10px;
    padding: 5%;
}

.abSlider {
    width: 100%;
}

.ab-slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.ab-slide-img {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    overflow: hidden;
}

.ab-slide p {
    text-align: center;
    width: 70%;
    font-size: 1.5rem;
    color: var(--black);
}

/* ABOUT SLIDER MQ SECTION  */

@media (max-width:1200px) {
    .ab-slide p {
        width: 80%;
    }
}

@media (max-width:900px) {
    .ab-slide p {
        width: 100%;
    }
}

@media (max-width:500px) {
    .ab-slide p {
        width: 100%;
        font-size: 1rem;
    }
}



/* Login Registration */

.myaccount {
    align-items: flex-start;
}

.myaccount_Container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.myaccount h2 {
    font-size: 2.5rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.myaccount_Form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    border: 1px solid #cfc8d8;
    padding: 50px 30px;
    border-radius: 4px;
}

.Box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 30px;
}

.Box label {
    font-size: 0.9rem;
    color: var(--black);
}

.Box input {
    width: 100%;
    height: 45px;
    border: 1px solid #eee;
}

.Login_btn {
    display: flex;
    align-items: start;
    gap: 20px;
}

.myaccount_Container button {
    border: none;
}

.myaccount_Container button a {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .5px;
}

.Register_btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.Register_btn p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 2rem;
}

.Register_btn p span {
    font-weight: 700;
}

/* MY account mq */
.Register_btn p {
    font-size: 1rem;
    line-height: 1.7rem;
}

@media screen and (max-width:900px) {
    .myaccount {
        flex-direction: column;
    }

    .myaccount_Container {
        width: 100%;
    }
}


/* Contact Page */


.Contact_From {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
    padding: 50px;
    border-radius: 10px;
}

.Contact_From h3 {
    font-size: 2rem;
    font-family: var(--Rubik-font);
    padding-bottom: 20px;
}


.Inputs_Head {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
}

.Input_Box_Container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.Contact_Input_Box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.Contact_From label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5d5b58;
    padding-bottom: 4px;
    font-family: var(--Rubik-font);
}

.Contact_Input_Box input,
.Contact_From textarea {
    width: 100%;
    height: 45px;
    color: #000;
    padding-left: 12px;
    font-size: 0.9rem;
    outline: none;
    background-color: var(--white);
    border: 1px solid #eee;
}

.Contact_From textarea {
    height: 180px;
    padding: 2%;
}

.textarea_label {
    padding-top: 30px;
}

.Contact_From button {
    width: 160px;
    height: 50px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 0;
}

.Contact_From button a {
    font-size: 1.1rem;
}

.Contact_left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
}

.Contact_left li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    border: 1px solid #eee;
    padding: 20px 30px;
    border-radius: 12px;
}

.Contact_left li span {
    font-size: 0.9rem;
    font-family: var(--Rubik-font);
    font-weight: 500;
    position: absolute;
    top: -8px;
    background-color: var(--white);
    padding: 0px 10px;
    color: var(--gray-light);
}

.content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.contact_icon {
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
}

.contact_icon svg {
    fill: var(--white);
}

.contact_info h6 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5rem;
    font-family: var(--Rubik-font);
}

/* CONTACT PAGE MQ */
@media screen and (max-width:1000px) {
    .Contact {
        flex-direction: column;
    }

    .Contact_left {
        width: 100%;
    }

    .Contact_From {
        width: 100%;
    }

    .Input_Box_Container {
        flex-direction: column;
    }
}

@media screen and (max-width:500px) {
    .contact_info h6 {
        font-size: 0.9rem;
    }
}


/* Product View  Page */

.product-details-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product_container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.product_container .product_img {
    width: 40%;
    height: 500px;
    border: 1px solid var(--gray-light);
}

.product_container .product_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product_container .product_details {
    width: 60%;
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.product_details .rating i {
    color: #FDC904;
}

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

.product_details .price .red {
    color: red;
}

.product_details .price .lined {
    font-size: 13px;
    text-decoration: line-through;
}

.btncon {
    display: flex;
    width: 100%;
    gap: 10px;
}

.quntitybtn {
    margin-top: 5px;
    width: 30%;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    border: 1px solid var(--gray-light);
    background-color: var(--gray-color);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s;
    cursor: pointer;
}

.product_details .addtocartbtn {
    margin-top: 5px;
    width: 80%;
    padding: 18px 16px;
    font-size: 1.1rem;
    border: 1px solid var(--primary-color);
    background-color: var(--white);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;

    display: flex;
    align-items: center;
    justify-content: center;
}

.addtocartbtn:hover {
    cursor: pointer;
    background-color: var(--primary-color);
    border: 1px solid transparent;
    color: var(--white);
}

.delivery {
    width: 100%;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 15px;
}

ul li {
    padding: 5px 10px;
}

/* .product-details page mq */
@media (max-width: 900px) {
    .product_container {
        flex-direction: column;
    }

    .product_container .product_img {
        width: 100%;
    }

    .product_container .product_details {
        width: 100%;
    }
}

/* Wishlist  */


/*=============================== Shopping Cart PAGE SECTION ===============================*/

/* CART CONTAINER  */

.shop-wishlist-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.wl-top{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.wl-top h2{
    width: 100%;
    font-size: 2rem;
}
.wl-stats-bar{
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #E7FAEA;
}
.wl-stats-bar span{
    color: #0fb232;
    font-weight: 500;
}

.wishlist-wrapper{
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.wishlist-wrapper .wishlist-main{
    width: 100%;
    text-align: left;
    
}

table {
    width: 100%;
}

table tr td{
    padding: 20px 20px;
}



.wishlist-wrapper table tbody tr{
    border-bottom: 1px solid rgba(132, 132, 132, 0.5) !important;
    /* border-top: 1px solid rgba(132, 132, 132, 0.5) !important; */
}
.wishlist-wrapper table .product-name{
    width: 40%;
}

.wishlist-product{
    display: flex;
    align-items: center;
    gap: 20px;
}
.wishlist-img{
    width: 130px;
    height: 130px;
}
.wishlist-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-info h2{
    font-size: 1.2rem;
    width: 90%;
    font-weight: 600;
}
.wishlist-main table tbody tr td span{
    color: #0fb232;
}
.wishlist-main table tbody tr td button{
    width: 150px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition-fast);
}
.wishlist-main table tbody tr td button:hover{
    background-color: transparent;
    cursor: pointer;
    color: var(--primary-color);
}
.wishlist-share{
    display: flex;
    align-items: center;
    gap: 10px;
}
.wishlist-share h2{
    font-size: 1.5rem;
}
.wishlist-share-icons{
    display: flex;
    align-items: center;
    gap: 5px;
}
.wishlist-share-icons i{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #39599e;
    color: var(--white);
    border-radius: 100%;
}
.wishlist-share-icons i:nth-child(2){
    background-color: #45AFE2;
}
.wishlist-share-icons i:nth-child(3){
    background-color: #AB2E31;
}
.wishlist-share-icons i:nth-child(4){
    background-color: #FBB102;
}
.wishlist-share-icons i:nth-child(5){
    background-color: #00A901;
}

@media (max-width:1400px) {}
@media (max-width:1200px) {
    .wishlist-info h2{
        font-size: 1rem;
    }
}
@media (max-width:900px) {
    .wishlist-info h2{
        font-size: 13px;
    }
    .wishlist-img img{
        object-fit: contain;
    }
    .wishlist-img{
        width: 180px;
        height: 100px;
    }
}
@media (max-width:500px) {
    .wishlist-main table thead{
        display: none;
    }
    .wishlist-main table tbody tr{
        width: 100%;
        display: flex;
        flex-direction: column ;
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }
    .wishlist-main table tbody tr td{
        width: 100%;
        padding: 10px 0;
    }
    .wishlist-info h2{
        font-size: 16px;
    }
    .wishlist-img{
        width: 150px;
        height: 100px;
    }
    
}


/* Check Out */


/* .checkout*******=================================================== */
.heading {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3% 12%;
    background-color: #f7f7f7;
  }
  .heading h1 {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 500;
  }
  .heading p {
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 500;
    color: #8c6b3c;
  }
  .checkout-contant {
    padding: 0 12%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .higlight {
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 500;
    cursor: pointer;
    padding: 20px 10px;
    background-color: #efebeb;
    width: 100%;
    margin-top: 50px;
    border-left: 5px solid #8c6b3c;
  }
  .checkout-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
  }
  .checkout-left {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .checkout-left h2,
  .checkout-right h2 {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 500;
  }
  .checkout-left form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .checkout-left form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #8c6b3c24;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .checkout-left form .name-lbl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100% !important;
    gap: 10px;
  }
  .checkout-left form .name-lbl input {
    width: 100% !important;
    border: 1px solid #8c6b3c24;
    border-radius: 5px;
  }
  .checkout-left form .name-lbl label {
    width: 100% !important;
  }
  .checkout-left form label {
    text-transform: capitalize;
    font-weight: 500;
  }
  .checkout-left form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #8c6b3c24;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .checkout-left form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #8c6b3c24;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .checkout-left .chk_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1rem;
    /* padding: 10px 0; */
    height: 50px;
    /* background-color: red; */
    gap: 10px;
  }
  .checkout-left .chk_box input {
    width: 18px;
    height: 18px;
  }
  
  .checkout-right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .order-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }
  .order-table th,
  .order-table td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
  }
  .order-table input[type="radio"] {
    margin-right: 5px;
  }
  
  .payment-container {
    margin-top: 20px;
    width: 70%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    background-color: #ddd;
  }
  
  .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background: #f9f9f9;
  }
  .input-group i {
    margin-right: 10px;
    color: #333;
  }
  .input-group input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 16px;
  }
  .card-details {
    display: flex;
    gap: 10px;
  }
  
  .pay-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    background-color: #ccc;
  }
  .pay-btn:hover {
    background-color: #8c6b3c;
    color: #fff;
  }
  .checkout-right p {
    padding: 10px 0;
    font-size: 1.1rem;
  }
  .chekbox {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .chekbox input {
    width: 18px;
    height: 18px;
  }
  .chek-btn {
    width: 100%;
    padding: 12px;
    border: none;
  }
  .checkout-right .chek-btn button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    color: #000;
    font-size: 16px;
    background-color: #8c6b3c;
    color: #fff;
    transition: 0.3s;
  }
  .checkout-right .chek-btn button:hover {
    background-color: #000;
  }
  
  @media screen and (max-width: 1100px) {
    .checkout-container {
      flex-direction: column;
    }
    .checkout-left,
    .checkout-right {
      width: 100%;
    }
  }

/* .product-detail-container============================ */

.product-detail-container {
    width: 100%;
}

.product-detail-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.product-detail-btn button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: 0.5s;
    color: #fff;
    background-color: #8c6b3c;
    font-size: 1.1rem;
    border: 1px solid #8c6b3c;
}

.product-detail-btn button:hover {
    background-color: #000;
}

.product-detail {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #8c6b3c24;
}

.product-detail h1 {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 500;
}

.product-detail p {
    font-size: 1rem;
}

.product-detail p span {
    font-weight: 600;
}

.product-detail p i {
    color: #8c6b3c;
}

.additional-detail {
    width: 100%;
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    border-top: 1px solid #8c6b3c24;
    border-bottom: 1px solid #8c6b3c24;
    padding: 10px 0;
}

.additional-detail p  {
    display: flex;
    flex-direction: column;
    text-transform: capitalize;
    font-size: 18px;
    gap: 5px;
}


.Product_Content_Container {
    min-height: 550px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.reviews {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.reviews-contant-card-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.reviews-contant {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
}

.reviews-contant h3 {
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 500;
}

.reviews-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    width: 50%;
    padding: 50px 20px;
}

.reviews-card h1 {
    font-size: 1.5rem;
}

.reviews-star {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}

.reviews-star li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.reviews-star li i {
    color: #8c6b3c;
}

.reviews-star li p {
    font-size: 0.8rem;
}

.reviews-star li div {
    width: 100%;
    padding: 8px;
    background-color: #8c6b3c;
}

.reviews-star li:nth-child(2) div,
.reviews-star li:nth-child(3) div,
.reviews-star li:nth-child(4) div,
.reviews-star li:nth-child(5) div {
    background-color: #efebeb;
}

.client-rev {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.client-rev-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 30px;
    border: 1px solid #8c6b3c24;
    padding: 20px;
    width: 100%;
}

.client-rev-card-img {
    height: 100%;
}

.client-rev-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-rev-card-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.client-rev-card-info h5 {
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 500;
    color: #f47a6f;
}

.client-rev-card-info p {
    font-size: 0.8rem;
}

.client-rev-card-info .rev-card-star {
    color: #f7bc19;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.rev-form {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: #efebeb;
    padding: 20px 10px;
    border-radius: 8px;
}

.rev-form h3 {
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 500;
}

.rev-form form {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
}

.rev-form form p {
    font-size: 0.9rem;
    text-decoration: underline;
}

.rev-form form .star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #f7bc19;
}

.rev-form form input,
.rev-form form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #8c6b3c24;
    border-radius: 5px;
}

.rev-form form span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.rev-form form span input {
    width: 15px;
    height: 15px;
    background-color: #8c6b3c;
}

.rev-form form span p {
    font-size: 0.9rem;
    text-decoration: none !important;
}

.rev-form form :checked+p {
    color: #8c6b3c;
    text-decoration: none !important;
}

.rev-form button {
    padding: 10px 20px;
    background-color: #8c6b3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.shipping {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.shipping ul li,
.shipping ol li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

@media (max-width: 900px) {
    .produt-container {
        flex-direction: column;
    }

    .product-img-container,
    .product-info-container {
        width: 100%;
    }

    .product-detail-btn {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .product-detail-btn button {
        width: 100%;
    }

    .product-btn {
        width: 100%;
    }

    .product-detail-container {
        flex-direction: column;
    }

    .product-detail {
        width: 100%;
    }

    .reviews {
        flex-direction: column;
    }

    .reviews-contant,
    .rev-form {
        width: 100%;
    }
}

/* 500 */
@media screen and (max-width: 500px) {
    .reviews-contant-card-container {
        flex-direction: column;
    }

    .reviews-card,
    .reviews-star {
        width: 100%;
    }
}


/* Cart Page */


/*=============================== Shopping Cart PAGE SECTION ===============================*/

/* CART CONTAINER  */

.shop-cart-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.sc-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.sc-top h2 {
    width: 100%;
    font-size: 2rem;
}

.sc-stats-bar {
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #E7FAEA;
}

.sc-stats-bar span {
    color: #0fb232;
    font-weight: 500;
}

.cart-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cart-wrapper .cart-main {
    width: 70%;
    text-align: left;

}

.cart-wrapper table tbody tr {
    border-bottom: 1px solid rgba(132, 132, 132, 0.5) !important;
}

.cart-wrapper table .product-name {
    width: 50%;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-img {
    width: 130px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-img img {
    height: 100%;
    width: 100%;

    object-fit: contain;
}


.cart-info h2 {
    font-size: 1.2rem;
    width: 90%;
    font-weight: 600;
}

.quantity-box {
    display: flex;
    align-items: center;
}

.quantity-box span,
.quantity-box p {
    padding: 5px 8px;
    background-color: #EDEDED;
}

.quantity-box span {
    cursor: pointer;
}

.quantity-box span:nth-child(1) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.quantity-box span:nth-child(3) {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cart-option-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-option-btn button {
    width: 150px;
    height: 50px;
    border-radius: 7px;
    border: 1px solid rgba(132, 132, 132, 0.5);
    background-color: #d0e8ff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.cart-option-btn button:hover {
    background-color: transparent;
    cursor: pointer;
    border-color: var(--primary-color);
}

.cart-option-btn button:nth-child(2) {
    background-color: transparent;
    border-color: var(--primary-color);
    opacity: 0.2;
}

.cart-option-btn button:nth-child(2):hover {
    opacity: 1;
    background-color: var(--primary-color);
    color: var(--white);
}

.cart-total {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(132, 132, 132, 0.5);
    border-radius: 10px;
    padding: 2%;
}

.ct-top h2 {
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.ct-col {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(132, 132, 132, 0.3);
}

.ct-col-options {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.ct-col-options span {
    cursor: pointers;
}

.ct-col-options p {
    margin: 8px 0;
}

.ct-col-options h3 {
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.border-remove {
    border: none;
}

.cart-total button {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.cart-total button:hover {
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
}


@media (max-width:1400px) {
    .ct-col-options {
        width: 65%;
    }
}

@media (max-width:1200px) {
    .cart-info h2 {
        font-size: 1rem;
    }

    .cart-wrapper .cart-main {
        width: 65%;
    }

    .cart-total {
        width: 35%;
    }
}

@media (max-width:900px) {
    .cart-wrapper {
        flex-direction: column;
    }

    .cart-wrapper .cart-main,
    .cart-total {
        width: 100%;
    }

    .ct-col-options {
        width: 50%;
    }
}

@media (max-width:500px) {
    .cart-main table thead {
        display: none;
    }

    .cart-main table tbody tr {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }

    .cart-main table tbody tr td {
        width: 100%;
        padding: 10px 0;
    }

    .quantity-box {
        justify-content: flex-end;
        align-items: flex-end;
    }

    .quantity-box span,
    .quantity-box p {
        padding: 10px 12px;
    }

    .cart-total .ct-col:nth-child(3) {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }

    .ct-col-options {
        width: 100%;
    }
}