/*
Theme Name: online-clothing-store-child
Template: online-clothing-store
*/
@media screen and (min-width: 1920px) {
  .wrapper {
    max-width: 1100px;
  }
}
.site-info {
  padding: 2rem 0;
}
.header-right-box,
.header-wrapper .header-areas-right {
  justify-content: flex-end;
}
.site-navigation .primary-menu > li > a {
  color: #fff !important;
}
.header-navbar {
  background: #213e21;
}
.table-list {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.table-list li {
  background: #122212;
  border: 1px solid #234f23;
  border-radius: 10px;
  padding: 16px 18px;
  color: #e1ffe1;
  transition: all 0.3s ease;
}
.table-list li:hover {
  background: #1b4f1b;
  transform: scale(1.02);
}
.table-list a {
  color: #6eff6e;
  font-weight: 600;
  text-decoration: none;
}
.table-list li:hover a {
  color: #ffffff;
}
.table-list li::before {
  content: "⭐ ";
  font-size: 1.1em;
}
.block-review {
  background: #f6faf6;
  border: 1px solid #d9e9d9;
  border-left: 5px solid #1b4f1b;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.block-review:hover {
  background: #eef6ee;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(27, 79, 27, 0.1);
}
.block-review h3 {
  color: #1b4f1b;
  margin: 0 0 8px;
}
.block-review p {
  color: #333;
}
.block-review img {
  border-radius: 8px;
  border: 1px solid #d0e6d0;
}
.wp-block-table table {
  border-spacing: 0 10px;
}
.wp-block-table thead th {
  background: #1b4f1b;
  color: #fff;
  border-radius: 8px 8px 0 0;
}
.wp-block-table tbody tr {
  background: #ffffff;
  border: 1px solid #d4ead4;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(27, 79, 27, 0.08);
  transition: all 0.3s ease;
}
.wp-block-table tbody tr:hover {
  box-shadow: 0 4px 12px rgba(27, 79, 27, 0.15);
  transform: translateY(-3px);
}
.wp-block-table td {
  color: #2c2c2c;
}
.view-list {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.view-list li {
  position: relative;
  background: #ffffff;
  border: 1px solid #d8ebd8;
  border-radius: 12px;
  padding: 18px 20px 18px 50px;
  box-shadow: 0 2px 8px rgba(27, 79, 27, 0.08);
  transition: all 0.3s ease;
}
.view-list li:hover {
  box-shadow: 0 4px 14px rgba(27, 79, 27, 0.18);
  transform: translateY(-3px);
}
.view-list li::before {
  content: "✅";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #1b4f1b;
}
.view-list strong {
  color: #1b4f1b;
}
.num-list {
  counter-reset: item;
  list-style: none;
  margin: 0;
  margin-bottom: 25px;
  padding: 0;
  display: grid;
  gap: 14px;
  font-family: "Segoe UI", sans-serif;
}
.num-list li {
  position: relative;
  background: #f7faf7;
  border-left: 4px solid #1b4f1b;
  border-radius: 10px;
  padding: 14px 18px 14px 48px;
  transition: all 0.3s ease;
}
.num-list li:hover {
  background: #eef6ee;
  transform: translateX(4px);
}
.num-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #1b4f1b;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schema-faq {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.schema-faq-section {
  background: #f8fbfa;
  border: 1px solid #d5ebe8;
  border-radius: 12px;
  padding: 18px 22px;
  transition: all 0.3s ease;
  position: relative;
}
.schema-faq-section:hover {
  background: #eef7f5;
  border-color: #2d9d8f;
  transform: translateY(-2px);
}
.schema-faq-question {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #0b2b26;
  font-size: 2rem;
  margin-bottom: 10px;
}
.schema-faq-question::before {
  content: "💬";
  margin-right: 10px;
  font-size: 1.2rem;
  color: #2d9d8f;
}
.schema-faq-answer {
  color: #1e2e2b;
  margin: 0;
  padding-left: 28px;
  position: relative;
}
.schema-faq-answer::before {
  content: "💡";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  color: #0b2b26;
}
