
/* ===== Modern Quantity Input Controls with + / - in CSS ===== */

.msc-unit-quantity td,
.msc-unit-quantity-pack td {
  padding-top: 12px; /* More space between rows */
  padding-bottom: 12px;
}

/* Container */
.msc-quantity,
.msc-quantity-pack {
  width: 110px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  margin-left: 10px;
}

/* Input field */
.msc-quantity input,
.msc-quantity-pack input {
  height: 36px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  outline-offset: 2px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.msc-quantity input:focus,
.msc-quantity-pack input:focus {
  border-color: #468c98;
  box-shadow: 0 0 6px #468c98;
}

/* Buttons */
.msc-increase,
.msc-decrease,
.msc-increase-pack,
.msc-decrease-pack {
  position: absolute;
  width: 32px;
  height: 36px;
  border: none;
  cursor: pointer;
  background: #468c98;
  color: white;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  border-radius: 8px;
  user-select: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.msc-increase,
.msc-increase-pack {
  right: 0;
  top: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.msc-decrease,
.msc-decrease-pack {
  left: 0;
  top: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.msc-increase:hover,
.msc-increase-pack:hover,
.msc-decrease:hover,
.msc-decrease-pack:hover {
  background-color: #d1a752;
}

/* Keep + and - in ::before */
.msc-increase::before,
.msc-increase-pack::before {
  content: '+';
  font-size: 20px;
  line-height: 36px;
  color: white;
  display: block;
}

.msc-decrease::before,
.msc-decrease-pack::before {
  content: '-';
  font-size: 20px;
  line-height: 36px;
  color: white;
  display: block;
}


.fitted .navigation-in ul {
  justify-content: center;
}
.navigation-in>ul>li>a{
      text-transform: uppercase;
  }

.fitted .navigation-in, .submenu-visible .navigation-in {
      width: 100%;
      font-size: 18px;
  }


.products-block .p {
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
      background-color: #ffffff;
      overflow: hidden;
  }
  
.product .p {
      padding: 30px 30px 5px;
  }
  
.header-top>div:last-child {
      text-align: left;
  }    

.navigation-buttons {
  height: 50px;
  align-items: stretch;
}  
  
.lux-sections {
  max-width: 1200px;
  margin: 0 auto;
}

.lux-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: nowrap;
}

.lux-image,
.lux-text {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
}

.lux-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.lux-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.lux-text p {
  line-height: 1.6;
  color: #333;
}

hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 40px 0;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.image-gallery img {
  width: 100%;
  height: 160px; 
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.image-gallery img:hover {
  transform: scale(1.03);
}

.p-detail-tabs {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: #fff;
}
.p-detail-tabs .tabs-navigation {
  display: flex;
  border-bottom: 2px solid #eee;
  background-color: #f6f6f6;
}

.detail-parameters th,
.detail-parameters td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.detail-parameters th {
  font-weight: 600;
  background-color: #f9f9f9;
  color: #222;
  width: 35%;
}

.detail-parameters td {
  color: #555;
}

.homepage-blog-posts article {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }
  .homepage-blog-posts h3 {
    margin: 0 0 5px;
  }
#footer {
    position: relative;
    background: transparent;
    z-index: 1;
}

#footer > .container {
    position: relative;
    background-color: #768db1;
    z-index: 2;
}

.textHeader {
  margin-top: 24px;
  padding: 16px 20px;
  background-color: #f6f6f6;
  border-left: 4px solid #768db1;
  border-radius: 8px;
  color: #444;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}