    /* Table of Contents
----------------------------------

 
/*------------------------------ (00)-Global CSS ------------------------------*/
/* 
0- Global CSS
1- Heading CSS  
2- Button CSS
3- Logo Area CSS
4- Page Title CSS
5- Header Area CSS  
6- Footer Area CSS
7- Scroll-Top Area CSS
8- Form CSS
9- Swiper Pagination
10- Sidebar Heading CSS
11- Sidebar CSS
*/



/*------------------------------ (01)-Home ------------------------------*/
/*
1- Home Slider
2- Counter
3- Category
4- Products
5- Deal
6- Offer
7- Testimonials
8- Blog
9- Features

*/



/*------------------------------ (02)-About ------------------------------*/
/*
1- About Us
2- Team
3- Team Single
4- Testimonials
5- Faqs
*/



/*------------------------------ (03)-Pages ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/*
01- Tab Information
02- Page Single 
03- Account-Form  
04- Address Details 
*/

/*--------------- PAGES ---------------*/
/*
1- Gallery
2- Login
3- Register
4- Profile
5- Edit Address
*/

 

/*------------------------------ (04)-Service ------------------------------*/
/*
1- Services
2- Service Single
*/



/*------------------------------ (05)-Portfolio ------------------------------*/
/*
1- Portfolio
2- Portfolio Single
*/



/*------------------------------ (06)-Blog ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Blog-Item 
02- Pages-No
*/

/*--------------- PAGES ---------------*/
/*
1- Blog Grid
2- Blog List
3- Blog Single 
*/



/*------------------------------ (07)-Shop ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Filter
02- Shop Header
03- Quantity Box
04- Product-Item
05- Shop-Title
06- Cart-Summary
*/

/*--------------- PAGES ---------------*/
/*
1- Shop Grid 
2- Shop Standard
3- Product Single
4- Wishlist
5- Cart
6- Checkout
7- Order List
8- Order Single
*/



/*------------------------------ (08)-Contact ------------------------------*/







/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/

/* Root Variables */
:root{
    --main-color: #F10086;
    --secondary-color: #F582A7;
    --black: #000;
    --white: #fff;
    --grey: #666; 
    --border-radius: 1rem;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Global Styles */
*{
    font-family: "Roboto", sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0; 
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    outline: none;
}

*:not(.gallery-item):not(.portfolio-item){
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/* Selection Styles */
*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

/* Body Styles */
body{
    background: whitesmoke;
    overflow-x: hidden;
}

/* HTML Styles */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

/* Section Styles */
section{
    padding: 3rem 5%;
}

/* Scrollbar Styles */
::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--black);
}

::-webkit-scrollbar-thumb{
    border-radius: 0.5rem;
    background: var(--secondary-color);
}

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

p{
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.6;
}

/*----- 1- Heading CSS -----*/
.heading{
    margin-bottom: 2rem;
}
  
/* Main Heading */ 
.heading h2{
    text-align: center;
    position: relative;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 4rem;
    color: var(--black);
}

/* Heading Line Style */ 
.heading h2:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    content: "";
    background-color: var(--main-color);
    left: 50%; 
    margin-left: -30px;
}

/* Sub Heading */
.heading h2 span{
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 2.2em;
    padding-left: 0.25em;
    color: rgba(0, 0, 0, 0.4);
    padding-bottom: 10px;
}

/* Headings with Linear Background */
.linear-bg .heading h2,
.linear-bg .heading h2 span{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
/* Button Styles */
.btn{
    display: inline-block;
    color: var(--white);
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    padding: 1.5rem 3rem;
    position: relative; 
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
	background-color: var(--main-color);
}

/* Button Animation */
.btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    width: 100%;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateX(-100%) rotate(45deg);
            transform: translateX(-100%) rotate(45deg);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

/* Button Styles, On Hover */
.btn:hover{
    background-color: var(--secondary-color);
	cursor: pointer;
}

/* Button Animation, On Hover */
.btn:hover::before{
    -webkit-transform: translateX(100%) rotate(45deg);
            transform: translateX(100%) rotate(45deg);
}

/*----- 3- Logo Area CSS -----*/  
/* Logo Styles */ 
.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

/* Logo Image */
.logo img{
    height: 5.5rem;
    width: auto;
}

/* Company Name */
.logo h2{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.2rem;
    line-height: 1;
}

/* Company Slogan */
.logo p{
    color: var(--white);
}

/*----- 4- Page Title CSS -----*/
.page-title .title{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("../images/PageTitle/pageTitle.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("../images/PageTitle/pageTitle.jpg");
    min-height: 40rem;
    background-repeat: no-repeat; 
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* Heading Title */
.page-title .title h2{
    color: var(--white);
    font-size: 5rem;
    font-weight: 500;
    position: relative;
    padding-top: 4rem;
}

/* Heading Line Style */
.page-title .title h2::before{
    content: '';
    position: absolute;
    bottom: -1rem; 
    left: 10%;
    background: var(--main-color);
    height: 0.3rem;
    width: 80%;
}

/* Link Section */
.page-title .link{
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 400;
    gap: 1.5rem;
    color: var(--main-color);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Home Link */
.page-title .link a{
    font-size: 2.5rem;
    color: var(--main-color);
}

/* Home Link, On Hover */
.page-title .link a:hover{
    text-decoration: underline;
}

/* Current Page Title */
.page-title .link span{
    font-size: 2.5rem;
    color: var(--black);
}    

/*----- 5- Header Area CSS -----*/
/* Header Styles */
.header{
    position: fixed;
    top: 0;
    left: 0;
    height: 6rem; 
    width: 100%;
    padding: 0rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999;
    background: var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
      -o-transition: all 0.5s linear;
         transition: all 0.5s linear;
}

/* Navbar Styles */
.header .navbar{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 1.8rem;
}

/* Header Dropdown Menu Styles */
.header .dropdown-menu{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
}

.header .dropdown-menu:hover button{
    color: var(--black);
}

/* When Hovering over the Dropdown Menu, show Dropdown Content */
.header .dropdown-menu:hover .dropdown-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scale(1);
            transform: scale(1);
}

/* Navbar Button */
.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.7rem;
    color: var(--white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    gap: 0.5rem;
}

/* Navbar Button, On Hover */
.header .navbar .nav-btn:hover{
    color: var(--black);
}

/* Dropdown Content Styles */
.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 20rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box; 
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
    -webkit-transform: scale(0); 
            transform: scale(0);
    -webkit-transition:  all 0.5s;
    -moz-transition:  all 0.5s;
    -o-transition:  all 0.5s;
    transition:  all 0.5s;
    z-index: 1000;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border-bottom: 0.4rem solid var(--main-color);
    overflow: hidden;
    padding: 0.5rem 0;
}

/* Header Dropdown Content Link */
.header .dropdown-content a{
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--black);
    padding: 1rem;
    cursor: pointer;
}

/* Header Dropdown Content Link, On Hover */
.header .dropdown-content a:hover{
    color: var(--main-color);
}

/* Header Icons */
.header .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    gap: 1rem;
}

/* Header Icon */
.header .icon-container .icon{
    font-size: 2rem;
    color: var(--white);
    padding: 0.2rem;
    cursor: pointer;
}

/* Header Icon, On Hover */
.header .icon-container .icon:hover{
    color: var(--black);
}

/* Header Cart Link */
.header #cart{
    position: relative;
  }
  
/* Header Cart Link Badge */
.header #cart .badge {
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Hide the menu bar button */
.header #menu-btn{
    display: none;
}

