* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.clearfix {
  clear: both;
}

/* Start Global Rules  */

/* small  */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* large  */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* start header  */
.header {
  background-color: #f8f1e1;
  position: relative;
  -webkit-box-shadow: 0 0 10px #ddd;
  -moz-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 11px #ddd;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header a .logo {
  height: 80px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.header .logo img {
  width: 100px;
  margin: auto;
}
.header .links {
  display: flex;
}
.header .links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  padding: 0 15px;
  height: 80px;
  transition: 0.3s;
}
.header .links li a:hover {
  background-color: #f0e0d0;
  color: #f38234;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .header .logo {
    width: 100%;
    height: 50px;
    text-align: center;
  }
  .header .links {
    margin: auto;
  }
  .header .links li a {
    height: 40px;
    font-size: 14px;
    padding: 0 10px;
  }
}
.header .shopping {
  font-size: 22px;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}
.header .shopping {
  position: relative;
}
.header .shop {
  font-size: 13px;
  position: absolute;
  right: -5px;
  top: -10px;
  padding: 2px 3px;
  background-color: #f38234;
  border-radius: 50%;
  color: #fff;
}
.header .shopping:hover {
  transform: scale(1.1);
}
/*End header  */
/* Start Landing  */
.landing {
  min-height: 100vh;
  /* height: 75%; */
  background-image: url(../images/landing-01.jpg);
  background-size: cover;
  position: relative;
}

.landing .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.landing .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.landing .content {
  padding-bottom: 350px;
  text-align: center;
  margin: 240px auto;
}
.landing .content h1 {
  font-size: 60px;
  color: #fff;
}
.landing .content p {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  margin: 20px 0;
}
.landing .content .btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #f38234;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  transition: 0.3s ease;
}
.landing .content .btn:hover {
  background-color: #e06b2c;
}
@media (max-width: 768px) {
  .landing {
    height: 50%;
    background-size: 100% 100%;
  }
  .landing .content {
    margin: 0 auto;
    padding: 250px 0;
  }
  .landing .content h1 {
    font-size: 30px;
  }
  .landing .content p {
    font-size: 20px;
  }
}
/* End Landing  */

/* Start Products  */
.products h2 {
  font-weight: bold;
  font-size: 40px;
  color: #f38234;
  margin: 0 auto 60px;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0 0 10px #ddd;
  -moz-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  width: fit-content;
}
.products .container .product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  flex-wrap: wrap;

}

@media (max-width: 767px) {
  .products .container .product-list {
    display: flex;
    text-align: center;
    justify-content: center;
  }
}
.product-list .product-card {
  -webkit-box-shadow: 0 0 10px #ddd;
  -moz-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  width: fit-content;
  padding: 2px 2px 10px 2px;
  border-radius: 10px;
}

.products .product-list .img-box {
  display: flex;
  overflow: hidden;
  cursor: pointer;
}
.products .product-list .img-box img {
  width: 100%;
  max-width: 250px;
  transition: 0.5s;
  margin: 0 auto;
  border-radius: 10px;
}

.products .product-list .img-box:hover img {
  transform: scale(1.1);
}
.products .title {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}
.products .price {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  font-size: 24px;
  color: #e06b2c;
}

/* start  */
.product-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 130px 9% 30px;
  min-height: 160vh;
}

@media (max-width: 767px) {
  .product-detail {
    min-height: 0;
  }
}
.product-detail .product-img {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 12px;
  height: 550px;
}
.product-detail .product-img img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.product-detail .product-info {
  text-align: center;
}
.product-detail .thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-detail .thumbnail-list img {
  cursor: pointer;
}

.product-detail .title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .product-detail .title {
    font-size: 25px;
  }
}
.product-detail .description {
  font-size: 25px;
  color: #707070;
}
@media (max-width: 767px) {
  .product-detail .description {
    font-size: 20px;
  }
}
.product-detail .rating {
  color: #f38234;
  font-size: 20px;
}

.product-detail .price {
  display: block;
  font-size: 35px;
  font-weight: 600;
  margin: 20px;
}
.product-detail :is(.size-selection, .color-selection) {
  margin: 20px auto;
  width: fit-content;
  font-size: 20px;
  color: #e06b2c;
}
.product-detail :is(.sier-selection p, .color-selection p) {
  margin-bottom: 10px;
}
.product-detail :is(.sier-options, .color-options) {
  display: flex;
  gap: 10px;
}
.product-detail .size-options button {
  width: 45px;
  height: 45px;
  background: #f2f2f2;
  border: 2px solid transparent;
  cursor: pointer;
}
.product-detail .color-options img {
  width: 75px;

  border: 2px solid transparent;
  cursor: pointer;
}
.product-detail :is(.size-options .selected, .color-options .selected) {
  border-color: #999;
}

.product-detail .btn {
  background: #f38234;
  border: none;
  padding: 12px 40px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 18px;
  border-radius: 6px;
}

