:root {
  --orange: #f82516dc;
  --black: #192a56;
  --light-color: #666;
  --box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  --main-transition: all 0.6s linear;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  text-transform: capitalize;
  scroll-padding-top: 5.5rem;
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
input,
textarea {
  border: none;
  outline: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
section {
  padding: 2rem 9%;
}
section:nth-child(odd) {
  background-color: #eee;
}
.heading {
  text-align: center;
  color: var(--black);
  font-size: 3rem;
  padding-bottom: 2rem;
  text-transform: uppercase;
}
.heading-new {
  text-align: center;
  color: var(--orange);
  font-size: 3rem;
  padding-bottom: 2rem;
  text-transform: uppercase;
}
.sub-heading {
  text-align: center;
  color: var(--orange);
  font-size: 2rem;
  padding-top: 1rem;
}
.btn {
  margin-top: 1rem;
  display: inline-block;
  font-size: 1.7rem;
  color: #fff;
  background: var(--black);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.8rem 3rem;
  transition: var(--main-transition);
}
.btn:hover {
  background: var(--orange);
  letter-spacing: 0.1rem;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  padding: 1rem 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--box-shadow);
  z-index: 1000;
}
header .logo {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bolder;
}
header .logo i {
  color: var(--orange);
}
header .navbar a {
  font-size: 1.7rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  color: var(--light-color);
}
header .navbar a.active,
header .navbar a:hover {
  color: #fff;
  background: var(--orange);
  transition: var(--main-transition);
}
header .icons i,
header .icons a {
  cursor: pointer;
  margin-left: 0.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  width: 4.5rem;
  text-align: center;
  font-size: 1.7rem;
  color: var(--black);
  border-radius: 50%;
  background: #eee;
  transition: var(--main-transition);
}
header .icons i:hover,
header .icons a:hover {
  color: #fff;
  background: var(--orange);
  transform: rotate(360deg);
}
header .icons #menu-bars {
  display: none;
}
#search-form {
  position: fixed;
  top: 110%;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1004;
}
#search-form.active {
  top: 0;
}
#search-form #search-box {
  width: 50%;
  outline: none;
  border: none;
  border-bottom: 0.1rem solid #fff;
  padding: 1rem 0;
  color: #fff;
  font-size: 3rem;
  text-transform: none;
  background: none;
}
#search-form #search-box::placeholder {
  color: #fff;
}
#search-form #search-box::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
#search-form label {
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--main-transition);
}
#search-form label:hover {
  color: var(--orange);
}
#search-form #close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  cursor: pointer;
  font-size: 5rem;
  color: #fff;
}
.home .content {
  display: grid;
  grid-template-columns: 50% auto;
  margin-top: 150px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.home .content .content-left {
  display: block;
  width: 100%;
}
.home .content .content-left .info {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.home .content .content-left .info h2 {
  font-size: 6rem;
  color: var(--black);
}
.home .content .content-left .info h3 {
  font-size: 2rem;
  color: var(--orange);
}
.home .content .content-left .info p {
  font-size: 2rem;
  color: var(--light-color);
  padding: 3rem 0 2rem 0;
  line-height: 1.5;
}
.home {
  width: 100%;
  padding: 20px 100px;
}
.home .content .content-right {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .content .content-right img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
}
.category .list-items {
  width: 90%;
  position: relative;
  margin-top: 50px;
}
.category .list-items h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: sans-serif;
  margin-bottom: 70px;
}
.category .list-items .card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.category .card-list .card {
  width: 200px;
  height: auto;
  display: block;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  background: #ffffff;
  outline: 2px solid #faad96;
}
.category .card-list .card img {
  width: 100px;
  height: auto;
  bottom: 140px;
  left: 50px;
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
  position: absolute;
  box-shadow: 0 20px 20px #faad96;
  border-radius: 50%;
}
.category .card-list .card .f-title {
  padding: 40px 0 10px;
}
.category .card-list .card .f-title h1 {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  font-family: sans-serif;
}
.category .card .desc-f p {
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: sans-serif;
}
.category .card .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category .card .price span {
  font-weight: 600;
  font-family: sans-serif;
}
.category .card .price span .plus-icon {
  color: #ff511c;
  font-size: 20px;
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #ff511c;
}
.shop .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 1.5rem;
}
.shop .box-container .box {
  padding: 2.5rem;
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.shop .box-container .box .fa-heart,
.shop .box-container .box .fa-eye {
  position: absolute;
  top: 1.5rem;
  background: #eee;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--black);
  transition: var(--main-transition);
}
.shop .box-container .box .fa-heart:hover,
.shop .box-container .box .fa-eye:hover {
  background: var(--orange);
  color: #fff;
}
.shop .box-container .box .fa-heart {
  right: -5.5rem;
}
.shop .box-container .box .fa-eye {
  left: -5.5rem;
}
.shop .box-container .box:hover .fa-heart {
  right: 1.5rem;
}
.shop .box-container .box:hover .fa-eye {
  left: 1.5rem;
}
.shop .box-container .box img {
  height: 17rem;
  margin: 1rem 0;
}
.shop .box-container .box h3 {
  font-size: 2.5rem;
  color: var(--black);
}
.shop .box-container .box .stars {
  padding: 1rem 0;
}
.shop .box-container .box .stars i {
  font-size: 1.7rem;
  color: var(--orange);
}
.shop .box-container .box span {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--orange);
  margin-right: 1rem;
}
.about .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.about .row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.about .row .image {
  flex: 1 1 45rem;
}
/* .about .row-2 .image {
  flex: 1 1 45rem;
} */
.about .row .image img {
  width: 100%;
}
.about .row-2 .image img {
  width: 100%;
  height: 250px;
}
.about .row .content {
  flex: 1 1 45rem;
}
.about .row-2 .content {
  flex: 1 1 45rem;
}
.about .row .content h3 {
  font-size: 4rem;
  color: var(--black);
  padding: 0.5rem 0;
}
.about .row-2 .content h3 {
  font-size: 4rem;
  color: var(--black);
  padding: 0.5rem 0;
}
.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  padding: 0.5rem 0;
  line-height: 1.7;
}
.about .row-2 .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  padding: 0.5rem 0;
  line-height: 1.7;
}
.about .row .content .icons-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-top: 0.5rem;
}
.about .row .content .icons-container .icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 25rem;
  padding: 2rem;
}
.about .row .content .icons-container .icons i {
  font-size: 4rem;
  color: var(--orange);
  margin-top: -60px;
}
.about .row .content .icons-container .icons div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about .row .content .icons-container .icons span {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.about .row .content .icons-container .icons p {
  font-size: 1.4rem;
  color: var(--light-color);
  margin: 0;
  padding: 0;
}
.review .slide {
  position: relative;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.review .slide .fa-quote-right {
  font-size: 6rem;
  color: #ccc;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.review .slide .user {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}
.review .slide .user img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
}
.review .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  padding-bottom: 0.5rem;
}
.review .slide .user i {
  font-size: 1.3rem;
  columns: var(--orange);
}
.review .slide p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--light-color);
}
.order form {
  max-width: 90rem;
  border: 1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  background: #fff;
  padding: 1.5rem;
  margin: 0 auto;
}
.order form .inputBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.order form .inputBox .input {
  width: 49%;
}
.order form .inputBox .input span {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  color: var(--light-color);
}
.order form .inputBox .input input,
.order form .inputBox .input textarea {
  width: 100%;
  background: #eee;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1.6rem;
  color: var(--black);
  text-transform: none;
  margin-bottom: 1rem;
}
.order form .inputBox .input input:focus,
.order form .inputBox .input textarea:focus {
  border: 0.1rem solid var(--orange);
}
.order form .inputBox .input textarea {
  height: 20rem;
  resize: none;
}
.order form .btn {
  margin-top: 0;
}
.footer {
  background: #f8f9fa;
  padding: 4rem 0 0 0;
  font-family: "Arial" sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer-section h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--orange);
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 0.8rem;
}
.footer-section ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-section ul li a:hover {
  color: var(--orange);
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
#mail{
  text-transform: lowercase;
}
.social-link {
  background: var(--light-color);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.social-link:hover {
  transform: translateX(-3px);
  background: var(--orange);
}
.newsletter {
  margin-top: 2rem;
}
.newsletter h4 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.subscribe-form {
  display: flex;
  gap: 0.5rem;
}
.subscribe-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}
.subscribe-form button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.subscribe-form button:hover {
  background: var(--orange);
}
.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: #fff;
}
.copyright {
  color: #666;
  font-size: 1.5rem;
  margin-left: 100px;
}
.footer-links {
  display: flex;
  gap: 2rem;
  margin-right: 100px;
}
.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--orange);
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  header {
    padding: 1rem 2rem;
  }
  section {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  header .icons #menu-bars {
    display: inline-block;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  header .navbar a {
    display: block;
    padding: 1.5rem;
    margin: 1rem 0;
    font-size: 2rem;
    background: #eee;
  }
  #search-form #search-box {
    width: 90%;
    margin: 0 1rem;
  }
  .home .home-slide .slide .content h3 {
    font-size: 5rem;
  }
  .content {
    grid-template-columns: 1fr;
    margin-top: 50px;
    text-align: center;
    gap: 20px;
  }
  .content .content-left .info h2 {
    font-size: 30px;
  }
  .content .content-left .info p {
    font-size: 16px;
    line-height: 1.6;
  }
  .content-right {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    order: 1;
  }
  .home .content {
    grid-template-columns: none;
  }
  .category .list-items {
    width: 100%;
  }
  .category .list-items .card-list {
    grid-template-columns: 1fr;
    gap: 120px;
  }
  .category .list-items h3 {
    font-size: 15px;
  }
  .category .card-list .card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .category .card-list .card img {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  .content .content-left .info h2 {
    font-size: 25px;
  }
  .content .content-left .info p {
    font-size: 11px;
    line-height: 1.6;
  }
  .home .content {
    grid-template-columns: none;
  }
  .content-right {
    width: 200px;
    height: 200px;
  }
  .category .list-items h3 {
    text-align: center;
    margin-bottom: 50px;
  }
  .category .card-list .card {
    max-width: 250px;
  }
  .content .content-left button {
    padding: 8px 20px;
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .home .content {
    grid-template-columns: none;
  }
  .shop .box-container .box img {
    height: auto;
    width: 100%;
  }
  .order form .inputBox .input {
    width: 100%;
  }
}