/* Hide Mobile menu */
.mobile-menu{
    display: none;
}

/*-- Search Container --*/
.search-container{
    position: absolute;
    top: 100%;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2rem;
    background: var(--white);
    width: 50rem;
    padding: 1.5rem 2rem;
    border-radius: 50rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    opacity: 0;
    -webkit-transform: translateX(300%);
            transform: translateX(300%);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease;
            transition: -webkit-transform 0.3s ease;
}

/* Active Search Container */
.search-container.active{
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

/* Search Input */
.search-container input{
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--black);
    font-size: 1.8rem;
    text-transform: none;
}

/* Search Button */
.search-container button{
    color: var(--secondary-color);
    background-color: transparent;
    font-size: 2rem;
    padding-right: 0.5rem;
    padding-left: 1rem;
}

/* Search Button, On Hover */
.search-container button:hover{
    color: var(--main-color);
    cursor: pointer;
}

/*----- 6- Footer Area CSS -----*/
.footer{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/Background/Footer.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/Background/Footer.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Footer Container */
.footer .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 3rem;
    padding: 2rem 5%;
}

/* Footer Item */
.footer-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 22rem; 
        flex: 1 1 22rem; 
}

/* First Footer Item */
.footer-item:first-child{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem; 
        flex: 1 1 30rem;
}

/* Footer Company Name */
.footer-item > h2{ 
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    padding-bottom: 2rem;
}

/* Footer Items direct child paragraphs */
.footer-item > p{
    padding-top: 1rem;
    font-size: 1.5rem;
} 

/* Footer paragraphs */
.footer-item p{
    color: var(--white); 
}

/* Footer Social Account Links */
.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer Social Account Link */
.footer-item .social a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Footer Social Account Link Icon */
.footer-item .social a i{
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    background-color: var(--main-color);
    font-size: 1.7rem;
    border-radius: 0.5rem;
}

/* Footer Social Account Link Icon, On Link Hover */
.footer-item .social a:hover i{
    background-color: var(--secondary-color);
}

/* Footer Item Info Paragraph */
.footer-item .info p{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Footer Item Info Link */
.footer-item .info a{ 
    font-size: 1.6rem;
    color: var(--white);
}

.footer-item .links p:hover a{
    color: var(--main-color);
}

/* Footer Item Info Paragraph Icon */
.footer-item .links p i{
    color: var(--main-color);
    font-size: 1.5rem;
}

/* Footer Contact Info Text */
.footer-item .connect p{
    margin-bottom: 0.7rem;
}

/* Footer Contact Info Icon */
.footer-item .connect i{
    font-size: 1.6rem;
    color: var(--main-color);
    height: 3rem;
    width: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Footer Contact Info Text with "gmail" class */
.footer-item .gmail{
    text-transform: none;
}

/* Designer credit and rights */
.footer .content{
    text-align: center;
    padding: 2rem 0;
    background-color: var(--main-color);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

/*----- 7- Scroll-Top Area CSS -----*/
/* Scroll Top Button */
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 2.2rem;
    color: var(--main-color);
    background: var(--white);
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s; 
    transition: all 0.2s;
    z-index: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Scroll Top Button, On Hover */
.scroll-top:hover{
    color: var(--white);
    background-color: var(--main-color);
    cursor: pointer;
}

/*----- 8- Form CSS -----*/
/* Autofilled input fields */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: var(--black) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}
  
/* Form input box container */
.form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
  
/* Form input box container */
.form .input-box .box{
    width: 49%;
}
  
/* Form Input Field */
.form .box{
    width: 100%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1rem 1.5rem; 
    margin: 0.7rem 0;
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    text-transform: none;
}

/* Form Input Field placeholder */
.form .box::-webkit-input-placeholder{
    text-transform: capitalize;
}

.form .box::-moz-placeholder{
    text-transform: capitalize;
}

.form .box:-ms-input-placeholder{
    text-transform: capitalize;
}

.form .box::placeholder{
    text-transform: capitalize;
}

/* Focused Input Field */
.form .box:focus{
    border-color: var(--main-color);
}

/* Form Textarea */
.form textarea{
    resize: none;
    height: 20rem;
}

/* Form Button */
.form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}

/*----- 9- Swiper Pagination CSS -----*/
/* Swiper pagination bullet */
.swiper-pagination-bullet{ 
    height: 1rem;
    width: 4rem;
    background: var(--white);
    opacity: 0.7;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Active swiper pagination bullet */
.swiper-pagination-bullet-active{
    background: var(--main-color);
    opacity: 0.9;
}

/*----- 10- Sidebar Heading CSS -----*/
/* Sidebar Heading Title */
.sidebar-heading h2{
    word-spacing: 1px;  
    font-size: 2rem; 
    font-weight: 500;
    color: var(--white);
    background-color: var(--main-color);
    padding: 1rem 1.5rem;
    text-transform: uppercase;
} 

/*----- 11- Sidebar CSS -----*/
/*
1- Search
2- Category
3- Recent Items
4- Tags
*/

/* sidebar container */
.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 28rem; 
        flex: 1 1 28rem;  
}

/* Sidebar item */
.sidebar .sidebar-item{
    margin-bottom: 1.5rem;
    border: var(--border);
    border-radius: var(--border-radius);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

.sidebar .box-container{
    padding: 1.5rem;
}

/*-- 1- Search --*/

/* Search input box */
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 5rem;
}

/* Search Input Field */
.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem; 
    overflow: hidden;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

/* Focused Search Input Field */
.sidebar .search .input-box input:focus{ 
    border-color: var(--main-color);
}

/* Search button */
.sidebar .search .input-box button{
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Search button, Hover Effect */
.sidebar .search .input-box button:hover{
    background-color: var(--secondary-color);
}

/*-- 2- Category --*/ 

/* Category item */
.sidebar .category a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--main-color);
    border-left: 0.5rem solid var(--secondary-color);
    margin-bottom: 1rem;
    padding: 1rem;
}

/* Last Category item */
.sidebar .category a:last-child{
    margin-bottom: 0;
}

/* Category item text */
.sidebar .category a span{
    font-size: 1.7rem;
    color: var(--white);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Category item Icon */
.sidebar .category a span i{
    font-size: 1.8rem;
    color: var(--white);
}

/* Category item Quantity */
.sidebar .category a p{
    color: var(--white);
}

/* Category item, On Hover */
.sidebar .category a:hover{
    background-color: var(--secondary-color);
}

/* Category Icon, On Item Hover */
.sidebar .category a:hover i{
    color: var(--white);
}

/*-- 3- Post Items --*/

/* Post Item */
.sidebar .post-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Last Post Item */
.sidebar .post-item:last-child{
    margin-bottom: 0;
}

/* Post Image */
.sidebar .post-item img{
    height: 8rem;
    width: 10rem;
    border-radius: 0.5rem;
}

/* Recent Post Image */
.sidebar .popular-products .post-item img{
    width: 8rem;
}

/* Post Name Link */
.sidebar .post-item a{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
}

/* Recent Post Name Link */
.sidebar .recent-posts .post-item a{
    font-size: 2rem;
}

/* Post Name Link, On Hover */
.sidebar .post-item a:hover{
    color: var(--main-color);
}

/* Post Price */
.sidebar .post-item .price{
    padding-top: 0.5rem;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Post Discounted Price */
.sidebar .post-item .price span{
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey);
    text-decoration: line-through;
    padding-left: 0.2rem;
}

/*-- 4- Tags --*/
.sidebar .tags .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.7rem;
}

