.nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* Montserrat */
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: var(--color-heading);
  word-spacing: -1px;
}
:root {
  --main-color: #ff790b;
  --p-color: #7b7b7b;
  --bg-color: #f3f3f3;
  --white-color: #fff;
  --color-heading: #121416;
  --white-color: #fff;
  --border-color: #e5e5e5d5;
  --Sale-color: #e51a1a;
}
html {
  scroll-behavior: smooth;
}
body {
  padding-top: 180px;
}
span {
  color: var(--main-color);
}
p {
  color: var(--p-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-family: "Montserrat", sans-serif;
}
img {
  width: 100%;
}
input,
select,
button {
  border: none;
  outline: none;
}
.btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn {
  padding: 10px 18px;
  text-transform: capitalize;
  border-radius: 2px;
  cursor: pointer;
  background: var(--main-color);
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s;
}
.btn i {
  color: #fff;
}
.btn:hover {
  scale: 1.1;
}
.container {
  width: 90%;
  margin: auto;
  max-width: 1350px;
}
@media (max-width: 1350px) {
  .container {
    width: 90%;
  }
}
[id] {
  scroll-margin-top: 180px;
}
/* Start Header */

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 5px 8px 8px #d1d1d13b;
  z-index: 1000;
}
header .top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
header .top-header .logo {
  width: 180px;
}
header .top-header .search-box {
  width: 610px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  background: var(--bg-color);
}
header .top-header .search-box input {
  height: 55px;
  width: 400px;
  padding: 5px 15px 5px 10px;
  background: var(--bg-color);
}
header .top-header .search-box .select-box {
  position: relative;
}
header .top-header .search-box .select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 50%;
  background: #b9b9b9;
}
header .top-header .search-box select {
  height: 55px;
  width: 190px;
  background: var(--bg-color);
  font-size: 16px;
  cursor: pointer;
  padding-left: 10px;
  margin-right: 10px;
}
header .top-header .search-box select option {
  font-size: 15px;
}
header .top-header .search-box button {
  height: 55px;
  width: 60px;
  background-color: var(--main-color);
  font-size: 18px;
  cursor: pointer;
}
header .top-header .search-box button i {
  color: #fff;
}
header .top-header .header-icons {
  display: flex;
  gap: 30px;
}
header .top-header .header-icons .icon {
  position: relative;
  cursor: pointer;
}
header .top-header .header-icons .icon i {
  font-size: 24px;
}
header .top-header .header-icons .icon .count {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  background: var(--main-color);
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
}

header .bottom-header {
  border-top: 1px solid var(--border-color);
}
header .bottom-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .bottom-header nav {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 60px;
}
header .bottom-header .category-nav {
  width: 220px;
  position: relative;
  height: 100%;
}
header .bottom-header .category-nav .category-btn {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main-color);
  padding: 0 15px;
  cursor: pointer;
}
header .bottom-header .category-nav .category-btn p {
  color: var(--white-color);
  font-weight: 600px;
  font-size: 15px;
}
header .bottom-header .category-nav .category-btn i {
  color: var(--white-color);
}
header .bottom-header .category-nav .category-nav-list {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: var(--white-color);
  border: 1px solid #999;
  border-top: 0;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: 0.3s ease-in-out;
}
header .bottom-header .category-nav .category-nav-list.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
header .bottom-header .category-nav .category-nav-list a {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}
header .bottom-header .category-nav .category-nav-list a:last-child {
  border-bottom: none;
}
header .bottom-header .category-nav .category-nav-list a:hover {
  background: #d0d0d0;
}
header .bottom-header .nav-links {
  display: flex;
  gap: 35px;
}
header .bottom-header .nav-links li a {
  color: var(--color-heading);
  transition: 0.3s;
}
header .bottom-header .nav-links li:hover a,
header .bottom-header .nav-links li.active a {
  color: var(--main-color);
}

/* Slider */

.slider {
  position: relative;
}
.slider .container {
  display: flex;
  justify-content: space-between;
}
.slider .banner-2 {
  width: 23%;
  height: 100%;
  object-fit: cover;
}
.slider .banner-2 a {
  height: 100%;
  width: 100%;
}
.slider .container .slide-swp {
  width: 75%;
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  height: auto !important;
}
.slider .container .slide-swp .swiper-pagination span {
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--main-color) !important;
  width: 34px !important;
  height: 8px !important;
  border-radius: 30px !important;
}

/* banners-4  */

