* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-purple: #69268f;
  --brand-mauve: #946989;
  --brand-yellow: #f0cc00;
  --brand-gray: #ededed;
  --brand-black: #000000;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f8f8;
  color: #000000;
  min-height: 100vh;
  line-height: 1.6;
}

.header-logo,
.footer-logo {
  max-width: 150px;
}

.header-logo img,
.footer-logo img {
  width: 100%;
}

input[type="email"] {
  padding: 10px 20px;
}

#sort-dropdown {
  z-index: 11;
  padding: 10px;
  border: 1px solid var(--brand-purple);
}

/* Utility Classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.space-y-10 > * + * {
  margin-top: 2.5rem;
}
.space-y-12 > * + * {
  margin-top: 3rem;
}
.space-y-16 > * + * {
  margin-top: 4rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.w-full {
  width: 100%;
}
.w-auto {
  width: auto;
}
.h-full {
  height: 100%;
}
.h-0\.5 {
  height: 0.125rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-14 {
  padding-top: 3.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-20 {
  margin-top: 5rem;
}
.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.leading-none {
  line-height: 1;
}
.leading-snug {
  line-height: 1.375;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-white {
  color: #ffffff;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-brand-black {
  color: var(--brand-black);
}
.text-brand-purple {
  color: var(--brand-purple);
}
.text-brand-yellow {
  color: var(--brand-yellow);
}
.bg-white {
  background-color: #ffffff;
}
.bg-brand-purple {
  background-color: var(--brand-purple);
}
.bg-brand-yellow {
  background-color: var(--brand-yellow);
}
.bg-brand-gray {
  background-color: var(--brand-gray);
}
.bg-brand-black {
  background-color: var(--brand-black);
}
.border {
  border-style: solid;
  border-width: 1px;
}
.border-2 {
  border-style: solid;
  border-width: 2px;
}
.border-8 {
  border-style: solid;
  border-width: 8px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-brand-gray {
  border-color: var(--brand-gray);
}
.border-brand-yellow {
  border-color: var(--brand-yellow);
}
.border-brand-purple {
  border-color: var(--brand-purple);
}
.border-transparent {
  border-color: transparent;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-br-xl {
  border-bottom-right-radius: 0.75rem;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.overflow-hidden {
  overflow: hidden;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.top-28 {
  top: 7rem;
}
.bottom-0 {
  bottom: 0;
}
.bottom-6 {
  bottom: 1.5rem;
}
.right-6 {
  right: 1.5rem;
}
.right-8 {
  right: 2rem;
}
.top-8 {
  top: 2rem;
}
.left-0 {
  left: 0;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-10 {
  z-index: 10;
}
.z-60 {
  z-index: 60;
}
.z-70 {
  z-index: 70;
}
.z-100 {
  z-index: 100;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-4 {
  height: 1rem;
}
.h-8 {
  height: 2rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-24 {
  width: 6rem;
}
.w-220 {
  width: 220px;
}
.max-h-16 {
  max-height: 4rem;
}
.max-h-20 {
  max-height: 5rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-sm {
  max-width: 24rem;
}
.object-contain {
  object-fit: contain;
}
.cursor-pointer {
  cursor: pointer;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.rotate-180 {
  transform: rotate(180deg);
}
.duration-75 {
  transition-duration: 75ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 1, 1);
}
.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.hover\:text-brand-purple:hover {
  color: var(--brand-purple);
}
.hover\:text-brand-yellow:hover {
  color: var(--brand-yellow);
}
.hover\:text-white:hover {
  color: #ffffff;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}
.hover\:brightness-110:hover {
  filter: brightness(1.1);
}
.hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}
.hover\:translate-y-1:hover {
  transform: translateY(0.25rem);
}
.hover\:scale-95:hover {
  transform: scale(0.95);
}
.hover\:scale-105:hover {
  transform: scale(1.05);
}
.hover\:underline:hover {
  text-decoration: underline;
}
.active\:translate-y-4:active {
  transform: translateY(1rem);
}
.active\:scale-95:active {
  transform: scale(0.95);
}
.underline-offset-2 {
  text-underline-offset: 0.5rem;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-80 {
  opacity: 0.8;
}
.grayscale {
  filter: grayscale(100%);
}
.hover\:grayscale-0:hover {
  filter: grayscale(0%);
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.backdrop-blur-md {
  backdrop-filter: blur(12px);
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-1 {
  flex: 1 1 0%;
}

/* Custom styles */
.brand-bg-purple {
  background-color: var(--brand-purple);
}
.brand-bg-yellow {
  background-color: var(--brand-yellow);
}
.brand-border-purple {
  border-color: var(--brand-purple);
}
.toc-link.active {
  color: var(--brand-purple);
  transform: translateX(0.25rem);
}
.bg-brand-gray\/20 {
  background-color: rgba(237, 237, 237, 0.2);
}
.bg-brand-gray\/30 {
  background-color: rgba(237, 237, 237, 0.3);
}
.bg-brand-gray\/50 {
  background-color: rgba(237, 237, 237, 0.5);
}
.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-brand-black\/95 {
  background-color: rgba(0, 0, 0, 0.95);
}
.bg-brand-black\/10 {
  background-color: rgba(0, 0, 0, 0.1);
}
.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}
.text-white\/50 {
  color: rgba(255, 255, 255, 0.5);
}
.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}
.text-brand-purple\/60 {
  color: rgba(105, 38, 143, 0.6);
}
.bg-brand-yellow\/30 {
  background-color: rgba(240, 204, 0, 0.3);
}
.border-black\/20 {
  border-color: rgba(0, 0, 0, 0.2);
}
.shadow-\[0_4px_0_0_\#d1b100\] {
  box-shadow: 0 4px 0 0 #d1b100;
}
.hover\:shadow-\[0_3px_0_0_\#d1b100\]:hover {
  box-shadow: 0 3px 0 0 #d1b100;
}
.active\:shadow-none:active {
  box-shadow: none;
}