/* Individual Tag*/
.sidebar .tag-item{
    background-color: var(--main-color);
    color: var(--white);
    font-size: 1.7rem;
    padding: 1rem 1.5rem;
    border-radius: 5rem;
}

/* Individual Tag, On Hover */
.sidebar .tag-item:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}


/*----- 12- Loader CSS -----*/
.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 100000;
    -webkit-transition: none;
            transition: none;
}

.pre-loader img{
    height: 10rem;
    width: 10rem;
}

.pre-loader.fade-out{
    top: -110%;
}

.pre-loader #loader{
    display: block;
    position: relative;
    width: 20rem;
    height: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pre-loader #loader:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--secondary-color);
    -webkit-animation: spin 3s linear infinite;
            animation: spin 3s linear infinite;
}

.pre-loader #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--secondary-color);
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}


/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)- Home (Start) ------------------------------*/

/*----- 1- Home-Slider -----*/
/* Home section */
.home{ 
    padding: 0;
    position: relative;
} 
  
/* Home slider */
.home-slider{ 
    position: relative; 
    overflow: hidden;
}
  
/* Home Slider Navigation Buttons */
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
}

/* Home Slider Navigation Buttons Icon */
.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after{
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
  
/* Home Slider Navigation Buttons, On Hover */
.home-slider .swiper-button-next:hover,
.home-slider .swiper-button-prev:hover{
    background-color: var(--main-color);
}

/* Home slider pagination bullet */
.home-slider .swiper-pagination-bullet{
    height: 1rem;
    width: 4rem;
    border-radius: 50rem;
    background: var(--white);
    opacity: 0.5;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}
  
/* Home slider Active pagination bullet */
.home-slider .swiper-pagination-bullet-active{
    width: 4rem;
    background: var(--main-color);
    opacity: 0.9;
}
  
/* Home Slide */
.home-item{
    height: 65rem;
}
  
/* Home Slide Content */
.home-item .content{ 
    padding: 10rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}
  
/* Home Text Container */
.home-item .content .text{
    padding-top: 5rem;
    width: 75rem;
    text-align: center;
}
  
/* Home Slide Heading */
.home-item .content h3{
    font-size: 5.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Home Slide Paragraph */
.home-item .content p{
    letter-spacing: 1.5px;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 2rem;
}

/* Home Buttons */
.home-item .content .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
}

/* Home Second Button */
.home-item .content .btn-container .btn:nth-child(2){
    background-color: var(--secondary-color);
}

/* Home Second Button, On Hover */
.home-item .content .btn-container .btn:nth-child(2):hover{
    background-color: var(--main-color);
}

/*----- 2- Counter -----*/
/* Statistic Section */
.counting{
    width: 100%;
    padding: 3rem 5%;
    margin: 1rem 0;
    min-height: 15rem;
    display: -webkit-box;  
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/Background/Counter.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Statistic Box */
.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
    padding: 2rem;
}

/* Statistic Box Icon */
.counting .box i{
    color: var(--white);
    font-size: 4.5rem;
    padding-bottom: 1rem;
}

/* Statistic Box Count */
.counting .box .count{
    color: var(--white);
    font-size: 4rem;
    padding-bottom: 0.5rem;
}

/* Statistic Box Title */
.counting .box h3{
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
}

/*----- 3- Category -----*/
/* Arrange Category boxes */
.shop-categories .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    gap: 1rem;
    grid-template-areas: 
    'category-1 category-2 category-3'
    'category-1 category-4 category-5';
}

/* Assign grid areas to Each Category Box */
.category-1 {
    grid-area: category-1;
}

.category-2 {
    grid-area: category-2;
}

.category-3 {
    grid-area: category-3;
}

.category-4 {
    grid-area: category-4;
}

.category-5 {
    grid-area: category-5;
}

/* Individual Category boxes */
.category-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    cursor: pointer;
}

/* Semi-transparent overlay, On Hover */
.category-item a{
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    outline-offset: -1.5rem;
    outline: 0.15rem solid var(--white);
}

/* Enlarge Category Image, On Category Hover */
.category-item:hover img{
    scale: 1.1;
}

/* category Title */
.category-item h3{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    font-family: 'Pacifico', cursive;
}

