/* globals */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Titillium+Web:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


 #nostockitems {
   padding-top: 30px;
   padding-bottom: 100px;
}

body {
  /*font-family: Montserrat, sans-serif;*/
  font-family: 'Poppins', sans-serif;
  color: #555;
    font-weight: normal;
 /* background: #09131b;
  color: #ffffff; */
 /* min-height: 100vh;*/
}


a{
    text-decoration: none;
    color: #555;
}
p{
    color: #555;
}


/*************beginning of menu ******************************************/


 .cart-mobile {
  display: none;
 }


.header {
 
  background: #fff;
 /* background: radial-gradient(#fff,#ffd6d6); */
  position: relative;
  max-width: 100vw; /* 100% of the viewport width */
  margin: auto; /*this will center the header horizontally */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1; /* we want the header to always be on top of everything else */
 /* border:  1px solid blue; */
}

.subtitle {
  position: absolute;
  /*border:  3px solid red; */
  margin-top: 60px;
     /* font-family: 'EB Garamond', serif;*/

    /*font-family: 'Playfair Display', serif; */
   /* font-family: 'Dancing Script', cursive; */
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

/* anchors in the header */

.header a {
  text-decoration: none; /* remove the underline */
  
  color: #555; /* color of the links */
  font-weight: normal;
}


.header ul {
  list-style: none; /* remove the bullet points */
}


.logo {
  font-size: 2rem;
}

.menu-items {
  display: flex;
  align-items: center;
}
.menu-items li {
  padding: 0.5rem 1rem;
  transition: background 0.3s ease-in-out;
}

.menu-items li:hover {
  /*background-color: #ff652f;*/
 /* background-color: #D8D8D8; */
 /* text-decoration: underline; */
 
   }

/* dropdown */
.dropdown {
  position: relative;
}


.dropdown-menu,
.menu-right {
  position: absolute;
  background: white;
  width: 100%;
  top: 50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-right {
  top: 0;
  left: 110%;
}


.menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.dropdown:hover .dropdown-menu {
  top: 34px;
  opacity: 1;
  visibility: visible;
}
.dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

/* mega menu  */
.mega-menu {
  position: absolute;
  left: 0;
  width: 100vw;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}


.mega-menu .content li a:hover{

  color:  #A9A9A9;

}



.mega-menu .content {
  background: white;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  
  justify-content: space-between;
  border-top: 1px solid #D8D8D8;
  /*border:  3px solid saddlebrown; */
}


.blog .content {
  grid-template-columns: repeat(3, 1fr);
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 2rem;
}

.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}
.content .col p {
 color: #505050; 
  font-size: 1.2rem;
  line-height: 3rem;
 /* font-weight: bold;*/
 margin-top: 30px;
 margin-bottom: 20px;
}


.content .col p {
  line-height: 1.2rem;
}
.content .col .mega-links {
  border-left: 1px solid #1a3246;
}
.content .col .read-more {
  display: inline-block;
  padding-top: 1rem;
 /* color: #427dad; */
  transition: color 0.3s ease;
}
.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}
.menu-items li:hover .mega-menu {
  top: 60px; /* this is how far the mega menu is from the top of the page */
  opacity: 1;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ff652f;
}


/* section */
.section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section h1 {
  font-family: "Titillium Web", serif;
  font-weight: 700;
  line-height: 6vw;
  color: #427dad;
  text-transform: uppercase;
}

/* NEW STUFFS */

/* nav menu button */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
}
.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: black;
  transition: all 0.5s ease-in-out;
}
.menu-btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu-btn__lines::after {
  transform: translateY(0.5rem);
}
/* animation */
.menu-btn.open .menu-btn__lines {
  transform: translateX(2rem);
  background: transparent;
}
.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  background: black;
}
.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  background: black;
}

/**********************this is the body of the page ********************************/


.container{
    max-width: 1300px;
    margin-top: 70px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
   /* border: 1px solid black;  */  
}


.row{  /*this row applies to all sections of the page including the main image **************/

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    /*max-width: 100vw; /* 100% of the viewport width */
   /* margin: auto; /*this will center the header horizontally */

   /* border:  1px solid red; */
  }

.col-2{
    flex-basis: 50%;
    min-width: 300px;
   /* border: 1px solid green;*/
   /* height: 60vh;*/
    
}

.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}
.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}




.btn-noItems{
    display: inline-block;
   /* background: #ff523b;*/
   background: red;
    color: #fff;
   /* padding:  8px 30px;*/
    margin: 30px 0;
    border-radius: 30px;
    padding-top: 12px;
    padding-bottom: 8px;
    padding-right: 30px;
    padding-left: 30px;
    
    
}