.offer-banner {
  padding: 15px 30px;
}

.primary-offer {
  border: 3px solid var(--brand-purple);
}

.secondary-offer {
  border: 2px solid var(--brand-gray);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInFromTop {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-in {
  animation: fadeIn 0.3s ease-out;
}
.fade-in {
  animation: fadeIn 0.3s ease-out;
}
.slide-in-from-top {
  animation: slideInFromTop 0.3s ease-out;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:w-\[160px\] {
    width: 160px;
  }
  .lg\:w-\[220px\] {
    width: 220px;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:grid-cols-\[1fr_300px\] {
    grid-template-columns: 1fr 300px;
  }
  .lg\:items-center {
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .xl\:gap-4 {
    gap: 1rem;
  }
  .xl\:text-\[12px\] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media screen and (max-width: 768px) {
  li::marker {
    content: "";
    display: none;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-purple);
  border-radius: 4px;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

input {
  font-family: inherit;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

input[type="checkbox"]:checked {
  background-color: var(--brand-purple);
  border-color: var(--brand-purple);
}

input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1;
}

input[type="checkbox"]:focus {
  outline: 2px solid var(--brand-purple);
  outline-offset: 2px;
}

#email-signup-form input[type="text"] {
  text-align: center;
}

/* Form inputs: placeholder and focus to match v2 */
.placeholder-gray-400::placeholder {
  color: #9ca3af;
}

.focus\:border-brand-purple:focus {
  border-color: var(--brand-purple);
}

.focus\:outline-none:focus {
  outline: none;
}

input[type="checkbox"].focus\:ring-2:focus,
input[type="checkbox"].focus\:ring-brand-purple:focus {
  outline: 2px solid var(--brand-purple);
  outline-offset: 2px;
}

select {
  font-family: inherit;
}

/* Review page specific styles – all stars same size */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 1.25rem;
  line-height: 1;
}
.star-rating .star,
.star-rating .star-empty,
.star-rating .star-half {
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}
.star-rating .star {
  color: var(--brand-yellow);
}
.star-rating .star-empty {
  color: #d1d5db;
}
.star-rating .star-half {
  background: linear-gradient(to right, var(--brand-yellow) 50%, #d1d5db 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-button {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 0 0 #d1b100;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.cta-button:hover {
  transform: translateY(1px);
  box-shadow: 0 3px 0 0 #d1b100;
}
.cta-button:active {
  transform: translateY(4px);
  box-shadow: none;
}

.editorial-content {
  max-width: 800px;
  margin: 0 auto;
}
.editorial-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #374151;
}
.editorial-content h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--brand-black);
}
.editorial-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-purple);
}
.editorial-content ul, .editorial-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.editorial-content li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #374151;
}

