.tt-accordion {
  margin-top: 20px;
}
.tt-acc-item {
  background: #faf4ee;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.tt-acc-item:last-child {
  margin-bottom: 0;
}
.tt-acc-trigger:hover,.tt-acc-trigger:focus{
    background:transparent !important;
}
 .tt-acc-title,.tt-acc-title:focus,.tt-acc-title:hover {
    color: black !important;
}
.tt-acc-trigger {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.tt-acc-trigger:focus-visible {
  outline: 2px solid #f5a623;
  outline-offset: -2px;
  border-radius: 14px;
}
.tt-acc-trigger:hover .tt-acc-title {
  opacity: 0.7;
}
.tt-acc-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s ease;
}
.tt-acc-icon::before,
.tt-acc-icon::after {
  content: "";
  position: absolute;
  background: #000;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tt-acc-icon::before {
  width: 15px;
  height: 2.5px;
}
.tt-acc-icon::after {
  width: 2.5px;
  height: 15px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.tt-acc-trigger[aria-expanded="true"] .tt-acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.tt-acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.tt-acc-panel-inner {
  margin: 0 14px 14px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 10px;
  font-size: 15px;
  color: #1a1a1a;
}
.tt-acc-panel-inner p {
  margin: 0 0 12px;
}
.tt-acc-panel-inner p:last-child {
  margin-bottom: 0;
}
.tt-acc-panel-inner ul {
  margin: 0;
  padding-left: 18px;
}
.tt-acc-panel-inner li {
  margin-bottom: 8px;
}
.tt-acc-panel-inner strong {
  font-weight: 700;
}
.coa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #faf4ee;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 6px;
  text-decoration: none !important;
  color: #000;
  font-weight: 700;
  font-size: 14px;
}
.coa-link:hover {
  border-color: #f5a623;
}
.coa-link .arrow {
  color: #f5a623;
  font-weight: 900;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--tt-border);
}
.spec-row .k {
  color: #555555;
  font-weight: 700;
}
.spec-row .v {
  text-align: right;
}
.tt-accordion{
    order:5 !important;
    margin-bottom: 30px !important;
}