@font-face {
  font-family: Refinery;
  src: url(/Refinery.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Refinery';
}

.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100dvh;
  transition: 0.5s;
  background-image: url('/images/salon/salon12.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  overflow-y: auto;
}

.showcase.active {
  right: 300px;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/icons/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
  z-index: 1002;
}

.toggle.active {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/icons/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
  z-index: 1002;
}

.social {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.social ul {
  display: flex;
}

.social li {
  list-style: none;
  margin-left: 4px;
  margin-right: 4px;
}

.social li img {
  display: inline-block;
  opacity: 0.7;
  transform: scale(0.5);
  transition: 0.5s;
  cursor: pointer;
}

.social li img:hover {
  opacity: 1;
  transform: scale(0.5) translateY(-15px);
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-logo {
  top: 6%;
  width: 200px;
  height: 50px;
  position: absolute;
  background: url(/images/logos/logo-black.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

.menu-logo:hover {
  transform:scale(105%);
  transition: 0.5s;
}

.menu ul {
  position: relative;
}

.menu ul li {
  list-style: none;
  margin-bottom: 5%;
}

.menu ul li a {
  text-decoration: none;
  font-size: 24px;
  color: #111;
}

.menu ul li a:hover {
  color: #b9b84e;
}

.menu ul li:last-child {
  margin-bottom: 0;
}

.top-section {
  display: flex;
  width: 90%;
  margin-left: 5%;
  height: 70%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(2.9px);
  backdrop-filter: blur(2.9px);
  overflow-y: auto;
  overflow-x: hidden;
}

.left-section {
  color: white;
  height: 1fr;
  width: 1fr;
  margin-top: 5%;
}
.page-title {
  padding-bottom: 12%;
  font-size: xx-large;
  text-align: center;
  text-shadow: 1px 1px 2px black;
}

.page-desc{
  margin-left: 20px;
  text-align: left;
  text-shadow: 1px 1px 2px black;
  font-size: medium;
}

.page-desc p {
  padding-bottom: 5%;
}

.right-section {
  width: 55%;
  height: 65%;
}

.product-line {
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2.9px);
  backdrop-filter: blur(2.9px); 
  border-radius: 16px;
  color: white;
  cursor: pointer;
  top: 20%;
  padding: 0 18px 10px 18px;
  width: 90%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  height: 22%;
  min-height: 100px;
  align-items: left;
  justify-content:end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1001;
}

#product1 {
  background-image: url(/images/salon/salon15.jpg);
}

#product2 {
  background-image: url(/images/salon/salon14.jpg);
}

#product3 {
  background-image: url(/images/salon/salon13.jpg);
}

.subtitle {
  font-size: medium;
}

.title {
  font-size: large;
}

.tagline {
  font-size: small;
}


.product-container {
  color: white;
  font-size: 16px;
  text-shadow: 1px 1px 2px black;
  position: relative;
  background: rgba(189, 189, 189, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.26);
  padding: 0 18px;
  max-height: 0;
  top: 20%;
  left: 5%;
  width: 70%;
  margin: 10px 0 10px 0;
  overflow: hidden;
  transition: max-height 0.8s ease-out;
}
.product-subtitle{
  font-size: 14px;
}

table {
  width: 100%; /* Ensure the table takes full width */
  border-collapse: collapse; /* Optional: Collapses table borders */
}

td {
  padding: 8px; /* Add some padding for better spacing */
}

td:first-child {
  text-align: left; /* Align product names to the left */
}

td:last-child {
  text-align: right; /* Align prices to the right */
  position: relative; /* Needed for the pseudo-element */
}


tr {
  height: 40px; /* Set row height if desired */
}

td:first-child {
  padding-right: 50px; /* Add space on the right for periods */
}

td:last-child {
  padding-left: 10px; /* Space between periods and price */
}

@media (max-width:1000px){
  .showcase {
    padding: 20px;
  }
  .showcase header {
    padding: 10px 40px 20px 40px;
  }
  .top-section {
    width: 100%;
    height: 80%;
    margin-left: 0px;
    flex-direction: column;
  }
  .left-section {
    width: 95%;
    padding-top: 10px;
    height: 1fr;
    left: 0;
    margin: 0 0 0 10px;
  }
  .page-title {
    padding-bottom: 2%;
    font-size: x-large;
    text-align: center;
    text-shadow: 1px 1px 2px black;
  }
  .page-desc {
    margin: 2px;
  }
  .page-desc p {
    margin: 0;
    padding-bottom: 1%;
  }
  .right-section {
    width: 100%;
    margin-top: 5%;
    height: 2fr;
  }
  .product-line {
    width: 96%;
    height: 30%;
    top: 0%;
    left: 1%;
    border-radius: 16px;
  }
  .product-container {
    top: 0%;
    margin: 2% 0 2% 0;
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
  }
}