/*----- 4- Products -----*/
.featured-products .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/*----- 5- Deal -----*/
/* Background styling for the Deal Section */
.deal{
    background: url("../images/Background/Deal.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 80vh;
}

/* Deal Content */
.deal .content{
    width: 60rem;
    text-align: center;
}

/* Deal Main Title */
.deal .content h2{
    color: var(--black);
    font-size: 4.5rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

/* Specific Part of the Deal Main Title */
.deal .content h2 span{
    color: var(--main-color);
    font-family: 'Playfair Display', serif;
}

/* Deal Description Paragraph */
.deal .content p{
    font-size: 1.6rem;
}

/* Deal Countdown Container */
.deal .content .counter{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 5rem;
    margin: 2rem 0;
    border: 0.2rem solid var(--main-color);
    border-top-right-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

/* Deal Countdown Time Count */
.deal .counter-item h3{
    color: var(--main-color);
    font-size: 6rem;
    font-weight: 500;
}

/* Deal Countdown Time Label */
.deal .counter-item span{
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    font-style: italic;
}

/* Deal Countdown Separator */
.deal .separator{
    color: var(--main-color);
    font-size: 4rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*----- 6- Offers -----*/
/* Offers Section */
.offers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem; 
}

/* Individual Offer Item */
.offers .offer-item{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    height: 30rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Offer Content */
.offers .content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    background:         linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

/* Offer Heading */
.offers .content h3{
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

/* Offer Description */
.offers .content p{
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    padding-bottom: 2rem;
}

/* Enlarge images and apply rotation on hover */
.offers .offer-item:hover img{
    -webkit-transform: scale(1.2) rotate(-4deg);
            transform: scale(1.2) rotate(-4deg);
}

/*----- 7-Home Testimonials -----*/
.testimonial-bg{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("../images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),url("../images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/*----- 8- Blogs -----*/
.blog.main .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/*----- 9- Features -----*/
.features{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    background-color: #eee;
}

/* Individual Feature item */
.features .feature-item{
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 0.2rem solid var(--main-color);
    border-radius: 1rem;
    padding: 2rem;
    gap: 1rem;
}

/* Feature Icon */
.features .feature-item i{
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    color:var(--main-color);
    background: #ffc0d4;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Feature Icon color and background change, On Hover. */
.features .feature-item:hover i{
    color: var(--white);
    background-color: var(--main-color);
}

/* Feature Title */
.features .feature-item h3{
    font-size: 2.2rem;
    font-weight: 600;
    color:var(--black);
    padding-top: 0.5rem;
}

/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 0;
}

/*----- 1- About Us -----*/
.about .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}

/* About Video Section */
.about .video{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    height: 45rem;
    position: relative;
}

/* About Video Element */
.about .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    border: 1.5rem solid var(--white);
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* About Video Heading */
.about .video h2{
    position: absolute;
    bottom: 1rem;
    right: 0;
    font-size: 3rem;
    background: var(--white);
    width: 50%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;
    border-top-left-radius: var(--border-radius);
}

/* About Content Section */
.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}
 
/* About Main Heading */
.about .content h2{
    color: var(--black);
    font-size: 4rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

/* About Sub Heading */
.about .content h5{
    color: var(--black);
    font-size: 1.8rem;
    line-height: 1.5;
    padding-bottom: 1.5rem;
}

/* About Description */
.about .content p{
    padding-bottom: 1rem;
}

/* Contact Button in About Section */
.about .content .btn{
    margin-top: 1rem;
}

/*----- 2- Team -----*/
/* Team Members */
.team .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/* Individual Team member */
.team-item {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Team member Pic */
.team-item .image {
  border: 0.5rem solid var(--white);
  width: 80%;
  border-radius: 50%;
  overflow: hidden;
}

/* Change border color on hover */
.team-item:hover .image{
    border-color: var(--main-color);
}

/* Enlarge image on hover */
.team-item:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
  
/* Team member Content Section */
.team-item .content{
    padding-top: 2rem;
}

/* Team member name */
.team-item .content h3{
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--black);
}

/* Team member name, On Hover */
.team-item .content h3:hover{
    color: var(--main-color);
}

/* Team member Role */
.team-item .content p{
  padding: 0.5rem 0;
  color: var(--main-color);
}
  
/* Team Member Social Media Accounts */
.team-item .content .icon-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
  
/* Team Member Social Media Link */
.team-item .icon-container a{
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--main-color);
  border: 0.1rem solid var(--main-color);
  font-size: 1.5rem;
  border-radius: 50%;
}

/* Team Member Social Media Link, On Hover */
.team-item .icon-container a:hover{
  color: var(--white);
  background-color: var(--main-color);
}

/*----- 3- Team Single -----*/
.team-single .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

/* Team Member Image */
.team-single .image{ 
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem; 
    height: 50rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Information Section */
.team-single .information{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

/* Team Member Name */
.team-single .information h3{
    color: var(--black);
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

/* Team Member Role */
.team-single .information p{
    color: var(--main-color);
    font-weight: 500;
    padding-bottom: 1.5rem;
}

/* Personal Biography Section */
.team-single .information .team-about{
    padding-top: 1.5rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Personal Biography Description */
.team-single .team-about .text{
    font-size: 1.6rem;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.7;
}

/* Personal Contact Information */
.team-single .team-contacts{
    padding: 2rem 0;
}

/* Personal Contact Information Item */
.team-single .team-contacts li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
}

/* Personal Information Heading */
.team-single .team-contacts h4{
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
}

/* Personal Information Icon */
.team-single .team-contacts i{
    font-size: 1.6rem;
    color: var(--main-color);
    padding-right: 0.5rem;
}

/* Personal Information Text */
.team-single .team-contacts span{
    font-size: 1.6rem;
    color: var(--grey);
    text-transform: none;
}

/* Social Media Accounts */
.team-single .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

/* Social Media Account Link */
.team-single .icon-container a{
    height: 4rem;
    width: 4rem;
    border-radius: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

/* Social Media Account Link, On Hover */
.team-single .icon-container a:hover{
    background-color: var(--secondary-color);
}

/*----- 4- Testimonials -----*/
.testimonial{ 
    position: relative; 
}

/* Testimonial Slider */ 
.testimonial-slider{
    position: relative;
    padding: 0rem 15rem;
    padding-bottom: 4.5rem;
    overflow: hidden;
}

/* Testimonial Slider Navigation Buttons */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev{
    background-color: var(--main-color);
    font-size: 1rem;
    height: 5rem;
    width: 5rem;
    border-radius: var(--border-radius);
    padding: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Testimonial Slider Next Button */
.testimonial-slider .swiper-button-next{
    right: 5rem;
}

/* Testimonial Slider Previous Button */
.testimonial-slider .swiper-button-prev{
    left: 5rem;
}

/* Home Slider Navigation Buttons Icon */
.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white); 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Testimonial Slider Navigation Buttons, On Hover */
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background-color: var(--black);
}

/* Testimonial Slider pagination bullet */
.testimonial .swiper-pagination-bullet{
    border-radius: 50rem;
    background: var(--secondary-color);
    opacity: 0.7;
}

/* Testimonial Slider Active pagination bullet */
.testimonial .swiper-pagination-bullet-active{
    background: var(--main-color);
    opacity: 0.9;
}
    
/* Testimonial Slide */
.testi-item{
    text-align: center;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
    overflow: hidden;
}

/* Testimonial Content Section */
.testi-item .content{
    background-color: var(--main-color);
    padding: 4rem 2rem 6rem 2rem;
}

/* Testimonial Comment Section */ 
.testi-item .comment{
    padding: 1rem;
    position: relative;
}

/* Start & End quote icon */
.testi-item .quote-start,
.testi-item .quote-end{
    position: absolute;
    font-size: 2.5rem;
    color: var(--white);
}

/* Start quote icon */ 
.testi-item .comment .quote-start{
    top: 0;
    left: 0;
}

/* End quote icon */ 
.testi-item .comment .quote-end{
    right: 0;
    bottom: 0;
}

/* Testimonial text */ 
.testi-item .comment p{
    color: var(--white);
    margin-top: 2rem;
}

/* Testimonial Introduction Section */ 
.testi-item .intro{
    position: relative;
    padding: 8rem 2rem 4rem 2rem;
}

/* Testimonial image */ 
.testi-item .intro img{
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 0;
    left: 50%;
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
}

/* Testimonial Rating */ 
.testi-item .intro .rating{
    color: var(--main-color);
    font-size: 1.6rem;
}

/* Testimonial author name */ 
.testi-item .intro h3{
    font-size: 2rem;
    color: var(--black);
    padding: 0.5rem 0;
}

/* Testimonial author designation */ 
.testi-item .intro h5{
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
}

/*----- 5- Faqs -----*/
/* FAQ Accordion */
.faq .accordion{
    background: var(--white);
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
    overflow: hidden;
} 
 
/* Last FAQ Accordion */ 
.faq .accordion:last-child{
    margin-bottom: 0rem;
}  

/* Faq Accordion heading */
.faq .accordion .accordion-heading{
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    background: var(--main-color);
    cursor: pointer;
}

/* Active Faq Accordion heading */
.faq .accordion.active .accordion-heading {
    background: var(--black); 
}

/* FAQ Question */ 
.faq .accordion .accordion-heading h3{
    font-size: 2rem;
    color: var(--white);
}

/* Toggle Icon */ 
.faq .accordion .accordion-heading i{
    color: var(--white);
    font-size: 2rem;
}

/* Active Faq accordion content */
.faq .accordion.active .accordion-content{
    display: block;
}

/* Faq accordion content */
.faq .accordion-content{
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (03)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Tab Information -----*/
.tab-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Portfolio Filter Tabs Button */
.tab-buttons .button{
    padding: 1rem 2rem;
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Portfolio Filter Tabs Button, Hover & Active Effect */
.tab-buttons .button:hover,
.tab-buttons .button.active{
    cursor: pointer;
    background-color: var(--main-color);
}

/*----- 02- Page Single -----*/
.page-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.page-single .sidebar .sidebar-item{
    margin-bottom: 0;
}

.page-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem; 
        flex: 1 1 75rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .image{
    height: 40rem; 
}

.page-info .content{
    padding: 2rem;
}

.page-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    padding-bottom: 1rem;
}

.page-info .important{
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.page-info p{
    padding-bottom: 1rem;
}

.page-info .page-gallery{ 
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}
  
.page-info .page-gallery img{
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.page-info .sub-section{
    padding-top: 2rem;
}

.page-info .sub-section p{
    margin-bottom: -1rem;
}

.page-info .sub-section ul{
    list-style: none;
}

.page-info .sub-section ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    line-height: 1.6;
} 

.page-info .sub-section ul li p{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.page-info .sub-section ul li strong{
    display: inline;
    font-size: 1.6rem;
    color: var(--black);
}

.page-info .sub-section ul i{ 
    color: var(--main-color);
    font-size: 1.4rem;
    height: 1.8rem;
    width: 1rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*----- 03- Account-Form -----*/
.account-form{
    max-width: 45rem;
    padding: 5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin: 0rem auto;
    text-align: center;
    border: 0.2rem solid var(--main-color);
}
  
/* Account Form Heading */
.account-form h3{ 
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 500;
    padding-bottom: 1.5rem;
    color: var(--main-color);
    text-transform: uppercase;
}

/* Account Form input box container */
.account-form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Account Form Input Field inside input box */
.account-form .input-box .box{
    width: 49%;
}

/* Account Form Input Field */
.account-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--grey);
    border: 0.15rem solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.2rem;
    text-transform: none;
    margin: 0.7rem 0;
}

/* Account Form Input Field placeholder */
.account-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.account-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.account-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.account-form .box::placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

/* Focused Input Field */
.account-form .box:focus{
    border-color: var(--main-color);
}

/* Account Form Paragraph */
.account-form p{
    padding-top: 2rem;
    text-align: center;
    padding-bottom: 1rem;
}

/* Account Form Button */
.account-form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1.5rem;
}

/* Account Form link */
.account-form .link{
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Account Form link, On Hover */
.account-form .link:hover{
    text-decoration: underline;
}

/*----- 04- Address-Details -----*/
.address-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;
}

/* Address Title */
.address-details .title{
    background-color: var(--main-color);
    color: var(--white);
    padding: 1rem 0.8rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Address Title Heading */
.address-details .title h3{ 
    font-size: 1.8rem;
}

/* Address Container */
.address-details .address-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Each Address Item */
.address-details .address{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
}

/* Address info */
.address-details .info p{ 
    font-weight: 400;
    padding-bottom: 1rem;
}

/* Address info Label */
.address-details .info p span{
    font-weight: bold;
    color: var(--black);
    padding-right: 0.5rem;
}


/*--------------- PAGES ---------------*/

/*----- 1- Gallery -----*/
/* Each Gallery Item */
.gallery-item{
    width: 33.3%;
    padding: 0.8rem;
}

.gallery-content{
    height: 25rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
} 

/* Gallery Item overlay */
.gallery-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    transition-delay: 0.25s;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    z-index: 1;
}

/* Gallery Item Content */
.gallery-content .content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
    opacity: 0;
    z-index: 2;
}

/* Gallery Item Title */
.gallery-content .content h4{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
    letter-spacing: 0.1rem;
    padding-bottom: 0.5rem;
}

/* Gallery Item Category */
.gallery-content .content p{
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 1.5rem;
}

/* Gallery Item Button */
.gallery-content .content a{
    display: inline-block;
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
	color: var(--white);
    background-color: var(--main-color);
}

/* Gallery Item Button, On Hover */
.gallery-content .content a:hover{
    background-color: var(--secondary-color);
}

/* Gallery Item, On Hover */
.gallery-content:hover::before{
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
}

.gallery-content:hover .content{
    opacity: 1;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

/*----- 2- Login -----*/
/* Login Form Information Section */
.login form .info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0.5rem 0;
}

/* Remember Me Checkbox Section */
.login form .remember {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
  
/* Remember Me label */
.login form .remember label{
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}
  
/*----- 3- Register -----*/
/* Register Terms container */
.register form .terms{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
  
/* Register Terms label */
.register form .terms label{
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}
  
/* Register Terms label SubText */
.register form .terms label span{
    color: var(--main-color);
}

/*----- 4- Profile -----*/
.profile .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
} 

/* Each Profile item */
.profile-item{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: var(--border-radius);
}

/* Profile Details Section */
.profile .profile-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

/* Profile Details Content */
.profile .profile-details .content{
    text-align: center;
}

/* User Profile Image */
.profile .profile-details .content img{
    height: 15rem;
    width: 15rem;
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
}

/* User Profile Name */
.profile .profile-details .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

/* Profile Detail Item Text */
.profile .profile-details .content p{
    font-weight: 400;
}

/* Profile Gmail Text */
.profile .profile-details .content .gmail{
    text-transform: none;
}

/* Profile Button */
.profile .btn{
    margin-top: 1.5rem;
}

/*----- 5- Edit Address -----*/
.edit-address .account-form{
    max-width: 80rem;
}

/*------------------------------ (03)-Pages (End) ------------------------------*/



/*------------------------------ (04)-Service (Start) ------------------------------*/

/*----- 1- Services -----*/
/* Services */
.services .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/* Each Service Item */
.service-item{
    text-align: center;
    padding: 1rem 1.5rem;
}

/* Service Image */
.service-item .image{
    position: relative;
    height: 25rem;
    width: 25rem;
    margin: 0 auto;
}

.service-item .image img{
    border-radius: 50%;
    outline-offset: -0.5rem;
    outline: 0.15rem solid var(--white);
}

/* Service Number */
.service-item .image span{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 0.5rem;
    padding: 1rem 2.5rem;
    -webkit-transform: translateY(-2.5rem);
            transform: translateY(-2.5rem);
}

/* Service Content */
.service-item .content{
    padding-top: 3rem;
}

/* Service Name */
.service-item h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Service Name, On Hover */
.service-item h3:hover{
    color: var(--main-color);
}

/*----- 2- Service Single -----*/


/*------------------------------ (04)-Service (End) ------------------------------*/



/*------------------------------ (05)-Portfolio (Start) ------------------------------*/

/*----- 1- Portfolio -----*/
.portfolio-item{
    width: 33.3%;
    padding: 0.8rem;
}

.portfolio-content{
    height: 30rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Portfolio Item Image */
.portfolio-item img{
    border-radius: var(--border-radius); 
    overflow: hidden;
}

/* Portfolio Item Content */
.portfolio-item .content{
    position: absolute;
    left: 20%;
    bottom: 0;
    border-top-left-radius: var(--border-radius);
    background-color: rgba(241, 0, 134, 0.7);
    padding: 2rem;
    text-align: left;
    width: 100%;
}

/* Portfolio Item Category */
.portfolio-item .content h6{
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 0.5rem;
}

/* Portfolio Item Title */
.portfolio-item .content h4{
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: var(--white);
    line-height: 1.4;
}

/* Portfolio Item Title, On Hover */
.portfolio-item .content h4:hover{
    color: var(--black);
}

/*----- 2- Portfolio-Single -----*/
/* Portfolio Challenges List Section */
.portfolio-info .portfolio-challenges .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 1rem;
}

/* Portfolio Challenges List */
.portfolio-info .portfolio-challenges ul{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

/* Portfolio Details Section */
.portfolio-single .portfolio-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    padding: 4rem;
    border-radius: var(--border-radius);
    background-color: var(--black);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Portfolio Details - Sub-Heading */
.portfolio-single .portfolio-details .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 2rem;
    line-height: 1;
}

/* Portfolio Detail Item */
.portfolio-single .detail-item{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
}

/* Last Portfolio Detail Item */
.portfolio-single .detail-item:last-child{
    padding-bottom: 0;
}

/* Portfolio Detail Item Icon */
.portfolio-single .detail-item i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Portfolio Detail Item Heading */
.portfolio-single .detail-item h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    padding-bottom: 0.5rem;
}

/* Portfolio Detail Item Text */
.portfolio-single .detail-item .detail-content p{
    font-weight: 400;
    color: #f7f7f7;
    line-height: 1;
}


/*------------------------------ (05)-Portfolio (Start) ------------------------------*/



/*------------------------------ (06)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Item -----*/
/* Each Blog Item */
.blog-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
    overflow: hidden; 
    border-radius: var(--border-radius);
}
  
/* Blog Image */
.blog-item .image{
    height: 25rem;
    overflow: hidden;
}

/* Blog Content */
.blog-item .content{
    padding: 2rem 1.5rem;
}

/* Blog Title */
.blog-item .content .main-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
}

/* Blog Title, On Hover */
.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

/* Blog Description */
.blog-item .content p{
    padding-top: 1rem;
}

/*----- 02- Pages-No -----*/
/* page numbers */
.pages-no{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
}

/* page number buttons */
.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Page number individual button */
.pages-no .item{
    color: var(--white);
    background-color: var(--black);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    border-radius: var(--border-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Page number individual button, active and hover effect */
.pages-no .item.active,
.pages-no .item:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

/* All page number Button */
.pages-no .numbers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/*--------------- PAGES ---------------*/
.blog-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Blog Grid -----*/
/* Blog Grid Container */
.blog.grid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Blog Grid items */
.blog-container.grid .blog-items{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/*----- 2- Blog List -----*/
/* Blog List Container */
.blog.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

/* Blog List items */
.blog-container.list .blog-item{
    width: 100%;
    margin-bottom: 1rem;
}

/* Blog List items Image */
.blog-container.list .blog-item .image{
    height: 30rem;
}

/*----- 3- Blog Single -----*/
/* Blog Published date */
.blog-info .date{
    position: absolute;
    top: 0rem;
    left: 0rem;
    color: var(--white);
    background-color: var(--main-color);
    opacity: 0.9;
    font-size: 2rem;
    padding: 2rem;
    text-align: center;
}

/* Blog Image */
.blog-info .image{  
    overflow: hidden;
    position: relative;
}
  
/* Blog Details Section */
.blog-info .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

/* Blog Detail Item */
.blog-info .details h5{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

/* Blog Detail Icon */
.blog-info .details h5 i{
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Blog Detail Text */
.blog-info .details h5 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}
  
/* Blog Important Note */
.blog-info .important{
    padding: 2rem 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black) !important;
    font-style: italic;
    line-height: 1.8;
    border-left: 0.4rem solid var(--main-color);
    margin-bottom: 2rem;
    margin-top: 1rem;
    margin-left: 1rem;
}

/* Blog Gallery */
.blog-info .page-gallery{
    -ms-grid-columns: (minmax(24rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr)) !important;
}

/* Blog End Details */
.blog-info .end-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
  
/* Blog Tags and Share Container */
.blog-info .tags, 
.blog-info .share{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}
  
/* Blog Tags Link */
.blog-info .tags span{
    color: var(--white);
    background-color: var(--main-color);
    font-size: 1.6rem;
    padding: 0.7rem 1.2rem;
}

/* Blog Tags Link, On Hover */
.blog-info .tags span:hover{
    background-color: var(--secondary-color);
}
 
/* Blog Share Title */
.blog-info .share h3{
    color: var(--black);
    font-size: 1.6rem;
    padding-right: 1rem;
}
  
/* Blog Share Icon */
.blog-info .share i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    color: var(--grey);
    font-size: 1.6rem;
}
  
/* Blog Share Icon, On Hover */
.blog-info .share i:hover{
    color: var(--main-color);
    cursor: pointer;
}
   
/*-- 2- Comments --*/
.blog-single .comments{
    margin: 1rem 0;
    padding: 2rem;
    background-color: var(--white);;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
} 

/* All Comments section Heading */
.blog-single .comments h4{  
    font-size: 2.5rem; 
    color: var(--black); 
    padding-bottom: 2rem;
} 

.comment-item{
    padding-bottom: 1rem;
}

.comment-item:last-child{
    padding-bottom: 0;
}

/* Each Comment Item */
.comment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
}

/* Comment image */
.comment .image{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    border: 0.5rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

/* Comment Content */
.comment .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

/* Comment Introduction section */
.comment .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
}

/* Comment Author Name */
.comment .intro h3{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

/* Comment Date */
.comment .intro h6{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.5rem 0.8rem;
}

/* Comment Text */
.comment .text{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
    padding-bottom: 1rem;
}

/* Comment Action Button */
.comment .icon-item{
    display: inline-block;
    color: var(--grey);
    cursor: pointer;
}

/* Comment Action Button Text, On Button Hover */
.comment .icon-item:hover span{
    color: var(--main-color);
}

/* Comment Action Button Icon */
.comment .icon-item i{
    color: var(--main-color);
    font-size: 1.5rem;
    padding-right: 0.5rem
}

/* Comment Action Button Text */
.comment .icon-item span{
    color: var(--grey);
    font-size: 1.6rem;
}

/* Blog Reply Comment */
.comment.reply{
    margin-left: 12rem;
}

/* Blog Reply Comment Content */
.comment.reply .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
}

/*-- 3- Leave A Reply --*/
.leave-reply{
    padding: 2rem;
    background-color: var(--white);;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
} 

/* Leave Reply Form Heading */
.leave-reply .form h3{
    font-size: 2.5rem; 
    color: var(--black); 
    padding-bottom: 2rem;
}

/*------------------------------ (06)-Blog (End) ------------------------------*/



/*------------------------------ (07)-Shop (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Filter -----*/
/* Filter container */
.filter .box-container{
    padding-top: 4rem;
}

/* Filter slider */
.filter .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

/* Slider progress */
.filter .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--secondary-color);
    -webkit-transition: none;
            transition: none;
}

/* Range input Container */
.range-input{
    position: relative;
    -webkit-transition: none;
            transition: none;
}

/* Range input */
.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Slider thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* Slider thumb in Firefox */
input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -moz-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* Price wrap container */
.price-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: #242424;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 3rem;
}

/* Price input container */
.filter .price-input{
    width: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: var(--border-radius);
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
}

/* Price input field Container */
.filter .price-input .field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    width: 100%;
    height: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Price input field */
.filter .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.5rem;
    text-align: center;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
            appearance: textfield;
    color: var(--black);
    background-color: transparent;
}

/* Rremove the spinner arrows in number inputs */
.filter input[type="number"]::-webkit-outer-spin-button,
.filter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Separator within the price input container */
.filter .price-input .separator{
    width: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*----- 02- Shop Header -----*/
.shop .intro{
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify; 
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 1rem;
    border-radius: var(--border-radius);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 1rem 1.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.05);
}

/* Showing products count */
.shop .intro .showing{
    font-size: 1.6rem;
    color: var(--grey);
}

/* Styles buttons */
.shop .intro .styles{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Styles button links */
.shop .intro .styles a{
    font-size: 2rem;
    color: var(--black);
}

/* Styles button links, On Hover */
.shop .intro .styles a:hover{
    color: var(--main-color);
}

/* Sorting type Select Label */
.shop .intro .sorting-type label{
    font-size: 1.6rem;
    color: var(--black);
    margin-right: 0.5rem;
}

/* Sorting type Select dropdown */
.shop .intro .sorting-type select{
    font-size: 1.4rem;
    color: var(--grey);
    background-color: transparent;
    border: var(--border);
    padding: 1rem;
}

/*----- 03- Quantity Box -----*/
/* Quantity box container */
.quantity.buttons_added {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
    height: 4rem;
    width: 11rem;
    margin: 0 auto;
}

/* Quantity box minus and plus buttons */
.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    width: 3rem;
    color: var(--black);
    cursor:pointer;
    background-color: transparent;
}

/* Quantity box minus and plus buttons, On Hover */
.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: var(--main-color); 
    color: var(--white);
}

/* Quantity box input field  */
.quantity .input-text.qty {
    padding: 0 1rem;
    text-align: center;
    background-color: transparent;  
    border-right: 1px solid #ccc; 
    border-left: 1px solid #ccc; 
} 
  
/* Quantity input field spin buttons */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
    
/* Quantity box minus and plus buttons, On Focus */
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}

/*----- 04- product-item -----*/
/* Product Card */
.product-item{
    position: relative;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease; 
    transition: all 1s ease;
    background-color: var(--white);;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
} 

/* Product Options */
.product-item .options{
    position: absolute;
    top: 1rem;
    left: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* Product Options Link */
.product-item .options a{
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
    background-color: var(--main-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);;
}

/* Product Options Link, On Hover */
.product-item .options a:hover{
    background-color: var(--secondary-color);
}

/* Product Image */
.product-item .image img{
    height: 25rem;
    overflow: hidden;
}

/* Product Content */
.product-item .content{
    padding: 1.5rem 1rem;
    text-align: center;
}

/* Product name */
.product-item h3{
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--black);
}

/* Product name, On Hover */
.product-item h3:hover{
    color: var(--main-color);
}

/* Product Rating */
.product-item .rating{
    font-size: 1.6rem;
    color: var(--main-color);
    padding: 0.7rem 0;
}

/* Product price */
.product-item .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Product Discounted price */
.product-item .price span{ 
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--grey);
    padding-left: 0.2rem;
}

