
/* category paragraph styling */

#category-paragraph {
  background: #f4f1ee;
  border-radius: 15px;
  padding: 15px;
}


.read-more-link {
  color: #fff;
  cursor: pointer;
  background: #6db4b3;
  border-radius: 15px;
  padding: 2px 5px;
  display: inline-block;
  text-decoration: none;
  font-size: 90%;
}


#category-paragraph a:hover {color:#fff; text-decoration:none;}



/* category page interest toggle */


 .toggle-header {
		display: flex;
		align-items: center;
		cursor: pointer;
		user-select: none;
		font-weight: 600;
		font-size: 1.1em;
		margin-bottom: 12px;
		width: 100%;
		padding: 5px;
}


  .toggle-header .arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    border: solid #ff8b8b;
    border-width: 0px 3px 3px 0;
    padding: 4px;
    transform: rotate(45deg); /* Down arrow */
  }

  .toggle-header.expanded .arrow {
    transform: rotate(-135deg); /* Up arrow */
  }

  .filter-container {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .filter-container.expanded {
    max-height: 1000px; /* Large enough to show all */
  }

  .filter-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    max-width: 100%;
  }


  .attribute-option {
    position: relative;
  }

  .attribute-option input[type="checkbox"] {
    display: none;
  }

  .attribute-option label {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    user-select: none;
  }

  .attribute-option label:hover {
    background-color: #e0e0e0;
  }

  .attribute-option input:checked + label {
    background-color: #ffbc6e;
    color: #fff;
    border-color: #c77f2b;
  }

  .filter-actions {
    margin-left: auto;
  }

  .filter-actions button {
    background-color: #ff8b8b;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .filter-actions button:hover {
    background-color: #72b6b5;
  }

  @media (max-width: 600px) {
    .filter-inner {
      align-items: flex-start;
    }

    .filter-actions {
      margin-left: 0;
      margin-top: 10px;
			width:100%;
    }
  }

/* Why Us Block */


.why-us {padding: 20px;font-size: 110%; border-top:1px solid #ccc}

.why-us h1 {font-family: Jojoba;margin-bottom: 20px;}

	.why-us div.why-us-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}


	.why-us div.why-us-grid div {
  background: #f4f1ee;
  border-radius: 20px;
  padding: 20px;
  width: 24%;
  box-sizing: border-box;
}

	.why-us div.why-us-grid div h2 {font-size: 23px;font-family:jojoba;color: #78bab9;margin-bottom: 10px;}

.child-left {float:left;}
.child-right {float:right;}