/* Offer card small-print lists: tighter indent, better spacing */
.offer-small-print ul,
.offer-small-print ol {
  margin: 0.5rem 0 0 0;
  padding-left: 1.25rem;
  list-style-position: outside;
}
.offer-small-print li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.offer-small-print ul ul,
.offer-small-print ol ul,
.offer-small-print ul ol,
.offer-small-print ol ol {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

/* Filter dropdown: list with headers, no bullets, clear hierarchy */
#filter-dropdown {
  padding: 0;
  overflow: visible;
  min-width: 12rem;
  z-index: 50;
}
#filter-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#filter-dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#filter-dropdown .filter-dropdown-section {
  border-bottom: 1px solid var(--brand-gray);
  padding: 0.5rem 0;
}
#filter-dropdown .filter-dropdown-section:first-child {
  padding-top: 0.5rem;
}
#filter-dropdown .filter-dropdown-section:last-child {
  border-bottom: none;
  padding-bottom: 0.5rem;
}
#filter-dropdown .filter-dropdown-header {
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  padding: 0.5rem 1rem 0.375rem;
  margin: 0;
  line-height: 1.2;
}
#filter-dropdown .filter-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-black);
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
#filter-dropdown .filter-option:hover {
  background-color: var(--brand-purple);
  color: white;
}
#filter-dropdown .filter-option.bg-brand-purple {
  background-color: var(--brand-purple);
  color: white;
}

.compact-offer-card {
  background: white;
  border: 2px solid var(--brand-gray);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-item {
  background: rgba(237, 237, 237, 0.3);
  padding: 1rem;
  border-radius: 0.75rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(105, 38, 143, 0.6);
  margin-bottom: 0.25rem;
}
.stat-value {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--brand-black);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--brand-purple);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--brand-purple);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* Email signup form message (sidebar) */
.email-signup-message {
  border: 2px solid;
}
.email-signup-message--success {
  background-color: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border-color: #4ade80;
}
.email-signup-message--error {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fecaca;
  border-color: #f87171;
}
.email-signup-message--warning {
  background-color: rgba(240, 204, 0, 0.2);
  color: #fef08a;
  border-color: var(--brand-yellow);
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Content block sections – center and scale images; prevent missing/broken from stretching */
.section-content {
  min-height: 0;
}
.section-content img {
  display: block;
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.section-content img[src=""],
.section-content img:not([src]) {
  display: none;
}

/* Footer – match main captainfreespins template */
.navbar-footer {
  background-color: #000;
  color: #fff;
  margin-bottom: -30px;
  padding-bottom: 40px;
  padding-top: 20px;
}
.navbar-footer .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.navbar-footer .collapse.navbar {
  text-align: center;
}
.navbar-footer .navbar-nav {
  list-style: none;
  display: table;
  margin: 0 auto;
  padding: 30px;
}
.navbar-footer .nav-item {
  margin: 0 10px;
  float: left;
  padding: 5px;
}
.navbar-footer .nav-link {
  color: #fff;
  text-decoration: none;
}
.navbar-footer .nav-link:hover {
  text-decoration: underline;
}
.navbar-footer .container-disclaimer {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.footer-logos > div {
  margin: 12px;
}
.footer-icon-link img {
  max-height: 100px;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
}
.navbar-footer .container.text-center p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer-logos {
    display: block;
    text-align: center;
  }
  .footer-logos > div {
    margin: 24px auto;
  }
  .navbar-footer .container-disclaimer {
    padding: 0 10px;
  }
  .navbar-footer .navbar-nav {
    display: block;
    padding: 0 20px 20px;
  }
  .navbar-footer .nav-item {
    padding: 5px 0;
  }
}
