@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");
.df {
  display: flex;
}

.aic {
  align-items: center;
}

.jcsb {
  justify-content: space-between;
}

.mt30 {
  margin-top: 30px;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 400px;
}
.header-search input {
  width: 100%;
  height: 40px;
  border: 2px solid #e1e1e1;
  border-radius: 20px;
  padding: 0 45px 0 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  animation: borderPulse 2s infinite;
}
.header-search input:focus {
  border-color: #b22925;
  box-shadow: 0 0 15px rgba(178, 41, 37, 0.15);
  outline: none;
  animation: none;
}
.header-search button {
  position: absolute;
  right: 5px;
  height: 30px;
  width: 30px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(45deg, #b22925, #d13f3b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-search button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(178, 41, 37, 0.3);
}

@keyframes borderPulse {
  0% {
    border-color: #e1e1e1;
  }
  50% {
    border-color: #b22925;
    box-shadow: 0 0 10px rgba(178, 41, 37, 0.1);
  }
  100% {
    border-color: #e1e1e1;
  }
}
.product-list-information {
  margin: 0 0 15px;
}

table.list-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
table.list-table thead tr {
  background: #f8f9fa;
}
table.list-table thead tr th {
  padding: 15px;
  text-align: left;
  color: #333;
  border-bottom: 2px solid #dee2e6;
  transition: all 0.3s ease;
  font: 600 13px/20px "Nunito", sans-serif;
}
table.list-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}
table.list-table tbody tr:hover {
  background: #f8f9fa;
  transform: scale(1.002);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}
table.list-table tbody tr td {
  padding: 12px 15px;
  color: #666;
  vertical-align: middle;
  font: 13px/20px "Nunito", sans-serif;
}
table.list-table tbody tr td:first-child {
  width: 100px;
}
table.list-table tbody tr td img.product-list-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
table.list-table tbody tr:last-child {
  border-bottom: none;
}

a.product-detail-button {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #b22925;
}
a.product-detail-button span {
  font: 600 13px/20px "Nunito", sans-serif;
}
a.product-detail-button i {
  margin-left: 5px;
}

.product-list-pagination {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.product-list-pagination .pagination-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-list-pagination .pagination-links a.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  color: #666;
  font: 600 14px/1 "Nunito", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.product-list-pagination .pagination-links a.pagination-link:hover {
  background: #f8f9fa;
  color: #b22925;
  border-color: #b22925;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(178, 41, 37, 0.15);
}
.product-list-pagination .pagination-links a.pagination-link.active {
  background: #b22925;
  color: #fff;
  border-color: #b22925;
}
.product-list-pagination .pagination-links a.pagination-link i {
  font-size: 12px;
}

.product-detail {
  padding: 20px 0;
}

.product-images {
  border: 1px solid #ccc;
  padding: 10px;
}
.product-images img {
  width: 100%;
}

.product-info h1 {
  color: #b22925;
  font: 700 20px/24px "Nunito", sans-serif;
  margin: 0 0 5px;
}
.product-info h2 {
  font: 400 16px/20px "Nunito", sans-serif;
  color: #333;
  margin: 0 0 10px;
}

.product-detail-table {
  width: 100%;
  border-collapse: collapse;
}
.product-detail-table thead tr th {
  background: #333;
  color: #fff;
  font: 700 14px/20px "Nunito", sans-serif;
  padding: 6px;
  border: 1px solid #ccc;
}
.product-detail-table tbody tr td {
  padding: 6px;
  border: 1px solid #ccc;
  font: 400 14px/20px "Nunito", sans-serif;
  color: #333;
}

body {
  font-family: "Nunito", sans-serif;
}

.site-container {
  width: 1200px;
  margin: 0 auto;
}

header .header-top-bar {
  background: #333;
  height: 40px;
}
header .header-top-bar .social-links a {
  color: #fff;
  margin-right: 15px;
  font-size: 16px;
  line-height: 40px;
  transition: all 0.3s ease;
}
header .header-top-bar .social-links a:hover {
  color: #b22925;
  transform: translateY(-2px);
}
header .header-top-bar .languages a {
  margin-left: 15px;
  opacity: 0.7;
  transition: all 0.3s ease;
}
header .header-top-bar .languages a:hover {
  opacity: 1;
}
header .header-top-bar .languages a img {
  width: 25px;
  border-radius: 3px;
}
header .header-main {
  background: #fff;
  height: 100px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}
header .header-main .logo {
  padding: 10px 0;
  float: left;
}
header .header-main .logo img {
  height: 80px;
  transition: all 0.3s ease;
}
header .header-main .logo img:hover {
  transform: scale(1.05);
}
header .header-main .search-box {
  float: left;
  margin-left: 30px;
  position: relative;
  width: 400px;
}
header .header-main .search-box input {
  width: 100%;
  height: 45px;
  border: 2px solid #eee;
  border-radius: 25px;
  padding: 0 20px;
  font: 14px "Nunito", sans-serif;
  transition: all 0.3s ease;
  background: #f8f9fa;
}
header .header-main .search-box input:focus {
  border-color: #b22925;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(178, 41, 37, 0.1);
  outline: none;
}
header .header-main .search-box button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #b22925;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .header-main .search-box button:hover {
  background: rgb(135.776744186, 31.2744186047, 28.223255814);
  transform: scale(1.05);
}
header .header-main .buttons {
  float: right;
}

