*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root{
    --hue-violet: #39198B;
    --hue-purple: #5630b7;
    --hue-orchid: #774be5;
    --hue-white: #f7f7f9;
    --hue-black: #3D3C42;
}
svg{
    width: 13px;
    height: 13px;
}
.contentCard::after, .brandCard::after, .specialProductsContent .productPoster::after ,.newsletterSection::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #6a3ae442;
}
.contentCard::after{
    background-color: #6a3ae47a;
}
.firstLine{
    overflow: hidden;
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    background-color: var(--hue-violet);
    color: var(--hue-white);
}
.secondLine, .thirdLine, .fourthLine{
    background-color: var(--hue-white);
    border-bottom: 1px solid #d3d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.secondLineContent, .thirdLineContent, .fourthLineContent{
    width: 1200px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.secondLineContent p{
    color: var(--hue-black);
    font-size: 13px;
}
.secondLineContent p a{
    color: var(--hue-black);
    text-decoration: none;
}
.secondLineContent p a:hover{
    color: var(--hue-violet);
}
.secondLineContent ul{
    display: flex;
    gap: 20px;
}
li{
    list-style: none;
}
.secondLineContent ul li a{
    text-decoration: none;
    color: var(--hue-black);
    font-size: 13px;
    transition: 0.3s;
}
.secondLineContent ul li a:hover{
    color: #A82FFC;
}
.secondLineContent .headerInfo{
    display: flex;
    gap: 10px;
    font-size: 13px;
}
.secondLineContent .headerInfo p:nth-child(1){
    border-right: 1px solid #d3d0d0;
    padding-right: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.mainLogo{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.mainLogo .threeBars{
    width: 15px;
    height: 10px;
    display: none;
    gap: 2px;
    grid-template-columns: auto;
    cursor: pointer;
}
.mainLogo .threeBars span{
    border-radius: 10px;
    background-color: var(--hue-black);
}
.mainLogo img{
    width: 200px;
    padding: 20px 0px;
    object-fit: contain;
}
.searchContent{
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchBar{
    background-color: #e9e8ee;
    width: 600px;
    height: 50px;
    display: flex;
    gap: 0;
    border-radius: 5px;
}
.searchBar input{
    width: 90%;
    height: 100%;
    padding: 5px 30px;
    background-color: transparent;
    border: none;
}
.searchBar input:focus{
    outline: none;
}
.searchBar button{
    width: 10%;
    height: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.searchBar button svg{
    width: 20px;
    height: 20px;
}
.thirdLineContent, .thirdLine{
    padding: 0 10px;
    border: none;
}
.fourthLineContent button{
    width: 200px;
    height: 50px;
    border: none;
    background-color: var(--hue-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 50px;
    color: var(--hue-white);
    cursor: pointer;
}
.navLinks{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
} 
.navLinks li a{
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--hue-black);
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.navLinks li a:hover{
    background-color: #a72ffc3a;
    color: var(--hue-violet);
}
.activeLink{
    background-color: #a72ffc3a;
    color: var(--hue-violet) !important;
}
.fourthLineContent, .fourthLine{
    padding: 0 0 10px 0;
    overflow: visible;
}
.fourthLineContent{
    position: relative;
}
.categoryList{
    position: absolute;
    left: 0;
    top: 70px;
    width: 250px;
    height: 0;
    background-color: var(--hue-white);
    border-left: 1px solid #d3d0d0;
    border-right: 1px solid #d3d0d0;
    border-bottom: 1px solid #d3d0d0;
    transition: all 0.2s ease-in-out;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}
.categoryList.active{
    height: 200px;
}
.categoryList ul{
    display: block;
}
.categoryList ul li{
    width: 100%;
}
.categoryList ul li a{
    display: block;
    width: 100%;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--hue-black);
    transition: 0.3s;
}
.categoryList ul li a:hover{
    color: var(--hue-violet);
    background-color: #e4e4e4;
}
main{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hue-white);
}
.mainContent{
    width: 1200px;
    height: 450px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
    padding: 30px 0;
}
.contentCard{
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.contentCard img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.contentCard:hover img{
    transform: scale(120%);
}
.contentCard p{
    color: var(--hue-white);
    font-size: 13px;
    z-index: 1;
}
.contentCard h2{
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hue-white);
    z-index: 1;
    max-width: 500px;
    padding-right: 30px;
}
.contentCard .price{
    margin-top: 30px;
    z-index: 1;
}
.contentCard p span{
    font-size: 2.5rem;
    font-weight: 700;
    color: #be022e;
    z-index: 1;
    text-shadow: 0px 0px 5px white;
}
.categories{
    padding-top: 20px;
    background-color: var(--hue-white);
    overflow-x: auto;
    padding-bottom: 30px;
}
.categoryContent{
    width: 1200px;
    height: 30vh;
    position: relative;
    display: block;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    border: 1px solid #d3d0d0;
    border-radius: 5px;
}
.categoryCard{
    border-left: 1px solid #d3d0d0;
    width: calc(1200px/6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}
.categoryCard img{
    width: 130px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}
.categoryCard:hover img{
    transform: scale(1.1);
}
.categoryCard:nth-child(1){
    border: none;
}
.products{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hue-white);
    padding: 0px 10px 30px 10px;
    overflow: hidden;
}
.productContent{
    width: 1200px;
    text-align: center;
    color: var(--hue-black);
}
.productContent h1 span{
    color: var(--hue-violet);
}
.productContainer{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    border: 2px solid var(--hue-purple);
    border-radius: 10px;
    margin-top: 30px;
}
.productCard{
    width: calc(1200px/5);
    height: 300px;
    border-left: 1px solid #d3d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}
.productCard p{
    word-wrap: break-word;
}
.productImg:hover{
    transform: scale(1.1);
}
.productContainer .productCard:nth-child(1){
    border: none;
}
.productPrice{
    color: var(--hue-violet);
    font-size: 20px;
    margin-top: 30px;
}
.productImg{
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: all 0.2s ease-in-out;
}
.brandOfProduct{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.brandImgInViewPage{
    width: 50px;
    height: 50px;
}
.brands{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hue-white);
    overflow: hidden;
    padding: 20px 10px 50px;
}
.brandContent{
    width: 1200px;
    height: fit-content;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
}
.brandCard *{
    z-index: 1;
    position: relative;
}
.brandCard{
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    color: var(--hue-white);
    border-radius: 10px;
    position: relative;
    background-image: linear-gradient(90deg, #7908fa, #a72ffc);
    padding: 40px 20px;
    cursor: pointer;
}
.brandCard span:nth-child(2){
    max-width: 100px;
}
.brandCard span:nth-child(2) img{
    object-fit: contain;
    width: 100%;
} 
.brandCard h1{
    font-size: 2rem;
}
.brandCard p{
    color: #ede7ea;
}

.descriptionOfProduct li{
    list-style: disc !important;
}

.specialProducts{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hue-white);
    padding-bottom: 30px;
    overflow: hidden;
}
.specialProductsContent{
    width: 1200px;
    height: fit-content;
    color: var(--hue-black);
    border: 1px solid #d3d0d0;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    margin: 0px 10px;
}
.specialProductsContent .productPoster *{
    z-index: 1;
    position: relative;
}
.specialProductsContent .productPoster{
    width: 30%;
    height: auto;
    padding: 60px 20px;
    background-image: url('../img/sideBarBg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.productPoster .productName{
    color: #be022e;
    font-size: 25px;
    font-weight: 700;
    text-shadow: 0px 0px 5px white;
}
.specialProductsContent .productPoster h2{
    color: var(--hue-white);
    font-size: 2.3rem;
    line-height: 40px;
    margin-top: 10px;
}
.storeLocation{
    color: #d3d0d0;
    font-size: 12px;
    margin-top: 10px;
}
.productList{
    width: 70%;
    display: grid;
    grid-template-columns: auto auto auto auto;
}
.specialProductCard{
    width: auto;
    height: 50vh;
    max-height: 500px;
    border-left: 1px solid #d3d0d0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 20px 10px;
}
.productList .specialProductCard:nth-child(1),
.productList .specialProductCard:nth-child(5) {
    border: none;
}

.specialProductCard .productImg{
    width: 150px;
    height: 150px;
}

/* Footer */
.newsletterSection *{
    z-index: 1;
    position: relative;
}
.newsletterSection{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 400px;
    background-image:  linear-gradient(90deg, #5630b7c9, #774be566), url('../img/newsletter.png');
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    border: none;
    position: relative;
}
.letterContent{
    width: 1200px;
    text-align: left;
    color: var(--hue-black);
}
.letterContent p{
    color: #e6e3e3;
}
.letterContent h2{
    color: var(--hue-white);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 40px;
}
.subscriptionNote{
    font-size: 14px;
    margin-top: 10px;
}
.subscriptionSearch{
    background-color: #e9e8ee;
    width: 500px;
    height: 60px;
    display: flex;
    gap: 0;
    border-radius: 5px;
    margin-top: 20px;
    padding: 8px;
}
.messageIcon{
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.messageIcon svg{
    width: 20px;
    height: 20px;
}
.subscriptionSearch input{
    width: 70%;
    height: 100%;
    border: none;
    background-color: transparent;
    padding: 5px 10px;
    color: var(--hue-black);
}
.subscriptionSearch input:focus{
    outline: none;
}
.subscriptionSearch button, .primaryBtn, .secondaryBtn{
    height: 100%;
    background-color: var(--hue-violet);
    color: var(--hue-white);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 20px;
    transition: 0.3s;
}
.primaryBtn, .secondaryBtn{
    padding: 10px 20px;
}
.subscriptionSearch button:hover, .primaryBtn:hover{
    background-color: var(--hue-purple);
}

.secondaryBtn{
    background-color: #be022e;
}
.secondaryBtn:hover{
    background-color: #d8103e;
}

#quantityInput{
    background-color: #e9e8ee;
    padding: 10px;
    margin: 20px 10px 0px 0px;
    border: none;
    width: 80px;
}

#customerForm{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: #e9e8eed7;
    padding: 20px;
    z-index: 100;
}
#customerForm>div{
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#customerForm input, #customerForm select, #customerForm textarea{
    padding: 8px;
    display: block;
    width: 100%;
}
#customerForm button{
    width: 100%;
    margin-bottom: 10px;
}

.subscriptionSearch button:focus{
    outline: none;
    border: none;
}
.footerLinks{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: fit-content;
    background-color: var(--hue-white);
    padding: 20px 10px;
}
.footerLinksContent{
    width: 1200px;
    color: var(--hue-black);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d3d0d0;
    padding-bottom: 40px;
}
.shopDescription img{
    width: 200px;
    padding: 20px 0px;
    object-fit: contain;
}
.shopDescription p{
    max-width: 500px;
    margin-top: 20px;
}
.footerLinksContent .navigationLinks{
    display: flex;
    gap: 100px;
    margin-top: 60px;
}
.footerLinksContent .navigationLinks h1{
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.footerLinksContent .navigationLinks ul{
    margin-top: 30px;
}
.footerLinksContent .navigationLinks ul li{
    margin-top: 10px;
}
.footerLinksContent .navigationLinks ul li a {
    text-decoration: none;
    font-size: 15px;
    color: var(--hue-black);
}
.footerLinksContent .navigationLinks ul li a:hover{
    color: var(--hue-violet);
}
.footerBottom{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: fit-content;
    background-color: var(--hue-white);
    padding: 5px 10px;
}
.bottomContent{
    width: 1200px;
    color: var(--hue-black);
    border-bottom: 1px solid #d3d0d0;
    padding-bottom: 40px;
}
.contactInformation{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contactBox{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.contactBox p a{
    color: var(--hue-black);
    text-decoration: none;
}
.contactBox p a:hover{
    color: var(--hue-violet);
}
.contactBox span{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d3d0d0;
    background-color: var(--hue-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.socialMediaIcons{
    display: flex;
    gap: 20px;
}
.socialMediaIcons span{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--hue-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.socialMediaIcons span:nth-child(1){
    border: 1px solid #4769b2;
}
.socialMediaIcons span:nth-child(2){
    border: 1px solid #48b04f;
}
.socialMediaIcons span:nth-child(3){
    border: 1px solid #b40da6;
}
.socialMediaIcons span img{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.socialMediaIcons span{
    transition: all 0.2s ease-in-out;
}
.socialMediaIcons span:hover{
    transform: scale(110%);
}
.rights{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: fit-content;
    background-color: var(--hue-white);
    padding: 5px 10px;
}
.rightsContent{
    width: 1200px;
    color: var(--hue-black);
    text-align: center;
    padding: 20px 5px;
    font-size: 13px;
}
.rightsContent p a{
    color: var(--hue-violet);
    text-decoration: none;
}
.rightsContent p svg{
    width: 13px;
    height: 13px;
    padding-top: 2px;
}
.copyrightInMobile a{
    color: var(--hue-violet);
    text-decoration: none;
}

/* view page */
.viewProduct{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hue-white);
    padding: 30px 10px;
}
.viewProductContent{
    width: 1200px;
    background-color: white;
    height: fit-content;
    padding: 50px 30px;
    color: var(--hue-black);
}
.productDetails{
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.productDetails .viewsOfProduct{
    width: 40%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-top: 30px;
}
.productImageContainer{
    width: 300px;
    height: 300px;
    overflow: hidden;
}
.productImage{
    width: fit-content;
    height: 300px;
    display: flex;
    transition: all 0.5s ease-in-out;
}
.productImage div{
    width: 300px;
    height: 300px;
}
.productImage div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}
.productImage div img:hover{
    transform: scale(120%);
}
.changeImage{
    display: flex;
    gap: 10px;
    margin-top: 40px;
}
.changeImage span{
    width: 50px;
    height: 50px;
    border: 1px solid #d3d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    border-radius: 5px;
    cursor: pointer;
}
.changeImage span img{
    object-fit: contain;
    width: 40px;
    height: 40px;
}
.changeImage span:hover{
    border: 1px solid #7A08FA;
}
.descriptionOfProduct{
    width: 60%;
    height: fit-content;
    padding: 30px 60px 30px 150px;
    
}
.descriptionOfProduct h1{
    color: #be022e;
}
.stockInfo{
    width: fit-content;
    padding: 5px 10px;
    background-color: rgba(128, 243, 128, 0.322);
    border-radius: 20px;
    color: green;
    font-size: 10px;
    font-weight: 500;
    margin-top: 10px;
}
.productParagraph{
    color: var(--hue-black);
    font-size: 14px;
    margin-top: 20px;
}
.inProductView{
    border-top: 1px solid #d3d0d0;
    padding-top: 20px;
    margin-top: 30px;
}
.inProductView span{
    width: 40px;
    height: 40px;
}
.inProductView span:nth-child(1){
    border: 1px solid #0c41b3;
}
.inProductView span:nth-child(2){
    border: 1px solid #48b04f;
}
.inProductView span:nth-child(3){
    border: 1px solid #2698d4;
}
.inProductView span img{
    width: 20px;
    height: 20px;
}
.discountInView{
    top: 0;
}
.relatedProducts{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hue-white);
    padding-bottom: 30px;
    overflow: hidden;
}
.inView{
    text-align: left;
}
.inView h1{
    margin-bottom: -15px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
}

/* contact page */

.contactDetails{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hue-white);
    padding: 30px 10px;
}
.contactDetailsContent{
    width: 1200px;
    height: fit-content;
    padding: 10px 0px;
    color: var(--hue-black);
    text-align: center;
}
.contactDetailsContent h1{
    font-size: 2.3rem;
}
.contactCardContainer{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}
.contactCard{
    width: auto;
    height: 200px;
    background-color: rgba(232, 222, 234, 0.718);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.contactCard svg{
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}
.contactCard p a{
    text-decoration: none;
    line-height: 22px;
    color: var(--hue-black);
}
.contactCard p a:hover{
    color: var(--hue-violet);
}
.mapAndFormContainer{
    width: 1200px;
    height: fit-content;
    padding: 30px 0px;
    background-color: white;
    color: var(--hue-black);
    text-align: center;
    margin-top: 30px;
    border-radius: 10px;
}
.mapAndFormContent{
    width: 100%;
    display: flex;
    height: fit-content;
    margin-top: 40px;
    overflow: hidden;
    gap: 30px;
    padding: 20px;
}
.mapAndFormContainer p{
    padding: 0px 10px;
}
.map{
    width: 50%;
}
.map iframe{
    width: 100%;
    height: 100%;
    border: 0px;
}
.form{
    width: 50%;
}
.form form{
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form form label{
    margin-top: 20px;
}
.form form input{
    margin-top: 10px;
    height: 50px;
    border: none;
    background-color: rgb(245, 242, 245);
    border-radius: 5px;
    padding: 5px 15px;
    color: var(--hue-black);
}
.form form input:focus{
    outline: none;
}
.form form textarea{
    height: 200px;
    resize: none;
    padding: 20px 20px;
    color: var(--hue-black);
    background-color: rgb(245, 242, 245);
    border-radius: 5px;
    margin-top: 10px;
    border: none;
}
.form form textarea:focus{
    outline: none;
}
.form form button{
    padding: 15px 20px;
    background-color: var(--hue-violet);
    color: var(--hue-white);
    border-radius: 5px;
    border: none;
    margin-top: 30px;
    width: 200px;
    cursor: pointer;
}
.form form button:focus{
    outline: none;
}

/*about page */

.aboutUs {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hue-white);
    padding: 30px 10px;
}
.aboutUsContent{
    width: 1200px;
    height: fit-content;
    padding: 30px 20px;
    color: var(--hue-black);
    text-align: center;
    background-color: white;
    border-radius: 10px;
}
.aboutContainer{
    width: 100%;
    margin-top: 30px;
    text-align: left;
}
.aboutContainer img{
    width: 50%;
    height: 320px;
    object-fit: cover;
    float: left;
    margin-right: 30px;
}
.headerInAbout{
    margin-top: 70px;
}

/* gallery page */

.gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hue-white);
    padding: 30px 0px;
}
.galleryContent{
    width: 1200px;
    height: fit-content;
    padding: 20px 10px;
    color: var(--hue-black);
    text-align: center;
    border-radius: 10px;
}
.galleryContent h1{
    color: #be022e;
    font-size: 2.0rem;
    position: relative;
    padding-bottom: 15px;
}
.galleryContent h1 span{
    color: var(--hue-black);
}
.galleryContent h1::after{
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background-color: #be022e;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.galleryContainer{
    width: 100%;
    padding: 10px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: 30px;
}
.galleryContainer img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 3/2;
    transition: 0.5s;
}
.galleryContainer img:nth-of-type(5n-4){
    grid-column: span 2;
}
.galleryContainer img:nth-of-type(5n-3){
    grid-column: span 2;
}
.galleryContainer img:nth-of-type(5n-2){
    grid-column: span 2;
}
.galleryContainer img:nth-of-type(5n-1){
    grid-column: span 3;
    max-height: 50vh;
    aspect-ratio: 2/3;
}
.galleryContainer img:nth-of-type(5n){
    grid-column: span 3;
    max-height: 50vh;
    aspect-ratio: 2/3;
}
.galleryContainer img:hover{
    transform: scale(110%);
}

/* view in mobile version */

.bottomBarForMobile{
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 40px;
    padding: 30px 10px;
    background-color: var(--hue-white);
    bottom: 0;
    left: 0;
    display: none;
    box-shadow: 5px 0px 10px var(--hue-black);
}
.bottomBarForMobile button{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
    padding: 3px;
    background-color: transparent;

}
.bottomBarForMobile button:focus{
    outline: none;
}
.bottomBarForMobile button p{
    font-size: 12px;
    color: #515156;
}
.sidePanelForMobile{
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
    background-color: var(--hue-white);
    top: 0;
    left: -100%;
    overflow: auto;
    transition: all 0.5s ease-in-out;
}
.sidePanelForMobile.active{
    left: 0;
}
.sidePanelForMobile img{
    width: 250px;
    height: 150px;
    object-fit: contain;
}
.sidePanelForMobile .showCategoryButton{
    width: 200px;
    height: 50px;
    border: none;
    background-color: var(--hue-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 50px;
    color: var(--hue-white);
    cursor: pointer;
}
.sidePanelForMobile .searchBar{
    margin-bottom: 30px;
}
.categoryListInMobile{
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
}
.categoryListInMobile.active{
    height: 100%;
}
.categoryListInMobile ul{
    display: block;
}
.categoryListInMobile ul li{
    width: 100%;
    border-bottom: 1px solid #d3d0d0;
}
.categoryListInMobile ul li a{
    display: block;
    width: 100%;
    padding: 10px 10px;
    text-decoration: none;
    color: var(--hue-black);
    transition: 0.3s;
}
.categoryListInMobile ul li a:hover{
    color: var(--hue-violet);
    background-color: #e4e4e4;
}
.mainLinks{
    margin-top: 20px;
}
.mainLinks ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mainLinks ul li{
    border-bottom: 1px solid #d3d0d0;
    padding-bottom: 10px;
}
.mainLinks ul li a{
    color: #626165;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}
.mainLinks ul li a:hover{
    color: var(--hue-violet);
}
.sidePanelForMobile .copyrightInMobile{
    color: #908f95;
    font-size: 13px;
    margin-top: 30px;
}
.closeButton{
    background-color: transparent;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
}
.closeButton svg{
    width: 20px;
    height: 20px;
}
.closeButton:focus{
    outline: none;
}

/* products page */
.productContainerInProductPage{
    background-color: var(--hue-white);
    padding-top: 30px;
}
.productItemsList{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    align-items: stretch;
    border-bottom: 1px solid #d3d0d0;
    margin-top: 20px;
}
.productItem{
    flex-grow: 1;
    flex-basis: 0;
    max-width: 500px;
    min-width: 250px;
    border: 1px solid var(--hue-purple);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    cursor: pointer;
}
.sideContactBar{
    width: fit-content;
    height: fit-content;
    position: fixed;
    top: 255px;
    right: 0;
    background-color: var(--hue-white);
    box-shadow: 1px 1px 4px 1px #888888;
    z-index: 10;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    height: 32px;
    transition: all 0.4s ease-in-out;
}
.sideContactBar.active{
    height: 300px;
}
.sideContactBar button{
    width: 100%;
    padding: 5px 15px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--hue-violet);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}
.sideContactBar button svg{
    margin-top: 2px;
}
.sideContactBar button:focus{
    border: none;
    outline: none;
}
.iconInMobile{
    flex-direction: column;
    margin-top: 20px;
}
.iconInMobile span{
    width: 30px;
    height: 30px;
}
.iconInMobile span:nth-child(1){
    border: 1px solid #1b408f;
}
.iconInMobile span:nth-child(2){
    border: 1px solid #fcba2c;
}
.iconInMobile span:nth-child(3){
    border: 1px solid #4769b2;
}
.iconInMobile span:nth-child(4){
    border: 1px solid #48b04f;
}
.iconInMobile span:nth-child(5){
    border: 1px solid #b40da6;
}
.iconInMobile span img{ 
    width: 20px;
    height: 20px;
}


@media(max-width: 1200px) {
    .secondLine{
        display: none;
    }
    .fourthLine{
        display: none;
    }
    .thirdLineContent{
        width: 100%;
    }
    .mainContent{
        width: 100%;
        padding: 10px;
    }
    .productContent{
        width: 100%;
    }
    .productCard{
        width: auto;

    }
    .brandContent{
        width: 100%;
    }
    .letterContent{
        width: 100%;
        padding: 10px 30px;
    }
    .footerLinksContent{
        width: 100%;
        flex-wrap: wrap;
        gap: 30px;
        padding: 0px 20px 30px 20px;
    }
    .bottomContent{
        width: 100%;
    }
    .contactInformation{
        padding: 0px 20px;
        flex-wrap: wrap;
        gap: 20px;
    }
    .rightsContent{
        width: 100%;
    }
    .specialProductsContent{
        width: 100%;
    }
    .viewProductContent{
        width: 100%;
    }
    .contactDetailsContent{
        width: 100%;
    }
    .mapAndFormContainer{
        width: 100%;
        padding: 0px 10px;
    }
    .aboutUsContent{
        width: 100%;
    }
    .galleryContent{
        width: 100%;
    }
    .mainLogo .threeBars{
        display: grid;
    }
    .dashboardContent{
        width: 100%;
    }
}
@media(max-width: 1077px) {
    .searchContent{
        width: 60%;
    }
    .searchBar{
        width: 100%;
    }
    .searchBar input{
        padding: 5px 10px;
    }
    .searchBar input{
        width: 80%;
    }
    .searchBar button{
        width: 20%;
    }
}
@media(max-width: 791px) {
    .mainContent{
        display: block;
        height: fit-content;
    }
    .contentCard{
        margin-top: 20px;
        padding: 40px;
    }
    .subscriptionSearch{
        width: 100%;
    }
    .letterContent{
        width: 100%;
        padding: 10px 30px;
    }
    .newsletterSection{
        height: fit-content;
        padding: 20px 0px;
    }
    .productDetails{
        flex-direction: column;
    }
    .productDetails .viewsOfProduct{
        width: 100%;
    }
    .descriptionOfProduct{
        width: 100%;
        padding: 30px 0px;
    }
    .galleryContainer img:nth-of-type(4n-3){
        grid-column: span 3;
        max-height: 50vh;
        aspect-ratio: 3/2;
    }
    .galleryContainer img:nth-of-type(4n-2){
        grid-column: span 3;
        max-height: 50vh;
        aspect-ratio: 3/2;
    }
    .galleryContainer img:nth-of-type(4n-1){
        grid-column: span 3;
        max-height: 50vh;
        aspect-ratio: 3/3;
    }
    .galleryContainer img:nth-of-type(4n){
        grid-column: span 3;
        max-height: 50vh;
        aspect-ratio: 3/3;
    }
}
@media(max-width: 880px){
    .productContainer{
        height: fit-content;
        grid-template-columns: auto auto ;
    }
    .productCard{
        border: none;
    }
    .productContainer .productCard:nth-child(2), .productContainer .productCard:nth-child(4){
        border-left: 1px solid #d3d0d0;
    }
    .productContainer .productCard:nth-child(5){
        border-right: 1px solid #d3d0d0;
    }
    .brandContent{
        grid-template-columns: auto;
        gap: 30px;
        padding: 0 10px;
        height: fit-content;
    }
    .footerLinksContent .navigationLinks{
        margin-top: 20px;
    }
    .specialProductsContent{
        flex-direction: column;
    }
    .specialProductsContent .productPoster, .productList{
        width: 100%;
    }
    .mapAndFormContent{
        flex-direction: column;
        gap: 20px;
    }
    .map{
        width: 100%;
        height: 50vh;
    }
    .form{
        width: 100%;
        padding: 0;
    }
    .contactCardContainer{
        grid-template-columns: 100%;
    }
    .categoryContentInDashboard{
        grid-template-columns: auto auto;
        height: fit-content;
        gap: 20px;
    }
    .categoryCardInDashboard{
        height: fit-content;
    }
}
@media(max-width: 423px){
    .productContainer{
        grid-template-columns: auto ;
    }
    .productCard{
        border: none;
    }
}
@media(max-width: 488px){
    .footerLinksContent .navigationLinks{
        flex-direction: column;
        gap: 30px;
    }
}
@media(max-width: 600px){
    .footerLinksContent .navigationLinks{
        flex-direction: column;
        gap: 30px;
    }
    .productList{
        grid-template-columns: auto auto;
    }
    .aboutContainer img{
        width: 100%;
        margin-bottom: 30px;
    }
    .verticalStretch{
        grid-row: span 1;
    }
    .horizontalStretch{
        grid-column: span 1;
    }
    .bigStretch{
        grid-column: span 1;
        grid-row: span 1;
    }
    .bottomBarForMobile{
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .thirdLine .searchBar{
        display: none;
    }
    .sideContactBar{
        display: none;
    }
    .galleryContainer img:nth-of-type(4n-3){
        grid-column: span 6;
        max-height: 50vh;
        aspect-ratio: 3/2;
    }
    .galleryContainer img:nth-of-type(4n-2){
        grid-column: span 6;
        max-height: 50vh;
        aspect-ratio: 5/3;
    }
    .galleryContainer img:nth-of-type(4n-1){
        grid-column: span 6;
        max-height: 50vh;
        aspect-ratio: 3/3;
    }
    .galleryContainer img:nth-of-type(4n){
        grid-column: span 6;
        max-height: 50vh;
        aspect-ratio: 2/3;
    }
}