.btn{
    display: inline-block;
    background: #ff523b;
    color: #fff;
   /* padding:  8px 30px;
    margin: 30px 0;
    border-radius: 30px; 
     padding:  8px 30px;*/
    margin: 30px 0;
    border-radius: 30px;
    padding-top: 12px;
    padding-bottom: 8px;
    padding-right: 30px;
    padding-left: 30px;
    transition: background 0.5s;
}


/*.container {
  background: radial-gradient(#fff, #ffd6d6);
} */


.btn:hover{
    background: #563434;
}



.container  .row{
    margin-top: 70px;  
   /* border-bottom: 1px solid black;*/
}


.categories{
    margin: 70px 0;
}


.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}
.col-3 img{
    width: 100%;
}

.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.col-4 {
    flex-basis: 25%;
    padding:  10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}

.col-4 img {
    width:  100%;
   
}




.title{
    text-align: center;
    margin: 0px auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

.title::after{
    content: '';
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


h4{
    color: #555;
    font-weight: normal;
}

.col-4 p{
    font-size: 14px;
}
.rating .fa{
    color: #ff523b;
}

.col-4:hover{
    transform: translateY(-5px);
}



/*-----------offer-------------*/
.offer{
    background: radial-gradient(#fff,#ffd6d6);
    margin-top: 80px;
    padding: 30px 0;
}


.col-2 .offer-img{
    padding: 50px;
}
small{
    color: #555;
}

/*--------------------testimonial---------------*/

.testimonial{
    padding-top: 100px;
}

.testimonial .col-3{
    text-align: center;
    padding: 40px 20px 40px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s;
}

.testimonial .col-3 img{
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;
}

.testimonial .col-3:hover{
    transform: translateY(-10px);
}

.fa.fa-quote-left{
    font-size: 34px;
    color: #ff523b;
}

.col-3 p{
    font-size: 12px;
    margin: 12px 0px;
    color: #777;
}

.testimonial .col-3 h3{
    font-weight: 600;
    color: #555;
    font-size: 16px;
}


/********************************brands **********************************/

.brands{
    margin: 100px auto;
}

.col-5{
    width: 160px;
}


.col-5 img{
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
}


.col-5 img:hover{
    filter: grayscale(0);
}




/***************************************footer**************************/

.footer{
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p{
    color: #8a8a8a;
}
.footer h3{
    color: #fff;
    margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col-1{
    flex-basis: 30%;
}

.footer-col-2{
    flex: 1;
    text-align: center;
}


.footer-col-2 img{
    width: 180px;
    margin-bottom: 20px;
}

.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}


ul {
  list-style-type: none;
}


.app-logo{
    margin-top: 20px;
}

.app-logo img{
    width: 140px;
}

.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin:  20px 0;
}


.copyright{
    text-align: center;
    
}

.col-bill-1{
  border-right: 1px solid #555;
}
/************************************ MEDIA QUERY of the menu *************************************/
@media screen and (max-width: 800px) { /* anything under 970px the following will apply */
  .menu-btn {
    display: flex;
  }

   
  .cart-mobile { /******this makes the shopping cart icon appear ***************/
    display: block;
    margin-top: 10px;
  }


  .header .menu-items {
    position: absolute;
    /*height: 100vh;*/
    height: calc(100vh - 100%);
    width: 100%;
    /*max-width: 350px;*/
    max-width: 450px;
    top: 100%;
    right: 0;
    background: #fff;
    display: block;
    padding: 1rem;
    line-height: 3rem;
    opacity: 1;
    overflow-y: auto;
     /*transform: translateX(-100vw);*/
    transform: translateY(-100vh);
    /*transition: transform 0.3s ease-out;*/
    transition:  all 0.3s ease-out;
    z-index: -1;
   /* border-left: 1px solid black;*/
  }


  .menu-items.open {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-items li {
    margin: 15px 10px;
  }
  .menu-items li a {
    padding: 0 1rem;
    display: block;
    font-size: 1.4rem;
  }
  .menu-items li:hover {
    background-color: transparent;
  }

  /************************************* DROPDOWN, MEGA MENUS ************************************/
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    padding-left: 1rem;
    width: 100%;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .expand-btn.open + .expandable {
    max-height: 100%;
    transform: scaleY(1);
  }

  .expandable li {
    margin: 0;
  }
  .expandable li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }
  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
    border-top: 1px solid #1a3246;
  }
  .mega-menu .content .col:nth-child(1) {
    border-top: 0px;
  }
  .content .col .mega-links {
    border-left: 0px;
    padding-left: 1rem;
  }
  .col .mega-links li {
    margin: 0;
  }


input[type=text] {  /* reduce the width of the textboxes after a certain screen size */

    width: 250px;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
}


    .col-bill-2 { /* reduce the font of the checkout page after a certain size */
      font-size: 14px;
    }

    
/*
 .bill-errors small{
    position: absolute;
    margin-top: -10px;
    margin-left: -125px;
    
    color:  blue;
    

}
*/
}

/*************end of 970px media query and menu ******************************************/




/*---------- 600 media query -------*/
@media only screen and (max-width: 600px){
    
    .row{
      text-align: center;
    }
    
    .col-1, .col-2, .col-3, .col-4{
        
        flex-basis: 100%;
    }


    .col-bill-1{
      border: none;
    }

}









/****************beginning of catalogue category ********************************/
.row-category{
    margin-top: 40px;
    display: flex;
    align-items: center;
     
    flex-wrap: wrap;
    justify-content: space-around;
   /* border:  1px solid red; */
  }



.col-category{
    flex-basis: 25%; /* all the columns will occupy 25% of space of the page/container */
    padding: 10px;
    min-width: 250px;
    /*margin-bottom: 10px;*/
    transition: transform 0.5s;
   /* border:  1px solid green; */
    
}
.col-category img{
    width: 100%;
   
}

.col-category h4{
    color: #555;
    font-weight: normal;
    text-align: center;
   /* border:  1px solid black;*/
}


.col-category:hover{
    transform: translateY(-5px);
}


.small-container-catalogue{
   /* max-width: 1080px; */
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
   /* border:  1px solid cadetblue; */
}


.small-container single-product  .row .col-2 {
    margin-top
}


/****************end of catalogue category ********************************/




/*---------product details-----------*/
.single-product{
    margin-top: 80px;
}
.single-product .col-2 img{
    padding: 0;
}
.single-product .col-2{
    padding: 20px;
}

.single-product h4{
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}

.single-product select{
    display: block;
    padding: 10px;
    margin-top: 20px;
}

.single-product input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b;
}
input:focus{
    outline: none;
}

.single-product .fa{
    color: #ff523b;
    margin-left: 10px;
}
.small-img-row{
    display: flex;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}






/*******************billing page ***********************************************/




.row-bill{  /*this row applies to all sections of the page including the main image **************/
    /*margin-top: 40px;*/
    display: flex;
    
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 100vw; /* 100% of the viewport width */
    margin: auto; /*this will center the header horizontally */

   /* border:  1px solid red; */
  }



.col-bill-1{
    flex-basis: 50%; /* all the columns will occupy 25% of space of the page/container */
    min-width: 300px;
    transition: transform 0.5s;
    margin-bottom: 20px;
    /*background-color: #F8F8F8;*/
    padding-left: 10px;
   /* border-right:  1px solid black;   */ 
}



.col-bill-2{
    flex-basis: 50%; /* all the columns will occupy 25% of space of the page/container */
    min-width: 300px;
    transition: transform 0.5s;
    
   /* background-color: #F8F8F8;*/
    margin-bottom: 20px;
    padding-left: 5px;
   /* border:  1px solid black;*/
    
}


.small-container-billing-page h2{
    padding-left: 5px ;
}


 .bill-errors small{
    color:  red;
}


.bill-errors {

 position: absolute;
    margin-top: -10px;
    margin-left: -125px;    
    color:  red;   
}




/*---------------- cart page -----------*/


.cart-page-billing {

  /* margin: 40px;*/
  /* border:  1px solid red;*/
   
   padding-left: 25px;
}


.cart-page-billing {

}



.cart-page{
    margin: 80px auto;
    /*border:  1px solid blue;*/
}

 input[type=submit] {
  color:  #fff;
  background-color: #2F4F4F;
}




 #cart-form table{
    width: 100%;
    border-collapse: collapse;
   /* border:  1px solid green; */
    
}

 #cart-form .cart-info{
    display: flex;
    flex-wrap: wrap;
}
 #cart-form th{
    text-align: left;
    padding: 5px;
    color: #fff;
    background: #555;
    font-weight: normal;
}

 #cart-form td{
    padding: 10px 5px;
}
 #cart-form td input{
    width: 40px;
    height: 30px;
    padding: 5px;
}

 #cart-form td a{
    color: #555;
    font-size: 12px;
}

 #cart-form td img{
    width: 80px;
    height: 80px;
    margin-right: 10px; 
}


 #cart-form .total-price{
    display: flex;
    justify-content: flex-end;
    
}
 #cart-form .total-price table{
    border-top: 3px solid #555;
    width: 100%;
    max-width: 300px;
}
 #cart-form td:last-child{
    text-align: right;
}
 #cart-form th:last-child{
    text-align: right;
}

