* {
    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;
    background-image: linear-gradient(to bottom, #3a0a55  12.5%, #f8f8f8 12.5%);
    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);
}

.cfs-section-separator {
    display: block;
    clear: both;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, var(--brand-yellow) 50%, var(--brand-purple) 50%);
    background-size: 200%;
    background-position: 100%;
    transition: background-position .2s ease-in-out;
}

.cfs-section-link span {
    padding: 10px;
}

.cfs-section-link {
    display: block;
}

.cfs-section-link:hover {
    background-position: 0%;
}

.cfs-section-link:hover .cfs-section-separator {
    background-position: 0%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-flex-end {
    align-items: end;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.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-\[70\%\] {
    max-width: 70%;
}

.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;
}

.text-\[\.5rem\] {
    font-size: 0.5rem;
}

.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);
}

.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;
}

.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%;
}

.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);
}

.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-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);
}

.justify-flex-end {
    justify-content: flex-end;
}

@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;
}

@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) {
    body {
        background-image: linear-gradient(to bottom, #3a0a55  10%, #f8f8f8 10%);
    }

    li::marker {
        content: "";
        display: none;
    }
}

::-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;
}

select {
    font-family: inherit;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating .star {
    color: var(--brand-yellow);
    font-size: 1.25rem;
}

.star-rating .star-empty {
    color: #d1d5db;
}

.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;
}

.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;
}

.list-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

@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);
    }
}

.cfs-nav-details {
    position: relative;
    display: flex;
    align-items: center;
}

.cfs-nav-details > summary {
    cursor: pointer;
    list-style: none;
}

.cfs-nav-details > summary::-webkit-details-marker {
    display: none;
}

.cfs-nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem;
    min-width: 320px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.cfs-nav-details[open] .cfs-nav-dropdown {
    display: block;
}

.cfs-nav-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cfs-nav-dropdown-wrap:hover .cfs-nav-dropdown {
    display: block;
}

.cfs-nav-dropdown a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-size: 0.75rem;
}

.cfs-nav-dropdown a:hover {
    color: var(--brand-yellow);
    background-color: rgba(255, 255, 255, 0.05);
}

.cfs-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
}

.cfs-mobile-menu[data-open="true"] {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 767px) {
    .cfs-mobile-carousel {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.25rem;
    }

    .cfs-mobile-carousel > * {
        flex: 0 0 80%;
        min-width: 80%;
        width: 80%;
        scroll-snap-align: start;
        margin-bottom: 0 !important;
        display: block;
    }
}

.cfs-mobile-submenu a {
    padding-left: 0.75rem;
}

.cfs-link-tiles-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem;
}

.cfs-link-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: 1.25rem;
    background-color: transparent;
    transition: background-color 200ms ease;
}

.cfs-link-tile img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: filter 200ms ease;
}

.cfs-link-tile-label {
    margin-top: 0.75rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: none;
    line-height: 1.2;
}

.cfs-link-tile:hover {
    background-color: var(--brand-purple);
}

.cfs-link-tile:hover img {
    filter: brightness(0) invert(1);
}

.cfs-link-tile:hover .cfs-link-tile-label {
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
    .cfs-link-tiles-inner {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem;
    }

    .cfs-link-tile {
        flex: 0 0 40%;
        min-width: 40%;
        scroll-snap-align: start;
    }
}