.page-404 .content {
  text-align: center;
}
.page-404 .content h1 {
  font-size: 100px;
  color: #b22925;
  margin-bottom: 20px;
}
.page-404 .content p {
  font-size: 20px;
  color: #333;
}

.stage {
  padding: 20px 0;
}

.home-page {
  min-height: calc(100vh - 500px);
}

h1.center-title {
  text-align: center;
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}

.catalogue-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0;
}
.catalogue-list .catalogue-box {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.catalogue-list .catalogue-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.catalogue-list .catalogue-box .cover {
  position: relative;
  height: 120px;
}
.catalogue-list .catalogue-box .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.catalogue-list .catalogue-box .cover h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 13px;
  padding-top: 15px;
}
.catalogue-list .catalogue-box .logo {
  margin: 20px 0;
}
.catalogue-list .catalogue-box .logo img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}
.catalogue-list .catalogue-box .download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(45deg, #b22925, #d13f3b);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.catalogue-list .catalogue-box .download-button i {
  font-size: 18px;
}
.catalogue-list .catalogue-box .download-button:hover {
  background: linear-gradient(45deg, #d13f3b, #b22925);
  transform: scale(1.05);
}

footer .footer-main {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #eee;
}
footer .footer-main .footer-address h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}
footer .footer-main .footer-address p {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-main .footer-address p i {
  color: #b22925;
  font-size: 18px;
  width: 20px;
}
footer .footer-main .footer-address p:last-child {
  margin-bottom: 0;
}
footer .footer-bottom {
  background: #333;
  padding: 20px 0;
  color: #333;
  background: #FFF;
}
footer .footer-bottom .footer-bottom-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-bottom .footer-bottom-main .copyright {
  font: 13px/20px "Nunito", sans-serif;
  color: #333;
}
footer .footer-bottom .footer-bottom-main .created-by {
  display: flex;
  align-items: center;
  font: 13px/20px "Nunito", sans-serif;
}
footer .footer-bottom .footer-bottom-main .created-by span {
  margin-right: 5px;
}
footer .footer-bottom .footer-bottom-main .created-by i {
  margin-left: 5px;
}
footer .footer-bottom .footer-bottom-main .created-by img {
  height: 25px;
}

.only-mobile-view {
  display: none;
}

.catalogue-btn, .catalogue-btn-home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #eee;
  border-radius: 15px;
  padding: 10px 25px;
  text-decoration: none;
  height: 80px;
  transition: all 0.3s ease;
  background: #fff;
}
.catalogue-btn:hover, .catalogue-btn-home:hover {
  border-color: #b22925;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.catalogue-btn img, .catalogue-btn-home img {
  height: 35px;
  transition: all 0.3s ease;
}
.catalogue-btn span, .catalogue-btn-home span {
  font: 600 14px/20px "Nunito", sans-serif;
  color: #333;
  display: block;
  margin-top: 8px;
}

@media screen and (max-width: 1200px) {
  .site-container {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  header .header-main {
    height: auto;
  }
  header .header-main .site-container {
    flex-direction: column;
  }
  header .header-main .logo {
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
  header .header-main .logo img {
    height: 60px;
  }
  header .header-main .search-box {
    float: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }
  header .header-main .buttons {
    display: none;
  }
  .catalogue-list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
  .only-mobile-view {
    display: block;
  }
  .product-list-products {
    overflow-x: auto;
  }
  .pagination-links {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  header .header-main {
    padding-bottom: 15px;
  }
  header .header-main .search-box input {
    height: 40px;
    font-size: 13px;
  }
  header .header-main .search-box button {
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
  }
  .catalogue-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  footer .footer-main {
    padding: 40px 0;
  }
  footer .footer-main .footer-address {
    text-align: center;
  }
  footer .footer-main .footer-address h4 {
    font-size: 18px;
  }
  footer .footer-main .footer-address p {
    justify-content: center;
  }
  footer .footer-bottom .footer-bottom-main {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  footer .footer-bottom .footer-bottom-main .copyright {
    order: 2;
  }
  footer .footer-bottom .footer-bottom-main .created-by {
    order: 1;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .catalogue-list {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  h1.center-title {
    font-size: 24px;
  }
  .page-404 .content h1 {
    font-size: 70px;
  }
  .page-404 .content p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