#cart-form .btn {
    
    background-color: #2F4F4F;
    color:  #fff;
    width: 180px;
    height: 30px;
    border-radius: 5px;
    text-align: center;
}



.container{
   
    margin-top: 10px;
    padding-left: 25px;
    padding-right: 25px;
   /* background: radial-gradient(#fff,#ffd6d6);*/
   /* border:  1px solid green; */
  /* border-top: 1px solid black; */
   border-bottom: 1px solid black;
    
}


.alreadyHaveAccount {
  /*  position: relative;
    margin-left: 200px;*/
    /*margin-left:  280px;
    /*width: 200px;*/
    position: absolute;
   /* border:  1px solid green; */
}

#checkbox {
  /*  position: absolute;
    
    max-width: 400px;
    height: 40px; */
    position: absolute;
   /* border:  1px solid black;*/
    padding: 0xp;
   /* top: 0px;*/
   margin-top: -51px;
}


 #use { 
    margin-top: 0px;
    background: green;
   /* border:  1px solid green;*/

}


.btn-billing {
    width: 400px;
    background-color: #2F4F4F;
    color:  #fff;
    width: 180px;
    height: 50px;
    border-radius: 5px;

}








/*-------account page--------*/

.accout-page{
    padding: 50px 0;
    background: radial-gradient(#fff,#ffd6d6);
}



/***************checkout page form ********************************/
form input{
    width: 350px;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form input:focus{
    outline: none;
}
form .btn{
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}
form .btn:focus{
    outline: none;
}
form a{
    font-size: 12px;
}
#LoginForm{
     left: -300px;
}
#RegForm{
    left: 0;
}




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

  .subtitle {
    display: none;
  } 


  form input{ /* reduce the length of the textboxes in the checkout form */
    width: 250px;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
   /* border: 1px solid #ccc;*/

}



