/*
Theme Name: beauty-parlour-salon-child
Template: beauty-parlour-salon
*/
@media only screen and (min-width: 1441px) {
  .wrapper {
    max-width: 1100px;
  }
}
img.custom-logo {
  width: auto !important;
  height: 50px;
}
.review-block {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 38, 51, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 38, 51, 0.1);
}
.review-block:hover {
  box-shadow: 0 8px 30px rgba(0, 38, 51, 0.12);
  transform: translateY(-2px);
}
.review-head {
  background: linear-gradient(135deg, #002633 0%, #003d4f 100%);
  padding: 24px 28px;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.review-head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 99, 69, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.review-head .wp-block-image {
  margin: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.review-head .wp-block-image img {
  border-radius: 12px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.review-head:hover .wp-block-image img {
  transform: scale(1.05);
}
.review-head .wp-block-heading {
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.review-block > p {
  padding: 28px;
  margin: 0;
  color: #002633;
  background: #ffffff;
}
.review-block > p::first-line {
  font-weight: 600;
  color: #e66345;
}
table {
  margin: 0;
}
.wp-block-table {
  margin: 32px 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 38, 51, 0.1);
}
.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  overflow: hidden;
}
.wp-block-table thead {
  background: linear-gradient(135deg, #002633 0%, #003d4f 100%);
  position: relative;
}
.wp-block-table thead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e66345 0%, #ff8a6b 100%);
}
.wp-block-table thead th {
  padding: 20px 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  position: relative;
}
.wp-block-table thead th:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.wp-block-table tbody tr {
  transition: all 0.3s ease;
  background: #ffffff;
}
.wp-block-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.wp-block-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(230, 99, 69, 0.05) 0%, rgba(0, 38, 51, 0.03) 100%);
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 38, 51, 0.08);
}
.wp-block-table tbody td {
  padding: 18px 16px;
  color: #002633;
  border-bottom: 1px solid rgba(0, 38, 51, 0.08);
  transition: all 0.3s ease;
}
.wp-block-table tbody tr:last-child td {
  border-bottom: none;
}
.wp-block-table tbody td:first-child {
  color: #e66345;
  position: relative;
}
.wp-block-table tbody td:first-child::before {
  content: "🎰";
  margin-right: 8px;
  font-size: 16px;
}
.wp-block-table tbody td:nth-child(2) {
  font-weight: 600;
  color: #003d4f;
}
.faq-group {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0;
  box-shadow: 0 4px 20px rgba(0, 38, 51, 0.08);
  border: 1px solid rgba(0, 38, 51, 0.1);
}
.faq-group > .wp-block-group__inner-container > h2 {
  color: #002633;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px 0;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.faq-group > .wp-block-group__inner-container > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e66345 0%, #ff8a6b 100%);
  border-radius: 2px;
}
.faq-group > .wp-block-group__inner-container > p {
  text-align: center;
  color: #003d4f;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 32px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-row {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 16px 0;
  border-left: 4px solid #e66345;
  box-shadow: 0 2px 12px rgba(0, 38, 51, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.faq-row::before {
  content: "?";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  font-weight: 900;
  color: rgba(230, 99, 69, 0.05);
  line-height: 1;
  pointer-events: none;
}
.faq-row:hover {
  box-shadow: 0 6px 20px rgba(0, 38, 51, 0.12);
  transform: translateX(4px);
  border-left-color: #002633;
}
.faq-row:hover::before {
  color: rgba(230, 99, 69, 0.08);
}
.faq-row h3 {
  color: #002633;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  padding-right: 60px;
}
.faq-row h3::before {
  content: "→";
  color: #e66345;
  margin-right: 12px;
  font-weight: 900;
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-row:hover h3::before {
  transform: translateX(4px);
}
.faq-row p {
  color: #003d4f;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
.faq-row:nth-child(even) {
  border-left-color: #002633;
}
.faq-row:nth-child(even):hover {
  border-left-color: #e66345;
}
.about-row {
  background: linear-gradient(135deg, #002633 0%, #003d4f 100%);
  border-radius: 16px;
  padding: 32px 40px;
  margin: 48px 0;
  box-shadow: 0 4px 20px rgba(0, 38, 51, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-row::before {
  content: "✍";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  font-size: 180px;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.about-row::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e66345 0%, #ff8a6b 50%, #e66345 100%);
}
.about-row h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-row h2::before {
  content: "👤";
  font-size: 32px;
  filter: grayscale(1) brightness(2);
}
.about-row p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 400;
  max-width: 900px;
}
.about-row p strong {
  color: #e66345;
  font-weight: 700;
}
.about-row:hover {
  box-shadow: 0 8px 30px rgba(230, 99, 69, 0.2);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
.about-row:hover::before {
  opacity: 0.08;
  transition: opacity 0.3s ease;
}
.proto-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.proto-list li {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 12px rgba(0, 38, 51, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
}
.proto-list li::before {
  content: "🎰";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  opacity: 0.15;
  transition: all 0.3s ease;
}
.proto-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 99, 69, 0.2);
  border-color: #e66345;
}
.proto-list li:hover::before {
  opacity: 0.25;
  transform: translateY(-50%) scale(1.1) rotate(5deg);
}
.proto-list li a {
  display: block;
  padding: 24px 20px;
  text-decoration: none;
  color: #002633;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.proto-list li a::before {
  content: attr(href);
  content: "";
}
.proto-list li a {
  font-weight: 600;
  background: linear-gradient(135deg, #002633 0%, #e66345 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}
.proto-list li {
  font-weight: 400;
  color: #003d4f;
}
.proto-list li:hover a {
  background: linear-gradient(135deg, #e66345 0%, #ff8a6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proto-list li a::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e66345 0%, transparent 100%);
  margin: 8px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.proto-list li:hover a::after {
  width: 60px;
  background: linear-gradient(90deg, #e66345 0%, #ff8a6b 100%);
}
.proto-list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #002633 0%, #e66345 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.proto-list li:hover::after {
  opacity: 1;
}
.site-info {
  padding: 2rem 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .proto-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .faq-group {
    padding: 28px 20px;
    margin: 32px 0;
    border-radius: 12px;
  }
  .faq-group > .wp-block-group__inner-container > h2 {
    font-size: 26px;
    padding-bottom: 16px;
  }
  .faq-group > .wp-block-group__inner-container > h2::after {
    width: 60px;
    height: 3px;
  }
  .faq-group > .wp-block-group__inner-container > p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .faq-row {
    padding: 20px;
    margin: 12px 0;
  }
  .faq-row::before {
    font-size: 60px;
    right: 10px;
  }
  .faq-row h3 {
    font-size: 16px;
    padding-right: 40px;
  }
  .faq-row h3::before {
    margin-right: 8px;
  }
  .faq-row p {
    font-size: 14px;
  }
  .faq-row:hover {
    transform: translateX(2px);
  }
  .about-row {
    padding: 24px 20px;
    margin: 32px 0;
    border-radius: 12px;
  }
  .about-row::before {
    font-size: 120px;
    right: -30px;
  }
  .about-row h2 {
    font-size: 22px;
    gap: 8px;
  }
  .about-row h2::before {
    font-size: 26px;
  }
  .about-row p {
    font-size: 14px;
    line-height: 1.7;
  }
  .proto-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
  }
  .proto-list li a {
    padding: 20px 16px;
    font-size: 14px;
  }
  .proto-list li::before {
    font-size: 28px;
    right: 12px;
  }
}
