/* ========== Base Styles ========== */

/* Extra Details Section */
.wc-extra-details {
    margin: 40px 0;
    /*padding: 25px;
    background: #fafafa;
    border: 1px solid #e0e0e0;*/
    border-radius: 6px;
}

.wc-extra-details-heading {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.wc-extra-details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.wc-extra-details-image {
    flex: 0 0 50%;
    max-width: 100%;
}

.wc-extra-details-image img {
    width: 100%;
    height: auto;
    /*border: 1px solid #ddd;*/
    border-radius: 15px;
    background: #fff;
    padding: 5px;
}

.wc-extra-details-text {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}


/* FAQ Item */

.page_content_wrap .content_wrap {

margin: 0 auto !important;
width: 95% !important;
}

/* FAQ Container */
.wc-product-faq {
  margin: 50px 0;
  padding: 25px;
  display:flex;
  background: #f5de3029;
  /*border: 1px solid #e0e0e0;*/
  border-radius: 6px;
}

/* FAQ Heading */
.wc-faq-heading {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
  flex:50%;
}

.faq-list{
  flex:50%;
}

.faq-item {
  border-bottom: 1px solid #eed700;
  margin-bottom: 10px;
}

/* Question Row */
.faq-q {
  cursor: pointer;
  padding: 12px 15px;
  font-weight: 600;
  color: #222;
  position: relative;
  transition: background 0.3s ease;
}

.faq-q:hover {
  background: #fff;
}

/* Arrow Icon */
.faq-q::after {
  content: '\25BC'; /* ▼ down arrow */
  position: absolute;
  right: 15px;
  transition: transform 0.3s ease;
}

.faq-q.open::after {
  transform: rotate(-180deg); /* flip arrow up */
}

/* Answer Panel */
.faq-a {
  display: none;
  padding: 0 15px 15px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ========== Responsive Styles ========== */

/* Tablets */
@media (max-width: 1024px) {
    .wc-extra-details,
    
     {
        padding: 20px;
    }

    .wc-extra-details-heading,
    .wc-faq-heading {
        font-size: 1.3em;
    }

    .faq-q {
        font-size: 16px;
    }

    .faq-a {
        font-size: 15px;
    }
}

/* Phones */
@media (max-width: 600px) {
    .wc-extra-details,
    .wc-product-faq {
        padding: 15px;
    }

    .wc-extra-details-content {
        flex-direction: column;
    }

    .wc-extra-details-image {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

    .wc-extra-details-heading,
    .wc-faq-heading {
        font-size: 1.2em;
    }

    .faq-q {
        font-size: 15px;
        margin: 8px 0;
    }

    .faq-a {
        font-size: 14px;
        margin-left: 5px;
    }
}

/* Reviews Section */
.wc-product-reviews {
  margin: 50px 0;
  padding: 25px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.wc-reviews-heading {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}
