@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', sans-serif;
}

h1{
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2{
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4{
  font-size: 20px;
  color: #222;
}

h6{
  font-weight: 700;
  font-size: 12px;
}

p{
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1{
  padding: 30px 80px;
}

.section-m1{
  margin: 40px 0;
}

body{
  width: 100%;
}

/* NAV */

nav{
  
  background: #1a1b19;
}

nav:after{
  content: '';
  clear: both;
  display: table;
}

nav .logo{
  padding-top: 15px;
  float: left;
  color: white;
  height: 70px;
}

nav ul{
  float: left;
  list-style: none;
  margin-right: 30px;
  position: relative;
}

nav ul li{
  
  display: inline-block;
  margin: 0 30px;
  background: #1a1b19;
}

nav ul li a{
  text-decoration: none;
  line-height: 70px;
  font-size: 25px;
  color: white;
  padding: 8px 18px;
}

nav ul li a:hover{
  border-radius: 5px;
  color: black;
  background-color: rgba(0, 255, 255, 0.8);
}

nav ul ul{
  position: absolute;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

nav ul ul li a:hover{
  background-color:#1a1b19;
  color: cyan;
  box-shadow: none;
}

nav ul li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
}

nav ul ul li{
  position: relative;
  margin: 0px;
  width: 200px;
  float: none;
  text-align: center;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

nav ul ul li a{
  line-height: 60px;
  font-size: 20px;
  text-align: center;
}

nav ul ul ul li{
  position: absolute;
  top: -70px;
  left: 150px;
}

/* /NAV */

/* BANNER_SLIDER */

.banner{
  padding-bottom: 30px;
  position: relative;
  z-index: -999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider{
  top: 50px;
  width: 1000px;
  min-height: 500px;
  margin: 20px;
}

.slider .slide{
  width: 100%;
  height: 100%;
  clip-path: circle(0% at 0 50%);
}

.slider .slide.active{
  clip-path: circle(200% at 0 50%);
  transition: 1s;
}

.slider .slide img{
  position: absolute;
  padding-top: -5px;
  padding-left: 20px;
  object-fit: cover;
}

.control{
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider:hover .control{
  opacity: 1;
}

.prev-btn, .next-btn {
  z-index: 999;
  font-size: 4em;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 10px;
}

.prev-btn{
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.next-btn{
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.control-visibility{
  z-index: 999;
  display: flex;
  justify-content: center;
}

.control-visibility .slide-icon{
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
  width: 20px;
  height: 10px;
  transform: translateY(-1px);
  margin: 0 6px;
  border-radius: 2px;
  box-shadow: 0 5px 25px rbg(1 1 1 / 20%);
}

.control-visibility .slide-icon.active{
  background: #465b52;
}

/* /BANNER_SLIDER */

/* FEATURE_BANNER*/

#feature{
  padding-top: 30px;
  background: #1a1b19;
  display: flex;
  align-items: center;
  justify-content:space-evenly;
  flex-wrap: wrap;
}

#feature .fe-box{
  box-shadow: 20px 20px 34px rgba(0,0,0,0.3);
  
  border-radius: 8px;
  margin: 15px 0;
}

#feature .fe-box:hover{
  box-shadow: 10px 10px 54px rgba(70,62,221,0.1);
}

/* /FEATURE_BANNER*/

/* PRODUCTS*/

#product1{
  text-align: center;
}

#product1 p{
  font-size: 30px;
}

#product1 .pro-cont{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#product1 .pro{
  position: relative;
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
  margin: 15px 0;
  transition: 0.2s ease;
}

#product1 .pro:hover{
  box-shadow: 20px 20px 30px rgba(0,0,0,0.2);
}

#product1 .pro img{
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des{
  text-align: start;
  padding: 7px 0;
}

#product1 .pro .des span{
  color: #606063;
  font-size: 15px;
}

#product1 .pro .des h5{
  padding-top: 5px;
  color: #1a1a1a;
  font-size: 20pxpx;
}

#product1 .pro .des h4{
  padding-top: 5px;
  color: #088178;
  font-size: 18px;
  font-weight: 700;
}

#product1 .pro .cart{
  width: 40px;
  height: 40px;
  border-radius: 50px;
  line-height: 40px;
  background-color: #b3e9bb;
  font-weight: 500;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

/* /PRODUCTS */

/* SALE_BANNER */

#sale-banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(img/b1.png);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#sale-banner h4{
  color: wheat;
  font-size: 50px;
}

#sale-banner h2{
  color: white;
  font-size: 64px;
  padding: 10px 0;
}

#sale-banner h2 span{
  color: #ef3636;
}