/* Product Description  */
.product-item p{
    padding: 1rem 0;
}

/* Show Product Options, On Product Card Hover  */
.product-item:hover .options{
    left: 1rem;
}

/*----- 05- Shop-Title -----*/
.shoplist-title{
    background-color: var(--main-color);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 1.5rem;
}

/* Individual titles */
.shoplist-title h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    font-size: 1.8rem;
    text-align: center;
}

/*----- 06- Cart-Summary -----*/
.summary-list{
    background-color: var(--white);
    padding-top: 1rem;
} 

/* Summary item */
.summary-item{
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--black); 
} 

/* Summary Label */
.summary-item .name{
    font-weight: 600;
}

/* Summary Value */
.summary-item .value{
    font-weight: 500;
    color: var(--secondary-color);
}

/*--------------- PAGES ---------------*/
.shop{
    display: -webkit-box; 
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.shop .shop-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Shop Grid -----*/
/* Product Container (Grid) */
.shop .product-container.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/*----- 2- Shop Standard -----*/
/* Product Container (List) */
.shop .product-container.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Product List Card */
.shop .product-container.list .product-item{
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Product List Image */
.shop .product-container.list .product-item .image{
    height: 100%; 
    min-width: 25rem;
}

/* Product List Content */
.shop .product-container.list .product-item .content{
    text-align: left;
    padding: 1.5rem;
}

/*----- 3- Product Single -----*/

/*-- Product Descriptions --*/
.product-single .product-des{
    border-radius: var(--border-radius);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Product Descriptions Container */
.product-single .product-des .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 2rem;
}

/*-- Product Image --*/
.product-single .product-des .box-container .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-single .product-des .box-container .image-container{
    max-width: 50rem;
}

/*-- Product Main Image --*/
.product-single .product-des .box-container .image-container .main{
    width: 100%;
    height: 40rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Product Image Thumbnails */
.product-single .product-des .box-container .image .change-btns{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(8rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;

}

/* Product Image Thumbnails Image */
.product-single .product-des .box-container .image .change-btns img{
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;    
}

/* Product Image Thumbnails Image, Hover & Active Effect */
.product-single .product-des .image .change-btns img:hover,
.product-single .product-des .image .change-btns img.active{
    border: 0.4rem solid var(--main-color);
}

/* Product Content */
.product-single .product-des .box-container .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Product Title */
.product-single .product-des .box-container .content h3{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
}

/* Product Introduction Section */
.product-single .product-des .box-container .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 0;
}

/* Product Rating */
.product-single .product-des .box-container .content .intro .rating{
    color: var(--main-color);
    font-size: 2rem;
}

/* Product Reviews */
.product-single .product-des .box-container .content .intro span{
    font-size: 2rem;
    padding-left: 1rem;
}

/* Product Price */
.product-single .product-des .box-container .content .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 2rem;
}

/* Product Discounted Price */
.product-single .product-des .box-container .content .price span{
    color: var(--grey);
    font-weight: lighter;
    text-decoration: line-through;
}

/* Product Description */
.product-single .product-des .box-container .content p{
    padding-bottom: 1rem;
    font-weight: 400;
}

/* Product Quantity Section */
.product-single .qty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    width: 20rem;
}

/* Product Quantity Text Section */
.product-single .qty .text{
    width: 10rem;
}

/* Product Cart Button */
.product-single .product-des .box-container .content .btn{
    margin: 2rem 0;
}

/* Product Availability, Categories & Tags Section */
.product-single .availablity,
.product-single .categories,
.product-single .tags{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0;
}

/* Product Quantity, Availability, Categories & Tags Title */
.product-single .qty h4,
.product-single .availablity h4,
.product-single .categories h4,
.product-single .tags h4{
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 600;
}

/* Product Availability, Categories & Tags Text */
.product-single .availablity span,
.product-single .categories a,
.product-single .tags a{
    font-size: 1.6rem;
    color: var(--main-color);
    padding: 0 0.5rem;
}

/* Product Categories & Tags Text, On Hover */
.product-single .categories a:hover,
.product-single .tags a:hover{
    color: var(--secondary-color);
}

/* Product In-Stock Availability Text */
.product-single .availablity .in-stock{
    color: green;
}

/* Product Out-Of-Stock Availability Text */
.product-single .availablity .out-stock{
    color: red;
}

/*-- Related Products --*/
.related-items .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/*----- 4- Wishlist -----*/
/* Wishlist Section */
.wishlist{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow-x: auto;
    overflow-y: hidden; 
}

/* Wishlist Container */
.wishlist .container{
    min-width: 90rem;
}

/* Wishlist Section Scrollbar */
.wishlist::-webkit-scrollbar{ 
    height: 0.8rem;
}

.wishlist .box-container{
    padding-bottom: 1rem;
}

/* Wishlist Item */
.wishlist-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1rem;
}

