/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* =====================================================
   GF ACCORDION — Reviews & Description
   Collapsible accordion matching WooCommerce tab style
   ===================================================== */

/* Trigger (clickable header bar) */
.gf-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 0;
  border-top: 1px solid rgba(180,240,96,0.25);
  border-bottom: 1px solid rgba(180,240,96,0.1);
  user-select: none;
  margin-bottom: 0;
  transition: border-color 0.2s;
}
.gf-accordion-trigger:hover {
  border-color: rgba(180,240,96,0.55);
}

/* Title inside trigger */
.gf-accordion-trigger h2 {
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f0ebe0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

/* Chevron arrow SVG */
.gf-accordion-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  fill: none;
  stroke: #b4f060;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gf-accordion-trigger.is-open .gf-accordion-arrow {
  transform: rotate(180deg);
}

/* Collapsible body — hidden by default */
.gf-accordion-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease 0.05s;
}
.gf-accordion-body.is-open {
  max-height: 9999px;
  opacity: 1;
}

/* Hide original standalone h2 inside gf-reviews-section
   (we replace it with our trigger wrapper) */
.gf-reviews-section > h2.gf-reviews-title,
.gf-reviews-section > .gf-reviews-title {
  display: none !important;
}

/* Spacing */
.gf-reviews-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
