/* Accordion Wrapper */
.accordion-wrap {
  margin-top: 24px;
  
}
div#product-accordions {
    border-bottom: solid 1px #e0e0d9;
}


button.accordion-toggle[aria-expanded="true"] {
}

button.accordion-toggle[aria-expanded="false"] {
  padding-bottom: 16px;
}


/* Each item */
.accordion-item {
 border-top: solid 1px #e0e0d9;
 border-bottom: unset;
}
.accordion-item p {
    padding: 0 20px 20px;
	margin-bottom: unset;
}
.accordion-content p {
    font-style: normal;
    font-weight: 400;
    color: #000;
    font-size: 13px;
    line-height: 18px;
	font-family: Poppins;
	letter-spacing: 0.03em;
	
	padding-top: 0px;
    padding-bottom: 25px;
	
}
.accordion-item li {
    margin: 0 0 15px;
	list-style: none;
	margin-left: -10px;
	
	color: #000000;
    line-height: 1.4em;
    font-size: 13px;
    letter-spacing: 0.0128em;
	
	
}
/* Toggle button */
.accordion-toggle {
background: none;

    width: 100%;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: Poppins;
    text-align: left;
    text-transform: uppercase;
	font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: #000;
	letter-spacing: 0.32em;
	padding-left: 0;
    padding-top: 12px;
    padding-bottom: 5px;
}

.accordion-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
	background: url(/wp-content/themes/botiga-1749475845-via-wpturbo/css/bottom.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    margin-right: 17px;
	margin-top: 3px;
}

.accordion-toggle[aria-expanded="true"]::after {
  content: "";
	background: url(/wp-content/themes/botiga-1749475845-via-wpturbo/css/top.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    margin-right: 17px;
	margin-top: 3px;
}


/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.accordion-content.open {
  padding: 12px 0;
  max-height: 100%; /* adjust as needed */
  padding-bottom: 0px;
}