/* Wishlist Item Box */
.wishlist-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem; 
    text-align: center; 
    font-size: 2rem;
    font-weight: 500;
}

/* Wishlist Image */
.wishlist-item img{
    height: 10rem;
    width: 10rem;
    background-color:#f7f7f7;
    border-radius: 0.5rem;
}

/* Wishlist Price */
.wishlist-item .price{
    color: var(--grey);
}

/* Wishlist "In Stock" Status */
.wishlist-item .status.in{
    color: green;
}

/* Wishlist "Out of Stock" Status */
.wishlist-item .status.out{
    color: red;
}

/* Wishlist Actions */
.wishlist-item .action{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Wishlist Action icon */
.wishlist .wishlist-item i{
    font-size: 2rem;
    cursor: pointer;
}

/* Wishlist Action Link, On Hover */
.wishlist-item a:hover{
    color: var(--secondary-color);
}

/* Wishlist Delete Icon */
.wishlist-item .fa-trash-alt{
    color: red;
}

/* Wishlist Cart Icon */
.wishlist-item .fa-shopping-cart{
    color: var(--main-color);
}

/*----- 5- Cart  ------*/

/*-- 1- Cart Items --*/
.shopping-cart{
    background-color: var(--white);
    margin-bottom: 1rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow-x: auto;
    overflow-y: hidden; 
    border: var(--border);
    border-radius: var(--border-radius);
}

/* Shopping cart Container */
.cart .container{
    min-width: 90rem;
}

/* Shopping cart container Scrollbar */
.shopping-cart::-webkit-scrollbar{
    height: 0.8rem;
}

.cart .box-container{ 
    padding: 1rem;
}

/* Cart item */
.cart-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1rem;
    gap: 3rem;
}

