.elementor-486 .elementor-element.elementor-element-3f185db{--display:flex;--min-height:551px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-486 .elementor-element.elementor-element-9a28d10{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-486 .elementor-element.elementor-element-9a28d10{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-ebbb8ba *//* =========================================
   GAVIN HARD SHOP FAQ
========================================= */

.ghs-faq-section {
  --ghs-primary: #173f35;
  --ghs-accent: #d6ff43;
  --ghs-heading: #17211e;
  --ghs-text: #5f6965;
  --ghs-border: #dfe5e2;
  --ghs-background: #f5f7f6;
  --ghs-white: #ffffff;

  width: 100%;
  padding: 90px 24px;
  background: var(--ghs-background);
  font-family: "Raleway", Arial, sans-serif;
}

.ghs-faq-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* HEADER */

.ghs-faq-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.ghs-faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 15px;
  border-radius: 100px;
  background: var(--ghs-accent);
  color: var(--ghs-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.5px;
}

.ghs-faq-header h2 {
  margin: 0 0 16px;
  color: var(--ghs-heading);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.ghs-faq-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--ghs-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* FAQ LIST */

.ghs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ghs-faq-item {
  overflow: hidden;
  border: 1px solid var(--ghs-border);
  border-radius: 18px;
  background: var(--ghs-white);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ghs-faq-item:hover {
  border-color: rgba(23, 63, 53, 0.35);
  box-shadow: 0 14px 40px rgba(23, 33, 30, 0.07);
  transform: translateY(-2px);
}

.ghs-faq-item[open] {
  border-color: var(--ghs-primary);
  box-shadow: 0 18px 50px rgba(23, 63, 53, 0.09);
}

/* SUMMARY */

.ghs-faq-item summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.ghs-faq-item summary::-webkit-details-marker {
  display: none;
}

.ghs-faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ghs-background);
  color: var(--ghs-primary);
  font-size: 13px;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.ghs-faq-item[open] .ghs-faq-number {
  background: var(--ghs-primary);
  color: var(--ghs-white);
}

.ghs-faq-question {
  color: var(--ghs-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

/* PLUS AND MINUS ICON */

.ghs-faq-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ghs-primary);
  flex-shrink: 0;
}

.ghs-faq-icon::before,
.ghs-faq-icon::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 20px;
  background: var(--ghs-white);
  transition: transform 0.3s ease;
}

.ghs-faq-icon::after {
  transform: rotate(90deg);
}

.ghs-faq-item[open] .ghs-faq-icon::after {
  transform: rotate(0deg);
}

/* ANSWER */

.ghs-faq-answer {
  padding: 0 86px 28px 96px;
}

.ghs-faq-answer p {
  margin: 0 0 12px;
  color: var(--ghs-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}

.ghs-faq-answer p:last-child {
  margin-bottom: 0;
}

.ghs-faq-answer ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.ghs-faq-answer li {
  margin-bottom: 9px;
  color: var(--ghs-text);
  font-size: 15px;
  line-height: 1.7;
}

.ghs-faq-answer strong {
  color: var(--ghs-heading);
  font-weight: 700;
}

/* KEYBOARD ACCESSIBILITY */

.ghs-faq-item summary:focus-visible {
  outline: 3px solid rgba(214, 255, 67, 0.9);
  outline-offset: -3px;
  border-radius: 17px;
}

/* TABLET */

@media screen and (max-width: 768px) {
  .ghs-faq-section {
    padding: 70px 20px;
  }

  .ghs-faq-header {
    margin-bottom: 36px;
  }

  .ghs-faq-header h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .ghs-faq-item summary {
    grid-template-columns: 46px minmax(0, 1fr) 40px;
    gap: 13px;
    min-height: 82px;
    padding: 17px 18px;
  }

  .ghs-faq-number {
    width: 46px;
    height: 46px;
  }

  .ghs-faq-question {
    font-size: 16px;
  }

  .ghs-faq-icon {
    width: 40px;
    height: 40px;
  }

  .ghs-faq-answer {
    padding: 0 72px 24px 77px;
  }
}

/* MOBILE */

@media screen and (max-width: 520px) {
  .ghs-faq-section {
    padding: 55px 14px;
  }

  .ghs-faq-header {
    margin-bottom: 30px;
    text-align: left;
  }

  .ghs-faq-header h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .ghs-faq-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .ghs-faq-item {
    border-radius: 14px;
  }

  .ghs-faq-item summary {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 12px;
    min-height: auto;
    padding: 20px 16px;
  }

  .ghs-faq-number {
    display: none;
  }

  .ghs-faq-question {
    font-size: 15px;
    line-height: 1.45;
  }

  .ghs-faq-icon {
    width: 36px;
    height: 36px;
  }

  .ghs-faq-icon::before,
  .ghs-faq-icon::after {
    width: 14px;
  }

  .ghs-faq-answer {
    padding: 0 16px 22px;
  }

  .ghs-faq-answer p,
  .ghs-faq-answer li {
    font-size: 14px;
    line-height: 1.75;
  }
}/* End custom CSS */