@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*
    // File Map
    1- Global
     - Remove decoration line from tag ( a )
     - Reset Button
*/
/*
|
|
| Start Global
|
|
*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--body-background);
}

a {
  text-decoration: none !important;
}

.disabled {
  opacity: 0.8;
  cursor: not-allowed !important;
}

button {
  outline: none !important;
  border: none;
}

.display-none {
  display: none;
}

.error {
  color: #ff0000;
  display: block;
  border-radius: var(--border-radius);
  margin-top: 3px;
  font-size: 14px;
}

.no-padding-xs {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mb-10px {
  margin-bottom: 10px !important;
}

.alert-box-success {
  margin-bottom: 15px;
  background-color: #27ae60;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: none !important;
  color: #fff;
}

.alert-box-error {
  margin-bottom: 15px;
  background-color: #bd362f;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: none !important;
  color: #fff;
}

.alert-box-warning {
  margin-bottom: 15px;
  background-color: #ffc107;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: none !important;
  color: #000;
}

.alert-box-info {
  margin-bottom: 15px;
  background-color: #cce5ff;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: none !important;
  color: #004085;
}

.alert-box-notfound {
  margin-bottom: 15px;
  background-color: #ffc107;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: none !important;
  color: #000;
}

/*
|
|
| End Global
|
|
*/
.main-pageinate .pagination {
  justify-content: center;
  flex-wrap: wrap;
}
.main-pageinate .pagination .active .page-link {
  background-color: var(--brand-main-color) !important;
  color: var(--brand-main-text-color) !important;
  border-color: var(--brand-main-color) !important;
}
.main-pageinate .pagination .page-link {
  border-radius: 5px;
  margin: 0px 1px;
  text-align: center;
}
.main-pageinate .pagination .page-link:focus {
  box-shadow: none !important;
}
.main-pageinate .pagination .page-link:hover {
  background-color: var(--brand-second-color);
  color: var(--brand-main-text-color);
  border-color: var(--brand-second-color);
}

/* THIS APP */
.middle-with-svg span,
.middle-with-svg svg {
  vertical-align: middle;
}

.page-links {
  list-style: none;
}
.page-links li,
.page-links span,
.page-links svg {
  vertical-align: middle;
}
.page-links li {
  display: inline-block;
  font-size: 15px;
}
.page-links li a {
  color: var(--color-black);
}
.page-links li a svg {
  width: 16px;
  height: 25px;
}
.page-links .active a {
  color: var(--brand-main-color) !important;
}
.page-links .active a svg {
  fill: var(--brand-main-color) !important;
  width: 16px;
  height: 25px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: clamp(1.25rem, 1.118rem + 0.4225vw, 1.625rem);
}
.section-title svg {
  width: clamp(1.5rem, 1.3019rem + 0.6338vw, 2.0625rem);
}

/* Products Cards */
.price {
  color: #888;
}
.price .original-price {
  text-decoration: line-through;
  margin-right: 5px;
}
.price .price-without-discount {
  color: #000;
}
.price .discounted-price {
  color: #000;
}

.product-card {
  position: relative;
  border-radius: var(--border-radius);
  padding: 10px;
  padding-bottom: 45px;
  background-color: #fff;
}
.product-card .btn-add-to-cart, .product-card .btn-out-of-stock {
  position: absolute;
  bottom: 10px;
  width: calc(100% - var(--card-padding));
  font-size: clamp(0.875rem, 0.831rem + 0.1408vw, 1rem);
}
.product-card .image-container {
  position: relative;
  overflow: hidden;
}
.product-card .image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  transition: opacity 0.3s ease-in-out;
}
.product-card .image-container .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}
.product-card .image-container:hover .main-image {
  opacity: 0;
}
.product-card .image-container:hover .hover-image {
  opacity: 1;
}
.product-card .title {
  font-size: clamp(0.875rem, 0.831rem + 0.1408vw, 1rem);
  color: #505050;
  font-weight: 400;
}
.product-card .price {
  color: #888;
}
.product-card .price .original-price {
  text-decoration: line-through;
  margin-right: 5px;
}
.product-card .price .price-without-discount {
  color: #000;
  font-weight: 500;
}
.product-card .price .discounted-price {
  color: #000;
  font-weight: 500;
}
.product-card .buy-button {
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.product-card .buy-button:hover {
  background-color: #2980b9;
}
.product-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.product-card .active {
  background-color: rgba(255, 0, 0, 0.1333333333) !important;
  transform: scale(1) !important;
}
.product-card .active svg {
  fill: #ff0000 !important;
  transform: scale(1) !important;
}
.product-card .btn-add-to-fav {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #e6e6e6;
  border-radius: 50%;
  transition: all 0.3s linear;
}
.product-card .btn-add-to-fav svg {
  width: 20px;
  height: 20px;
  fill: #5a5a5a;
  transition: all 0.15s linear;
}
.product-card .btn-add-to-fav:hover {
  transform: scale(1.1);
  background-color: rgba(255, 0, 0, 0.0784313725);
}
.product-card .btn-add-to-fav:hover svg {
  fill: #ff0000;
  transform: scale(1.15);
}

/* Add To Cart Notif */
.cart-notification {
  display: none;
  position: fixed;
  bottom: 10px;
  right: -300px;
  background-color: #ffffff;
  color: #333;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 320px;
}
.cart-notification .notification-content {
  display: flex;
  align-items: center;
}
.cart-notification #productImage {
  width: 50px; /* Set a fixed width for the image */
  height: 50px; /* Set a fixed height for the image */
  margin-right: 10px; /* Space between image and text */
  border-radius: var(--border-radius);
}
.cart-notification #closeNotification {
  background: none;
  border: none;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .cart-notification {
    max-width: 90%;
    right: -100%;
    top: 85px;
    bottom: unset;
  }
  .cart-notification #productImage {
    width: 40px;
    height: 40px;
  }
  .cart-notification #closeNotification {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .cart-notification {
    max-width: 92%;
    right: -100%;
  }
  .cart-notification #productImage {
    width: 35px;
    height: 35px;
  }
  .cart-notification #closeNotification {
    font-size: 18px;
  }
}

button[disabled] {
  cursor: not-allowed;
  opacity: 0.5 !important;
}/*# sourceMappingURL=global.css.map */