/* Cart item Box */
.cart-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
}

/* Cart Image */
.cart-item img{
    height: 10rem;
    width: 10rem;
    background-color:#f7f7f7;
    border-radius: 0.5rem;
}

/* Cart Price & Total */
.cart-item .price,
.cart-item .total{
    color: var(--grey);
}

/* Cart icon */
.cart-item .icon{
    font-size: 2rem;
    cursor: pointer;
    color: red;
}

/* Cart icon, On Hover */
.cart-item .icon:hover{
    color: var(--secondary-color);
}

/*-- 2- Cart Total --*/
.cart .cart-summary{
    width: 40rem;
    background-color: var(--white);
    padding: 1rem;
    margin-left: auto;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    border-top: 0.3rem solid var(--main-color);
}

/* Cart Button */
.cart .cart-summary .btn{
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/*----- 6- Checkout -----*/
/*
1- Payment Method
2- Cart Total
*/

/*-- Checkout Section --*/
.checkout{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 1rem;
}

/*-- Checkout Heading Title --*/
.checkout .heading h2{
    font-size: 3.5rem;
}

/* Checkout section, Box-1 container */
.checkout .box-1{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;  
}

/* Checkout section, Box-2 container */
.checkout .box-2{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

/* Checkout item */
.checkout-item{
    background-color: var(--white);
    margin-bottom: 1rem;
    padding: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.checkout .box-1 .checkout-item:last-child{
    margin-bottom: 0;   
}

/*-- 1- Payment Method --*/
.payment-methods .payment{
    margin-bottom: 1.5rem;
}

/* Payment method label */
.payment-methods .payment label{
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
}

/* Payment method input */
.payment-methods .payment  input{
    margin-right: 0.5rem;
}

/* Selected/Highlighted payment method label */
.payment input:checked + label, 
.payment label:hover{ 
    color: var(--main-color);
}

/* Payment method body */
.payment .payment-body{ 
    display: none;
}

/* Payment method Description */
.payment-methods .payment .payment-body p{
    padding-top: 1rem;
}

/* Show payment method Description, When input is checked */
.payment > input:checked ~ .payment-body{ 
    display: block;
}

/* Active payment method body */
.payment-body.active{
    display: block;
}

/* Checkout Buttons */
.checkout .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* Checkout Button */
.checkout .btn{
    width: 100%;
    text-align: center;
}

/*----- 7- Order List -----*/
/* Orderlist Section */
.order-list{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow-x: auto;
    overflow-y: hidden; 
    border-radius: var(--border-radius);
}

/* Orderlist Container */
.order-list .container{
    min-width: 90rem; 
}

/* Orderlist container Scrollbar */
.order-list::-webkit-scrollbar{ 
    height: 0.8rem;
}

/* Orderlist Item */
.order-list .orderlist-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 1rem;
}

/* Orderlist Item Box */
.order-list .orderlist-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
}

/* Orderlist Item "Cancelled" Status */
.order-list .orderlist-item .status.cancelled{
    color: red;
}

/* Orderlist Item "Processing" Status */
.order-list .orderlist-item .status.processing{
    color: var(--grey);
}

/* Orderlist Item "Completed" Status */
.order-list .orderlist-item .status.completed{
    color: green;
}

/* Orderlist icon */
.order-list .orderlist-item .icon{
    font-size: 2rem;
    cursor: pointer;
    margin: 0rem 0.5rem;
    color: var(--main-color);
}

/* Orderlist icon, On Hover */
.order-list .orderlist-item .icon:hover{
    color: var(--secondary-color); 
}

/*----- 8- Order Single -----*/
/* Each Order Details Item */
.order-single .order-details-item{
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Order Introduction */
.order-single .order-intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem; 
    margin-bottom: 1rem;
}

/*-- 1- Order Summary --*/

/* Order Summary */
.order-single .order-summary{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

/* Order Summary Introduction */
.order-single .order-summary .intro{
    border-bottom: 0.2rem solid var(--grey);
}

/* Order ID */
.order-single .order-intro .order-id{
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Delivery Date */
.order-single .order-intro .delivery{
    color: var(--grey);
    font-size: 1.8rem;
    padding-bottom: 1rem;
}

/*-- 2-Order Items --*/
.order-items{
    overflow-x: auto;
    overflow-y: hidden; 
}

/* Order Items container Scrollbar */
.order-items::-webkit-scrollbar{ 
    height: 0.8rem;
}

/* Order Items Section */
.order-items .container{
    min-width: 90rem;
}

/* Order Item */
.order-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1rem;
    gap: 1rem;
}

/* Order Item Box */
.order-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem; 
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
}

/* Order Item Image */
.order-item img{
    height: 10rem;
    width: 10rem;
    background-color: #f7f7f7;
    border-radius: 0.5rem;
}

/* Order Item Price & Total */
.order-item .price,
.order-item .total{
    color: var(--grey);
}


/*------------------------------ (07)-Shop (End) ------------------------------*/



/*------------------------------ (08)-Contact (Start) ------------------------------*/
.contact{
    padding: 0;
}

/*----- 01- Google Map -----*/
.contact iframe{
    width: 100%;
    height: 30rem;
}

/*----- 02- Contact Info -----*/
.contact-info{
    background-color: var(--secondary-color);
    padding: 2rem 5%;
}

/* Contact Information Heading */
.contact-info .heading h2{
    color: var(--white);
}

/* Contact Information Container */
.contact-info .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 1rem;
}