.banners-4 {
  margin: 40px 0;
}
.banners-4 .container {
  display: flex;
  justify-content: space-between;
}
.banners-4 .container .box {
  width: 24%;
  background-image: url(../img/bg-banner3.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  position: relative;
}
.banners-4 .container .box img {
  width: 100px;
  transition: 0.3s;
}
.banners-4 .container .box:hover img {
  scale: 1.05;
}
.banners-4 .container .box h5 {
  font-size: 16px;
}
.banners-4 .container .box .sale {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 7px 0;
}
.banners-4 .container .box .sale span {
  font-size: 25px;
  font-weight: bold;
}
.banners-4 .container .box h6 {
  font-size: 14px;
  font-weight: bold;
}
.banners-4 .container .box .link-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

/* Start Slide */

.slide {
  margin-bottom: 70px;
}
.slide .container {
  position: relative;
}
.slide .container .mySwiper {
  padding: 10px 0;
}
.slide .container .mySwiper .btn-Swip {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--bg-color);
  color: var(--color-heading);
  font-weight: bold;
  border-radius: 5px;
  height: 35px;
  width: 35px;
  border: 1px solid var(--border-color);
}

.slide .container .mySwiper .btn-Swip::after {
  font-size: 12px;
}
.slide .container .mySwiper .btn-Swip.swiper-button-prev {
  left: calc(100% - 80px);
}

.top-slide {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--main-color);
}
.top-slide h2 {
  position: relative;
  text-transform: uppercase;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 18px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}
.top-slide h2::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  z-index: 9;
  background: #fff;
  border-left: 20px solid transparent;
  border-bottom: 20px solid #e26e02;
}
.top-slide h2 i {
  color: var(--white-color);
}

/* Product Cart Style */