.product-detail .product-policy {
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.product-detail .product-policy p {
  margin: 3px 0;
  font-size: 20px;
}
@media (max-width: 767px) {
  .product-detail .product-policy {
    margin-bottom: 100px;
  }
  .product-detail .product-policy p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .product-detail {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    padding: 50px 17% 0px;
    width: 100%;
    text-align: center;
  }
  .product-detail .product-img {
    height: auto;
  }
  .product-detail .product-img img {
    width: 100%;
  }
  .product-detail :is(.sier-options, .color-options) {
    display: flex;
    justify-content: center;
  }
}

/* cart start  */
.cart {
  padding: 110px 9% 30px;
  margin-bottom: 160px;
}
.cart-header {
  display: flex;
  padding: 10px 0;
  font-weight: bold;
  border: 1px solid #ccc;
}

.cart-header span {
  flex: 1;
  text-align: center;
}
.cart-header span:first-child {
  flex: 2;
  text-align: left;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.cart-item .product {
  display: flex;
  align-items: center;
  flex: 2;
}
.cart-item img {
  width: 80px;
  margin-right: 15px;
}
.cart-item .size-color-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.cart-item .size {
  padding: 6px 12px;
  background: #f2f2f2;
  font-size: 14px;
}
.cart-item :is(.price, .quantity, .total-price) {
  flex: 1;
  text-align: center;
}
.cart-item .quantity input {
  width: 50px;
  padding: 5px;
  border: 1px solid #ccc;
  outline: none;
  text-align: center;
}
.cart-item .remove {
  background: transparent;
  border: none;
  flex: 1;
}

.cart-item .remove i {
  font-size: 20px;
  color: #f38234;
  cursor: pointer;
}
.cart-total {
  width: 400px;
  margin: 50px 0 0 auto;
}
.cart-total h3 {
  margin-bottom: 15px;
}
.cart-total p {
  display: flex;
  justify-content: space-between;
}
.cart-total p:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.cart-total p:last-of-type {
  font-weight: bold;
}
/* .cart-total .btn {
  display: block;
  padding: 12px 30px;
  margin: 30px 0 0 auto;
  background: #f38234;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.cart-total .btn:hover {
  background: #e06b2c;
  color: #fff;
  cursor: pointer;
} */
  
.place-order {
  background-color: #25d366; 
  color: white;
  font-weight: bold;
  font-size: 22px;
  padding: 15px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  display: block;
  text-align: center;
}

.place-order:hover {
  background-color: #1ebe57;
}

.customer-info input {
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: inset 1px 1px 3px #eee;
}

.cart-total {
  max-width: 450px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .cart {
    font-size: 10px;
  }

  .cart-total {
    width: 100%;
  }

  .cart-item .quantity input {
    width: 20px;
  }
  .cart-item img {
    width: 40px;
  }
  .cart-item .size {
    padding: 0;
    font-size: 10px;
  }
  .item-detail p {
    font-size: 8px;
    width: 100%;
  }
  .cart-item .size-color-box {
    gap: 5px;
  }
  .cart-total .btn {
    margin: 0 auto;
    width: 100%;
  }
}

/* start customer-info  */
.customer-info {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
}
.customer-info input {
  font-size: 20px;
  border: 1px solid #c8c8c8;
  width: 100%;
  padding: 15px 15px;
  margin: 10px auto;
}
.customer-info input:focus {
  outline: none;
}
.customer-info input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .customer-info input {
    padding: 5px;
    font-size: 15px;
  }
  .cart-total {
    max-width: 100%;
    width: 100%;
    margin: 30px 0 0 0;
  }
}




.offer {
  position: relative;
  background-color: #f8f1e1;
  padding: 60px 0;
}
.offer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px;
}
.offer .box {
  text-align: center;
  border-radius: 6px;
}
.offer .box img {
  max-width: 100%;
  width: 100px;
}

.offer .box .content h2 {
  text-align: center;
  font-size: 24px;
  margin: 5px auto;
}
.offer .box .content p {
  font-size: 18px;
  margin: 10px auto;
  line-height: 1.6;
  color: #777;
  max-width: 250px;
}
.offer .box .content p span {
  color: #f38234;
  font-weight: bold;
}
/* End offer  */
/* Start footer  */
.footer-info {
  background-color: #f8f1e1;
  color: #000;
  padding: 15px;
  text-align: center;

  border-top: 1px solid #cccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-info p {
  margin: 0;
  font-weight: 600;
  font-size: 12px;
}
.footer span a {
  list-style: none;
}

.footer span i {
  font-size: 25px;
  margin-right: 5px;
}
.footer span i.facebook {
  color: #1877f2;
}
.footer span i.instagram {
  color: #fd1d1d;
}
.footer span i.whatsapp {
  color: #075e54;
}
.footer .policy {
  font-size: 10px;
}
.footer .policy a {
  text-decoration: underline;
  color: #000;
  padding: 0 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .footer-info {
    flex-direction: column;
  }
  .social-media {
    margin: 10px auto;
  }
  .footer span i {
    font-size: 15px;
    margin-right: 5px;
  }
}
/* End footer  */