/* Contact information item */
.contact .contact-info .info-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
}

/* Contact info Icon Container */
.contact-info .info-item .icon-item{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0rem auto;
}

/* Contact info Icon */
.contact-info .info-item i{
    font-size: 2.5rem;
    color: var(--main-color);
}

/* Contact info Detail Heading */
.contact-info .info-item .content h4{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

/* Contact info Detail Text */
.contact-info .info-item .content p{
    color: var(--white);
    text-transform: none;
}

/*----- 03- Contact Form -----*/
.contact-form{
    background-color: var(--white);
    padding: 2rem;
}

/* Contact form input box container */
.contact-form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Contact form Input Field */
.contact-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--grey);
    border: 0.12rem solid rgba(0, 0, 0, 0.2);
    text-transform: none;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

/* Focused Input Field */
.contact-form .box:focus{
    border-color: var(--main-color);
}

/* Contact form Input Field placeholder */
.contact-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}
.contact-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}
.contact-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}
.contact-form .box::placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

/* Contact form Textarea */
.contact-form textarea{
    height: 20rem;
    resize: none;
    margin-bottom: 1rem;
}

/* Contact form Alert Message */
.contact-form .alert{
    display: inline-block;
    font-size: 2rem;
    color: var(--main-color);
    padding-left: 1rem;
}

/*------------------------------ (08)-Contact (End) ------------------------------*/