.mySwiper {
  overflow: hidden;
}
.product {
  background: #fff;
  padding: 20px 20px;
  box-shadow: 5px 5px 10px #94949428;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.product .sale-present {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #ed0505;
  color: var(--white-color);
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 2px;
}
.product .img-product {
  position: relative;
  height: 180px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.product:hover .img-product {
  scale: 1.1;
}
.product .name-product {
  margin-bottom: 10px;
  color: var(--color-heading);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product .name-product a:hover {
  text-decoration: underline;
}
.product .stars {
  margin-bottom: 10px;
}
.product .stars i {
  color: var(--main-color);
  font-size: 14px;
}
.product .price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product .price p {
  color: var(--main-color);
  font-weight: bold;
  font-size: 18px;
}
.product .price .old-price {
  color: var(--p-color);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: normal;
}
.product .icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.product .icons .icon-product {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.product .icons .icon-product:hover {
  background: var(--main-color);
}
.product .icons .icon-product i {
  font-size: 14px;
}
.product .icons .icon-product:hover i {
  color: var(--white-color);
}

.product .icons .icon-product.favorite {
  background: #e51a1a;
  border-color: #e51a1a;
}

.product .icons .icon-product.favorite i {
  color: var(--white-color);
}
.icons .btn-add-cart {
  background: var(--main-color);
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white-color);
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--main-color);
  white-space: nowrap;
  min-width: 100px;
  justify-content: center;
}
.icons .btn-add-cart i {
  color: var(--white-color);
  pointer-events: none;
}
.icons .btn-add-cart.active {
  color: var(--color-heading);
  background: transparent;
  pointer-events: none;
}
.icons .btn-add-cart.active i {
  color: var(--main-color);
}
.icons .btn-add-cart:hover {
  scale: 1.05;
  background: #f47600;
}

/* Card link overlay */
.product .card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product .icons,
.product .btn-add-cart,
.product .icon-product {
  position: relative;
  z-index: 2;
}

/* banners banners 3 */

.banners {
  margin: 50px 0;
}
.banners .banners-boxes {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.banners .banners-boxes .box {
  width: 49%;
}

.banners .banners-boxes.banner-3-img .box {
  width: 32%;
}

/* Start Footer */

footer {
  background: var(--color-heading);
}
footer .container {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
footer .container .big-row {
  width: 30%;
}
footer .container .big-row .logo-footer {
  width: 180px;
}
footer .container .big-row p {
  width: 90%;
  color: #b1b1b1;
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0;
}
footer .container .big-row .icons-footer {
  display: flex;
  gap: 10px;
}
footer .container .big-row .icons-footer a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  border-radius: 3px;
  position: relative;
  top: 0;
  transition: 0.3s;
}
footer .container .big-row .icons-footer a:hover {
  top: -5px;
}
footer .container .big-row .icons-footer a i {
  color: var(--white-color);
  font-size: 20px;
}
footer .container .row {
  width: 22%;
}
footer .container .row h4 {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 20px;
}
footer .container .row .links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer .container .row .links a {
  color: #b1b1b1;
  font-size: 14px;
  position: relative;
  left: 0;
  transition: 0.3s;
}
footer .container .row .links a i {
  color: var(--main-color);
  font-size: 14px;
  margin-right: 5px;
}
footer .container .row .links a:hover {
  left: 6px;
  color: var(--main-color);
}
footer .bottom-footer {
  background: #1d1f22;
}
footer .bottom-footer .container {
  align-items: center;
  padding: 3px 0;
}
footer .bottom-footer p {
  color: var(--white-color);
}
footer .bottom-footer .payment-img {
  width: 330px;
}

/* End Footer */

/* Start Cart */

.cart {
  position: fixed;
  top: 0;
  right: -350px;
  bottom: 0;
  z-index: 1100;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  width: 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
}
.cart.active {
  right: 0;
}
.cart .top-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart .top-cart .close-cart i {
  cursor: pointer;
  font-size: 35px;
}
.cart .top-cart h3 {
  font-size: 18px;
}
.cart .top-cart h3 span {
  color: var(--color-heading);
}

.cart .items-in-cart {
  padding: 20px 0;
  border-block: 1px solid var(--border-color);
  margin-block: 20px;
  height: 100%;
  overflow-y: auto;
}
.cart .items-in-cart .item-cart {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 125px;
  border-bottom: 1px solid var(--border-color);
}
.cart .items-in-cart .item-cart:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.cart .items-in-cart .item-cart img {
  width: 80px;
}
.cart .items-in-cart .item-cart h4 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 2;

  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cart .items-in-cart .item-cart .delete-item i {
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.cart .items-in-cart .item-cart .delete-item i:hover {
  color: #e51a1a;
}
.cart .items-in-cart .item-cart .quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.cart .items-in-cart .item-cart .quantity-control span {
  font-size: 18px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart .items-in-cart .item-cart .quantity-control button {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
}
.cart .bottom-cart .total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.cart .bottom-cart .price-cart-total {
  color: var(--main-color);
  font-size: 20px;
}
.cart .bottom-cart .button-cart {
  display: flex;
  gap: 20px;
}
.cart .bottom-cart .button-cart .btn-cart {
  text-transform: uppercase;
  border: 2px solid var(--main-color);
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.cart .bottom-cart .button-cart .trans-bg {
  background: transparent;
  color: var(--color-heading);
  padding: 10px 14px;
}

/* End Cart */

.close-menu,
.open-menu {
  display: none;
}

/* Strart Responsive */

@media (max-width: 1100px) {
  body {
    padding-top: 240px;
  }
  header .top-header .container {
    flex-wrap: wrap;
  }
  header .top-header .search-box {
    order: 3;
    width: 80%;
    margin: 20px auto 0;
  }
  header .top-header .logo {
    width: 140px;
  }
  header .top-header .search-box select {
    width: 200px;
  }
  header .top-header .search-box input {
    width: calc(100% - 200px);
  }
  header .bottom-header .nav-links {
    position: fixed;
    left: -400px;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 400px;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    border: 1px solid #b5b5b596;
    transition: 0.3s ease-in-out;
  }
  header .bottom-header .nav-links.active {
    left: 0;
  }
  header .bottom-header .nav-links li {
    font-size: 18px;
    height: auto;
  }
  .close-menu {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
  }
  .open-menu {
    display: block;
    font-size: 25px;
    cursor: pointer;
  }
  .open-menu i {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 3px;
  }
  header .bottom-header .category-nav {
    width: auto;
  }
  header .bottom-header .category-nav .category-btn p {
    font-size: 13px;
    margin: 0 10px;
  }
  header .bottom-header nav {
    gap: 20px;
  }
  .banners-4 .container {
    flex-wrap: wrap;
  }
  .banners-4 .container .box {
    width: 49%;
    margin-bottom: 20px;
    justify-content: space-around;
  }
}

@media (max-width: 1000px) {
  .slider .banner-2 {
    display: none;
  }
  .slider .container .slide-swp {
    width: 100%;
  }
  footer .container {
    flex-wrap: wrap;
  }
  footer .container .big-row {
    width: 40%;
    margin-bottom: 20px;
  }
  footer .container .row {
    width: 30%;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .top-slide h2 {
    font-size: 16px;
    padding: 10px 25px;
  }
  .product .name-product {
    font-size: 14px;
  }
  .price p {
    font-size: 16px;
  }
  .price .old-price {
    font-size: 12px;
  }
  .icons .btn-add-cart {
    font-size: 14px;
    padding: 3px 5px;
  }
  .banners .banners-boxes {
    flex-wrap: wrap;
  }
  .banners .banners-boxes .box {
    width: 100%;
    margin-bottom: 20px;
  }
  .banners .banners-boxes.banner-3-img .box {
    width: 49%;
    margin-bottom: 12px;
  }

  footer .container .big-row {
    width: 50%;
    margin-bottom: 30px;
  }
  footer .container .row {
    width: 48%;
    margin-bottom: 30px;
  }
  footer .bottom-footer .container {
    flex-direction: column;
    gap: 8px;
    padding-top: 7px;
  }
  footer .bottom-footer .payment-img {
    width: 300px;
  }
}

@media (max-width: 670px) {
  header .bottom-header .category-nav {
    display: none;
  }
}

@media (max-width: 500px) {
  header .top-header .search-box {
    width: 100%;
  }
  header .top-header .search-box select {
    width: 140px;
  }
  header .top-header .search-box input {
    width: calc(100% - 140px);
  }

  header .bottom-header .nav-links {
    width: 100%;
    left: -100%;
  }
  .cart {
    width: 100%;
    right: -100%;
  }
  .cart .bottom-cart .button-cart {
    justify-content: space-between;
  }
  .banners-4 .container .box {
    width: 100%;
  }
  .banners-4 .container .box h5 {
    font-size: 14px;
  }
  .banners-4 .container .box h6 {
    font-size: 13px;
  }
  .banners .banners-boxs.banner-3-img .box {
    width: 100%;
  }
  .icons .btn-add-cart {
    font-size: 13px;
  }
  .icons .btn-add-cart i {
    font-size: 14px;
  }
  footer .container .row {
    width: 100%;
  }
  footer .container .big-row {
    width: 100%;
  }
  footer .bottom-footer .payment-img {
    width: 80%;
  }
}

/* Checkout Page */
.checkout {
  margin: 50px 0;
}
.checkout .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout .ordersummary {
  width: 45%;
  padding: 0 20px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0px 8px 10px #c0bfbf44;
}
.checkout .ordersummary h1 {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin-bottom: 20px;
  color: var(--main-color);
}
.checkout .ordersummary .items {
  height: 350px;
  overflow-y: auto;
}
.checkout .ordersummary .item-cart {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  height: 125px;
  border-bottom: 1px solid var(--border-color);
  padding-right: 20px;
}
.checkout .ordersummary .item-cart:last-child {
  border-bottom: none;
}
.checkout .ordersummary .item-cart .image-name {
  display: flex;
  align-items: center;
  gap: 20px;
}
.checkout .ordersummary .item-cart img {
  width: 80px;
}
.checkout .ordersummary .item-cart h4 {
  margin-bottom: 10px;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;

  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.checkout .ordersummary .delete-item i {
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}
.checkout .ordersummary .delete-item i:hover {
  color: #e51a1a;
  scale: 1.1;
}
.checkout .ordersummary .quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.checkout .ordersummary .quantity-control span {
  font-size: 18px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  padding: 3px 0;
}
.checkout .ordersummary .quantity-control button {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
}
.checkout .ordersummary .bottom-summary {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
}
.checkout .ordersummary .shop-table {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout .ordersummary .shop-table p {
  font-size: 20px;
  color: var(--color-heading);
  text-transform: capitalize;
}
.checkout .ordersummary .shop-table span {
  font-weight: bold;
  font-size: 20px;
}
.checkout .ordersummary .button-div {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}
.checkout .ordersummary .button-div button {
  width: 100%;
  background: var(--main-color);
  color: var(--white-color);
  border: 2px solid var(--main-color);
  padding: 15px 0;
  outline: none;
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.checkout .ordersummary .button-div button:hover {
  background: transparent;
  color: var(--main-color);
}

.checkout .input-info {
  width: 45%;
}
.checkout .input-info h2 {
  padding: 10px 20px;
  background: var(--main-color);
  text-transform: capitalize;
  color: #fff;
}
.checkout .input-info .address,
.checkout .input-info .coupon {
  margin-bottom: 25px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0px 8px 10px #c0bfbf44;
}
.checkout .input-info .coupon .btn-coupon {
  text-align: center;
  padding-bottom: 20px;
}
.checkout .input-info .coupon .btn-coupon button {
  width: 50%;
  background: var(--main-color);
  color: #fff;
  border: 2px solid var(--main-color);
  padding: 12px 0;
  outline: none;
  border-radius: 2px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.checkout .input-info .coupon .btn-coupon button:disabled {
  background: #c57635;
  border: 2px solid #c57635;
}
.checkout .input-info .coupon .btn-coupon button:disabled:hover {
  background: #c57635;
  border: 2px solid #c57635;
  color: white;
}
.checkout .input-info .coupon .btn-coupon button:hover {
  background: transparent;
  color: var(--main-color);
}
.checkout .input-info .inputs {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}
.checkout .input-info .inputs label {
  color: var(--color-heading);
  font-size: 14px;
  text-transform: capitalize;
}
.checkout .input-info .inputs input {
  margin: 8px 0 22px;
  padding: 15px 10px;
  outline: none;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  transition: 0.3s;
}
.checkout .input-info .inputs input:focus {
  border-color: var(--main-color);
}

@media (max-width: 1100px) {
  .checkout .container {
    flex-direction: column;
    gap: 60px;
  }
  .checkout .ordersummary,
  .checkout .input-info {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .checkout .ordersummary,
  .checkout .input-info {
    width: calc(100% - 5vh);
  }
}
@media (max-width: 480px) {
  .checkout .ordersummary .item-cart img {
    width: 60px;
  }
  .checkout .ordersummary .item-cart h4 {
    max-width: 180px;
  }
}

/* ############### Start productDetails ################### */

.details {
  padding: 60px 0 80px;
}
.details .container {
  display: flex;
  justify-content: space-between;
}

.image-div {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
.image-div img {
  width: 100%;
  margin-top: -25px;
  max-width: 400px;
  height: auto;
}
.info {
  width: 53%;
}
.info #product-name {
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 30px;
}
.info #product-rating {
  display: flex;
  gap: 5px;
  margin: 15px 0;
}
.info #product-rating i {
  color: var(--main-color);
  margin: 10px 0 10px;
}
.info #price {
  font-size: 22px;
  margin: 20px 0;
}
.info h5 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 16px;
}
.info .desc {
  line-height: 1.5;
}
.info .desc + span {
  font-weight: 500;
  font-size: 20px;
  margin: 20px 0;
  display: block;
}
.info .icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.info .icons .icon-product {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.info .icons .icon-product:hover {
  background: var(--main-color);
}
.info .icons .icon-product i {
  font-size: 14px;
}
.info .icons .icon-product:hover i {
  color: var(--white-color);
}

.info .icons .icon-product.favorite {
  background: #e51a1a;
  border-color: #e51a1a;
}

.info .icons .icon-product.favorite i {
  color: var(--white-color);
}

/* Favorites Page */
.favorites-page {
  margin: 50px 0;
}

.favorites-page .page-header {
  text-align: center;
  margin-bottom: 40px;
}

.favorites-page .page-header h1 {
  color: var(--main-color);
  font-size: 32px;
  margin-bottom: 10px;
}

.favorites-page .page-header h1 i {
  margin-right: 10px;
  color: #6d6d6d;
}

.favorites-page .page-header p {
  color: var(--p-color);
  font-size: 18px;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.empty-favorites {
  text-align: center;
  padding: 60px 20px;
}

.empty-favorites i {
  font-size: 80px;
  color: var(--p-color);
  margin-bottom: 20px;
}

.empty-favorites h2 {
  color: var(--color-heading);
  font-size: 24px;
  margin-bottom: 10px;
}

.empty-favorites p {
  color: var(--p-color);
  font-size: 16px;
  margin-bottom: 30px;
}

.empty-favorites .btn {
  background: var(--main-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.empty-favorites .btn:hover {
  background: #e67600;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .favorites-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .favorites-page .page-header h1 {
    font-size: 28px;
  }
}

.slide-product {
  position: relative;
}

.top-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.swiper-arrows {
  display: flex;
  gap: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: var(--bg-color);
  color: var(--color-heading);
  font-weight: bold;
  border: 1px solid var(--border-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* Hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ee8a2d;
  color: #fff;
}

.swiper-slide.product {
  height: 375px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.img-product {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.img-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Start Success Page */
.success-page-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.success-card {
  background: var(--white-color);
  padding: 50px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 450px;
  width: 95%;
  text-align: center;
  animation: successFadeIn 0.6s ease-out;
}

.success-icon-container {
  width: 80px;
  height: 80px;
  background: #fff4ec;
  color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}

.success-title {
  font-size: 1.8rem;
  color: var(--color-heading);
  margin-bottom: 15px;
}

.success-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--p-color);
}

.success-status-box {
  display: block;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 30px;
  background-color: #f9f9f9;
}

.success-status-box.success {
  color: var(--success-color, #28a745);
  border-left: 5px solid var(--success-color, #28a745);
}

.success-status-box.failed {
  color: var(--error-color, #e51a1a);
  border-left: 5px solid var(--error-color, #e51a1a);
}

.success-home-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition:
    transform 0.2s,
    background 0.3s;
}

.success-home-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End Success Page */
