@charset "utf-8";
/* CSS Document */

/* Dropbox container */
.dropbox {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  font-family: "Century Gothic", sans-serif;
}

/* Toggle button */
.dropbox-toggle {
  width: 100%;
  padding: 1rem;
  background: #f5f5f5;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-family: "Century Gothic", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Animated dropdown arrow */
.dropbox-toggle .arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.dropbox-toggle.active .arrow {
  transform: rotate(180deg);
}

/* Inner content */
.dropbox-content {
  display: flex;           /* <-- make it a flex container */
  flex-direction: column;  /* stack content vertically */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
  padding: 0 1rem; /* horizontal padding always, top/bottom will animate */
  background: #fff;
  color: #333;
  text-align: left;
  font-family: "Century Gothic", sans-serif;
}


/* Open state */
.dropbox.open .dropbox-content {
  max-height: 1000px; /* large enough for content */
  opacity: 1;
  padding: 1rem; /* restore top/bottom padding */
}

/* Paragraphs inside content */
.dropbox-content p {
  color: #333;
  font-family: "Century Gothic", sans-serif;
  text-align: left;
  margin-bottom: 1rem;
}

/* Close button at bottom-right */
.close-btn {
  align-self: flex-end; /* push to right */
  margin-top: auto;     /* push to bottom */
  display: inline-block;
  padding: 6px 14px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s;
  font-family: "Century Gothic", sans-serif;
}

.close-btn:hover {
  background: #555;
  transform: translateY(-2px);
}

/* Special styling for "Items We Don't Buy" */
.dropbox-warning .dropbox-toggle {
  background: #dfbf9f;
  border-color: #b5d4ff;
}

.dropbox-warning .dropbox-toggle.active {
  background: #c9e2ff;
}

.dropbox-warning .dropbox-content {
  background: #f4f9ff;
  border-top: 1px solid #b5d4ff;
}

/* Special styling for FAQ */
.dropbox-faq .dropbox-toggle {
  background: #ff9900;
  border-color: #b5d4ff;
  transition: background 0.3s ease;
  color: #333;
}

.dropbox-faq .dropbox-toggle:hover {
  background: #ffbf66;
}

.dropbox-faq .dropbox-toggle.active {
  background: #ffe0b3;
}

.dropbox-faq .dropbox-content {
  background: #f4f9ff;
  border-top: 1px solid #b5d4ff;
  color: #333;
}

/* Notice box */
.notice-box {
  background: #f5f0e6;
  border-left: 4px solid #ff0000;
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 1rem;
  border-radius: 4px;
  font-family: "Century Gothic", sans-serif;
}

/* Hover effect for all dropboxes */
.dropbox-toggle:hover {
  background: #4da0ff;   /* soft orange background on hover */
  color: #fff;           /* keep text readable */
}

.dropbox-toggle:hover .arrow {
  color: #fff;
}

/* Gold list styling */
.gold-list {
  margin-left: 0;
  padding-left: 1rem;
  line-height: 1.6;
}

.gold-list > li {
  margin-top: 0.7rem;
  font-weight: bold;
}

.gold-list ul {
  margin: 0.3rem 0 0.6rem 1.2rem;
  padding: 0;
}

.gold-list ul li {
  font-weight: normal;
  list-style-type: disc;
}

/* Hidden headings for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