#sale-banner a button{
  font-size: 20px;
  font-weight: 600;
  padding: 10px 30px;
  color: black;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

#sale-banner a button:hover{
  color: white;
  background-color: #088178;
}

/* /SALE_BANNER */

/* TEXT_BANNER */

#text-banner{

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 35px;
}

#text-banner .banner-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 30%;
  height: 35vh;
  background-image: url(img/b2.png);
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#text-banner h2{
  color: white;
  font-weight: 900;
  font-size: 40px;
}

#text-banner h3{
  color: #ec544e;
  font-weight: 800;
  font-size: 30px;
}

#text-banner .b2{
  background-image: url(img/b3.png);
}

#text-banner .b3{
  background-image: url(img/b4.png);
}

/* /TEXT_BANNER */

/* FOOTER */

footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col{
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo{
  margin-bottom: 30px;
}

footer h4{
  font-size: 20px;
  padding-bottom: 20px;
}

footer .col h4:before{
  content: '';
  position: absolute;
  left: 266px;
  bottom: 245px;
  background-color: #1a1b19;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

footer p{
  font-size: 18px;
  margin: 0 0 8px 0;
}

footer a{
  text-decoration: none;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

footer .follow{
  margin-top: 20px;
}

footer .follow i{
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .copyright span{
  font-size: 15px;
  margin-bottom: 5px;
}

/* /FOOTER */


#pagination{
  text-align: center;
}

#pagination a{
  text-decoration: none;
  background-color: #088178;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}

#pagination a i{
  vertical-align: bottom;
  font-size: 18px;
  font-weight: 600;
}

/* WHATSAPP_BUTTON */

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#whatsapp-button {
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 5px 13px;
  font-size: 16px;
  border-radius: 35px;
  cursor: pointer;
}

#whatsapp-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.whatsapp-popup-content {
  background-color: rgb(241, 230, 206);
  width: 300px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.whatsapp-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.whatsapp-popup-header h3 {
  margin: 0;
}

#whatsapp-close {
  background-color: transparent;
  padding-bottom: 68px;
  color: #000;
  border: none;
  font-size: 35px;
  cursor: pointer;
}

#whatsapp-close:focus {
  outline: none;
}

.whatsapp-popup-body {
  display: flex;
  flex-direction: column;
}

#whatsapp-message {
  margin-bottom: 10px;
  height: 100px;
  resize: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
}

#whatsapp-send {
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s ease;
}

#whatsapp-send:hover{
  background-color: #000;
  
}

#whatsapp-send:focus {
  outline: none;
}

/* /WHATSAPP_BUTTON */

#prodetails{
  display: flex;
  margin-top: 20px;
}

#prodetails .pro-img{
  width: 35%;
  margin-right: 50px;
}

.small-img-grp{
  display: flex;
  justify-content: space-around;
}

.small-img{
  padding-top: 5px;
  padding-right: 5px;
}

.small-img-col{
  flex-basis: 25%;
  cursor: pointer;
}

#prodetails .pro-details{
  width: 45%;
  padding-top: 30px;
}

#prodetails .pro-details h6{
  padding-bottom: 20px;
  font-size: 15px;
  font-weight: 550;
}

#prodetails .pro-details h2{
  font-size: 26px;
}

#prodetails .pro-details .pro-name{
  font-size: 30px;
}

/* Size Selector */
.size-selector {
  cursor: pointer;
  padding-top: 20px;
  display: flex;
  margin-bottom: 20px;
}

.size-selector .size {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
}

.size-selector .selected {
  cursor: pointer;
  border-color: #000;
}

.size-selector .size-text{
  cursor: pointer;
  font-size: 23px;
  padding-top: 4px;
  font-weight: 600;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  margin-bottom: 20px;
}

.quantity-selector .size-text{
  padding-left: 9px;
  font-size: 23px;
  padding-top: 4px;
  font-weight: 600;
}

.quantity-selector .quantity-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.quantity-selector .quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ccc;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0 10px;
}

/* Buy Button */
.buy-section {
  display: flex;
}

.buy-section .buy-btn {
  background-color: #000;
  color: #fff;
  font-size: 18px;
  padding: 9px 94px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.buy-section .buy-btn:hover{
  background-color: white;
  color: #000;
  border: 1px solid;
}


#prodetails .pro-details .price-cut{
  color: gray;
}

#prodetails .pro-details .price-main{
  color: #ec544e;
}

#prodetails .pro-details .det{
  padding-bottom: 30px;
}

#prodetails .pro-details a{
  display: flex;
  text-decoration: none;
}

#prodetails .pro-details span{
  line-height: 25px;
}