/*
 .bill-errors small{
  position: absolute;
    margin-top: -10px;
    margin-left: -125px;
    
    color:  red;
    

}


.bill-errors {
  color: green;
}

*/

.col-bill-1{
    flex-basis: 50%; /* all the columns will occupy 25% of space of the page/container */
    min-width: 300px;
    transition: transform 0.5s;
    margin-bottom: 20px;
    /*background-color: #F8F8F8;*/
    padding-left: 10px;
   
}





.col-bill-2{
    flex-basis: 50%; /* all the columns will occupy 25% of space of the page/container */
   /* min-width: 300px;*/
    transition: transform 0.5s;
    font-size: 13px;
   /* background-color: #F8F8F8;*/
    margin-bottom: 20px;
    padding-left: 5px;
   /* border:  1px solid #555;*/
    color: #555;
    border: none;
    
}


  
}









/*the following rules will apply for anything from 320px and below. so the menu will be removed when the screen is 320px and below.*/
@media screen and (max-width: 320px) { 

  .subtitle {
    display: none;
  } 


  form input{ /* reduce the length of the textboxes in the checkout form */
    width: 250px;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
   /* border: 1px solid #ccc;*/

}


/*

 .bill-errors small{
    position: absolute;
    margin-top: -10px;
    margin-left: -125px;
    
    color:  green;
    

}

*/


.col-bill-2{
    flex-basis: 50%; /* all the columns will occupy 25% of space of the page/container */
   /* min-width: 300px;*/
    transition: transform 0.5s;
    font-size: 13px;
   /* background-color: #F8F8F8;*/
    
    padding-left: 5px;
  /* border:  1px solid #555;*/
    color: #555;
    
}


  .cart-page {
   /* border:  1px solid red;*/
    margin-top: 10px;
    padding-left: 10px;
  }

 #cart-form table{
    
    
   /* border:  1px solid green;*/
    font-size: 12px;
    margin-left: 0px;
    
}


.cart-page-billing {

  /* margin: 40px;*/
  /* border:  1px solid blue;*/
   font-size: 13px;
   padding-left: 0px;

}


.billing-form-btn {
    
   
    text-align: left;
    margin-left: -90px;
}


  
}/**************end of 320px media query*****************************/



