/* Fonts */
@font-face {
    font-family: "deezer_productregular";
    src: url("src/deezerproduct-regular-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "deezer_productmedium";
    src: url("src/deezerproduct-medium-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "deezer_productbold";
    src: url("src/deezerproduct-bold-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "deezer_productextrabold";
    src: url("src/deezerproduct-extrabold-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "erica_oneregular";
    src: url("src/ericaone-regular-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

/* :root {
    --sticker-color--bookmark: hsl(46, 63.9%, 48.8%);
    --sticker-color--save: hsl(11, 44.9%, 38%);
    --sticker-color--upload: hsl(206, 40.8%, 40.5%);
    --sticker-color--comment: hsl(11, 44.9%, 38%);
    --sticker-color--news: hsl(46, 95.9%, 51.5%);
    --sticker-color--like: hsl(206, 40.8%, 40.5%);
    --sticker-color--edit: hsl(282, 29.9%, 30.8%);
    --sticker-color--upgrade: hsl(118, 37.9%, 25.4%);
    --icon-fill--settings: hsl(268, 35.1%, 25.9%);
    --icon-fill--search: hsl(202, 66.7%, 19.2%);
    --icon-fill--notification: hsl(38, 60%, 22.5%);
    --common-color--white: hsl(30, 0%, 91%);
    --common-color--black: hsl(203, 0.5%, 15.9%);
    --common-color--violette: hsl(267, 32.3%, 82.3%);
    --common-color--yellow: hsl(39, 96.3%, 73.3%);
    --common-color--bluette: hsl(202, 77.4%, 77.9%);
    --bg-color--body: var(--common-color--violette);
    --bg-modules: var(--common-color--white);
    
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "deezer_productregular", sans-serif;
    background-color: var(--bg-color--body);
    background-image: linear-gradient(hsla(267, 32.3%, 75%, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, hsla(267, 32.3%, 75%, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--common-color--black);
    min-height: 100vh;
    overflow-x: clip;
}

@media (min-width:1024px) {
    body {
        /* display: flex */
        /* flex-direction: column */
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    color: var(--common-color--black);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.vertical-divider {
    height: 100%;
    border-left: 1px solid var(--common-color--black);
}

.nav-right {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    height: 50px;
}

.menu-btn {
    font-family: "deezer_productextrabold", sans-serif;
    font-size: 1.25rem;
    cursor: pointer;
    text-transform: uppercase;

    /* letter-spacing: 1px */
    /* color: var(--common-color--white) */
}

.user-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: var(--common-color--white);
    border: 2px solid var(--common-color--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Layout */
main {
    margin: auto;
    max-width: 1600px;

    /* ; */
    /* padding: 20px 24px 40px */
}

@media (min-width: 1024px) {
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.content-wrapper {
    /* display: grid */
    gap: 40px;

    /* padding: 10px 50px 20px */
}

@media (max-width: 1024px) {
    .content-wrapper {
        overflow-x: clip;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        display: grid;
        overflow-x: visible;
        grid-template-columns: 1fr 1.2fr;
        align-items: center;

        /* max-height: 100vh */
        gap: 60px;
    }
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: auto;

    /* flex-direction: column */
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr 50px;
        grid-template-rows: 100px auto auto;
        column-gap: 20px;
        grid-auto-flow: row;
        margin-left: 2rem;
    }
}

.hero-ticket {
    position: relative;
    display: grid;
    grid-column: 1/2;

    /* width: 100% */
    /* z-index: 2 */
    /* padding: 0 50px */
    /* max-width: 500px */
    margin-bottom: 3rem;
    grid-auto-flow: row dense;
}

@media (min-width: 1024px) {
    .hero-ticket {
        grid-template-columns: max(100%, 500px) auto;
        grid-column: 1/2;
        grid-row: 1/3;
        margin-bottom: 0px;
    }
}

.ticket-bg {
    width: 100%;

    /* max-width: min(80vw, 650px);

     height: max-content */
    /* min-height: 10vw */
    display: flex;
    grid-row: 2/3;
    grid-column: 1/2;
    justify-self: center;

    /* padding-left: 30px */
    /* padding-right: 30px */
}

.hero-content {
    /* position: absolute */
    /* top: 0 */
    /* left: 0 */
    /* right: 0 */
    /* bottom: 0 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-row: 2/3;
    grid-column: 1/2;
}

/* Worm Characters on Ticket */
.worm-top-container {
    height: 80px;
    grid-row: 1 / 2;
    transform: translate(0%, 50%) scale(1.5);
}

@media (min-width: 800px) {
    .worm-top-container {
        transform: translate(0%, 80%) scale(1.75);

        /* grid-row: 1/2;
        grid-column: 1/2; */
    }
}

.worm-top-container img {
    width: 100%;
    height: 100%;
}

.worm-side-left,
.worm-side-right {
    z-index: translate(0%, 10%) scale(1.85);
}

.worm-side-left {
    transform: translate(-10%, -50%) scale(3);
    grid-row: 3/4;
    z-index: 0;
}

@media (min-width: 1024px) {
    .worm-side-left {
        transform: translate(-10%, -150%) scale(5);
    }
}

.worm-side-right {
    grid-row: 3/4;
    width: 50px;
    position: relative;
    z-index: 10;
    transform-origin: 100% 50%;
    transform: translate(0%, 10%) scale(1.85);
    justify-self: end;
}

@media (min-width: 1024px) {
    .worm-side-right {
        transform: translate(100%, -90%) scale(2.5);
    }
}

@media (min-width: 1600px) {
    .worm-side-right {
        transform: translate(100%, -100%) scale(3);
    }
}

h1 {
    font-family: "erica_oneregular", sans-serif;

    /* Da 52 a 80 */
    font-size: clamp(3.25rem, 2.6944rem + 2.2222vw, 5rem);
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* @media (min-width: 640px) and (max-width:1024px) {
    h1 {
        font-size: clamp(3.25rem, 2.6944rem + 2.2222vw, 5rem);
    }
} */
.title-creative {
    color: var(--common-color--yellow);
    text-shadow: 3px 3px 0 var(--common-color--black), -2px -2px 0 var(--common-color--black), 2px -2px 0 var(--common-color--black), -2px 2px 0 var(--common-color--black), 2px 2px 0 var(--common-color--black), 5px 5px 0 rgba(0, 0, 0, 0.2);
    display: grid;
    transform: rotate(-2deg);
    position: relative;
    isolation: isolate;
}

.title-sticker {
    transform: rotate(1deg);
    text-shadow: 3px 3px 0 var(--common-color--black), -2px -2px 0 var(--common-color--black), 2px -2px 0 var(--common-color--black), -2px 2px 0 var(--common-color--black), 2px 2px 0 var(--common-color--black), 5px 5px 0 rgba(0, 0, 0, 0.2);
}

/* .hero .subtitle {
    ||*| text-shadow: 1.25px 1.25px 0 var(--common-color--white),
		-1.25px -1.25px 0 var(--common-color--white),
		1.25px -1.25px 0 var(--common-color--white),
		-1.25px 1.25px 0 var(--common-color--white),
		1.25px 1.25px 0 var(--common-color--white),
		0px 3px 0 rgba(0, 0, 0, 0.2) |*||
} */
.title-sticker,
.hero .subtitle {
    color: var(--common-color--bluette);
    display: grid;
    margin-top: -5px;
    position: relative;
    isolation: isolate;
}

.title-sticker:after {
    content: "Sticker Sheet";
}

.title-creative:after {
    content: "Creative";
}

.title-sticker:after,
.title-creative:after {
    position: absolute;
    color: var(--common-color--black);
    grid-row: 1/2;
    grid-column: 1/2;
    transform: scale(0.95) translateY(6px);
    justify-self: center;
    z-index: -1;
}

.subtitle {
    font-family: "deezer_productbold", sans-serif;
    font-size: 1.75em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.05;
    text-wrap: balance;
    color: var(--common-color--white);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
    display: grid;
    position: relative;
    grid-auto-flow: row;
    --asterisk-size: 30px;
}

.asterisk-left-container,
.asterisk-right-container {
    grid-row: 1/2;
    grid-column: 1/2;
}

.asterisk-left,
.asterisk-right {
    position: absolute;
    width: var(--asterisk-size);
    height: var(--asterisk-size);
}

.asterisk-left {
    top: calc(var(--asterisk-size) / 2);
    left: calc(0px - var(--asterisk-size));
    transform: rotate(-20deg) scale(1.25);
}

.asterisk-right {
    top: var(--asterisk-size);
    right: 0;
    transform: scale(1.5);
}

/* Tagline Pill */
.tagline-pill {
    background: var(--common-color--white);
    border: 3px solid var(--common-color--violette);
    border-radius: 1000px;
    padding: 15px 30px;
    font-family: "deezer_productmedium", sans-serif;
    font-size: 1.3rem;
    text-wrap: balance;
    justify-self: center;

    /* margin-top: 2rem */
    max-width: 90%;
    position: relative;
}

@media (min-width: 1024px) {
    .tagline-pill {
        grid-row-start: -1;
        grid-column: 1/2;
        width: max-content;
        justify-self: center;
    }
}

.tagline-pill:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: black;
    border-radius: 1000px;
    transform: translateY(10px) scale(0.98);
    opacity: 0.25;
    box-shadow: 0px 0px 20px 10px var(--common-color--white);
    filter: blur(5px);

    /*  */
    z-index: -1;
}

/* Zigzag Divider */
.divider-zigzag {
    display: flex;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: center;

    /* margin: 30px auto */
}

.divider-zigzag svg {
    /* height: 80vw */
    display: inline-block;

    /* position: absolute */
    height: 200px;
    transform-origin: 50% 50%;
    transform: scale(1);

    &:last-of-type {
        /* transform: scale(1) translateY(100%) */
        transform-origin: 50% 50%;

        /*  */
        /*  */
    }
}

@media (min-width: 1024px) {
    .divider-zigzag {
        /* display: flex;
        height: 50px;
        width: 100%;
        margin: 30px auto;transform: translateX(200%); */
        grid-column: 2/3;
        grid-row: 1/3;
        width: 20px;
        height: 100%;
        z-index: -1;
    }

    .divider-zigzag svg {
        /* height: 80vw */
        display: inline-block;
        width: 100%;

        & path {
            /* transform-origin: 50% 50%;
            transform: rotate(0deg) scale(1); */
        }
    }
}

.divider-zigzag-svg-container {
    position: relative;
    width: 50px;
    height: 350px;
    transform: rotate(90deg) scale(1);
    overflow: clip;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

@media (min-width: 1024px) {
    .divider-zigzag-svg-container {
        transform: rotate(0deg) scale(1);
        height: 280px;
    }
}

.divider-zigzag-svg-container__inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

/* Sticker Section */
.sticker-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;

    /* justify-self: center */
}

@media (min-width: 1024px) {
    .sticker-section {
        align-self: end;
    }
}

/* Sticker Grid */
.sticker-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, max-content));
    gap: 24px; */
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    gap: 1.8rem;
    width: 100%;
    margin-top: auto;
}

@media (min-width: 768px) {
    .sticker-grid {
        padding-right: 2rem;
        max-width: 800px;
    }
}

/* @media (min-width: 1024px) {
    .sticker-grid {
        margin: 0;
        max-width: none;
    }
} */
/* Sticker Card Layout with Grid */
.sticker {
    display: grid;
    justify-content: center;
    grid-template-rows: 18% 27% 37% 9% 9%;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    max-width: 130px;
}

.sticker:hover {
    transform: translateY(-5px);
}

/* Sticker Layers */
.sticker-layer-bg {
    grid-row: 1 / -1;
    grid-column: 1;
    z-index: 1;
    max-width: 130px;
    display: grid;
    grid-template-rows: 76% 24%;

    div {
        grid-column: 1/2;
    }

    .sticker-layer-bg--back-container {
        grid-row: 1/3;
    }

    .sticker-layer-bg--tab-container {
        grid-row: 1/2;
        align-self: end;
    }
}

@media (min-width:800px) {
    .sticker-layer-bg {
        grid-template-rows: 79% 25%;
    }
}

.sticker-layer-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    /* border-radius: 50% 50% 10px 10px; */
}

.sticker-layer-shadow {
    /* grid-row: 1 / -1 */
    grid-column: 1;
    z-index: 2;
    display: none;
}

.sticker-layer-shadow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sticker-layer-tab {
    grid-row: 1 / -1;
    grid-column: 1;
    z-index: 3;
}

.sticker-layer-tab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 10px 10px;
}

.sticker-layer-icon {
    grid-row: 1 / 3;
    grid-column: 1;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.sticker-layer-icon .sticker-layer-icon--shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-35%, 30%) scale(1.5);

    /* width: fit-content */
}

.sticker-layer-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.sticker-bookmark .sticker-layer-icon img {
    transform-origin: 50% 100%;
    transform: rotate(8deg);
}

.sticker-label {
    text-shadow: 2px 2px 0 var(--common-color--white),
        -2px -2px 0 var(--common-color--white),
        2px -2px 0 var(--common-color--white),
        -2px 2px 0 var(--common-color--white),
        2px 2px 0 var(--common-color--white);
    grid-row: 4/6;
    grid-column: 1;
    z-index: 5;
    font-family: "deezer_productextrabold", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-self: center;
    align-self: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sticker-label {
    }
}

@media (min-width: 768px) {
    .sticker-label {
        /* font-size: 12px */
        /* padding: 5px 10px */
    }
}

/* Individual Sticker Colors for Labels */
.sticker-bookmark .sticker-label {
    color: var(--sticker-color--bookmark);
}

.sticker-save .sticker-label {
    color: var(--sticker-color--save);
}

.sticker-upload .sticker-label {
    color: var(--sticker-color--upload);
}

.sticker-comment .sticker-label {
    color: var(--sticker-color--comment);
}

.sticker-news .sticker-label {
    color: var(--sticker-color--news);
}

.sticker-like .sticker-label {
    color: var(--sticker-color--like);
}

.sticker-edit .sticker-label {
    color: var(--sticker-color--edit);
}

.sticker-upgrade .sticker-label {
    color: var(--sticker-color--upgrade);
}

/* Controls Section */
.controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .controls {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .controls {
        margin: 0;
        justify-content: flex-start;
    }
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 3px solid var(--common-color--white);
    border-radius: 30px;
    padding: 10px 16px;
    font-family: "deezer_productmedium", sans-serif;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0px 3px 0 var(--common-color--black);
    transition: all 0.2s;
    position: relative;
}

.control-btn:hover {
    transform: translateY(-2px);

    /* box-shadow: 4px 4px 0 var(--common-color--white); */
}

.control-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.worm-absolute-container {
    position: absolute;
    right: 20px;
}

.worm-in-btn {
    width: 30px;
    height: 20px;
    margin-left: 5px;
}

.search-box {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 3px solid var(--common-color--white);
    border-radius: 30px;
    font-family: "deezer_productregular", sans-serif;
    font-size: 13px;
    background: var(--common-color--white);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle {
    width: 44px;
    height: 24px;
    background: #ccc;
    border: 2px solid var(--common-color--white);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle.active {
    background: #90c695;
}

.toggle::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid var(--common-color--white);
    border-radius: 50%;
    top: 1px;
    left: 1px;
    transition: transform 0.3s;
}

.toggle.active::after {
    transform: translateX(20px);
}

/* Footer */
footer {
    text-align: center;
    margin-top: auto;
    padding: 40px 20px;

    /* font-size: 'deezer_productmedium', sans-serif */
    color: var(--common-color--black);
    font-family: "deezer_productmedium", sans-serif;
}

.footer-line {
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: var(--common-color--black);
    margin: 0 auto 20px;
    opacity: 0.3;
}

.title-sticker__last {
    text-wrap: nowrap;
}

@media (min-width: 1000px) {
    .title-sticker__last {
        /* text-wrap: wrap */
    }
}

.worm-side {
    position: absolute;
}

.worm-side-left img {
    width: 80px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, white 00%, black 100%);
}

.subtitle span {
    text-wrap: nowrap;
    text-shadow: 3px 3px 0 var(--common-color--black),
        -2px -2px 0 var(--common-color--black),
        2px -2px 0 var(--common-color--black),
        -2px 2px 0 var(--common-color--black),
        2px 2px 0 var(--common-color--black),
        5px 5px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    isolation: isolate;
}

.subtitle span:after {
    z-index: -1;
    position: absolute;
    text-wrap: nowrap;
    inset: 0;
    color: var(--common-color--black);
    transform: translateY(2px) scale(0.98);
}

.subtitle span:first-of-type:after {
    content: 'Grab a sticker to add flair to';
}

.subtitle span:last-of-type:after {
    content: 'your digital journal';
}

.ticket-bg svg {
    /* height: 100% */
    /* max-width: 100% */
    display: flex;
}

.divider-animated {
    overflow: hidden;
}

.divider-animated svg {
    animation: flow-horizontal 8s linear infinite;

    /* display: flex */
    /*  */
    width: max-content;

    /* height: 100% */
}

@keyframes flow-horizontal {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@media (min-width: 1024px) {
    .divider-animated svg {
        animation: flow-vertical 8s linear infinite;
        width: 100%;
        height: 200%;
    }

    @keyframes flow-vertical {
        0% {
            transform: translateY(-100%);
        }

        100% {
            transform: translateY(0%);
        }
    }
}

.expander-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;

    /* margin-top: auto */
}

.expander-btn {
    position: relative;
    height: 44px;
    background: #E8E0F0;
    border-radius: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Collapsed state - circle */
.expander-btn[data-expanded="false"] {
    width: 44px;
    min-width: 44px;
    padding: 0;
}

/* Expanded state */
.expander-btn[data-expanded="true"] {
    width: auto;
    min-width: 220px;
    padding: 0 16px;
}

.expander-btn--search[data-expanded="true"] {
    min-width: 200px;
    padding-right: 12px;
}

.expander-btn__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expander-btn__icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.expander-btn__content {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.25s ease 0.1s, max-width 0.35s ease;
    white-space: nowrap;
}

.expander-btn[data-expanded="true"] .expander-btn__content {
    opacity: 1;
    max-width: 300px;
}

.expander-btn__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 1.rem;
    line-height: 1;
}

.expander-btn__title {
    font-size: 1em;
    font-family: "deezer_productbold", sans-serif;
    color: #2a2b2b;

    /* line-height: 1.2 */
}

.expander-btn__subtitle {
    font-size: 0.8em;
    color: #666;

    /* line-height: 1.2 */
}

/* Worm positioning - BIGGER AND VISIBLE */
.worm-absolute-container {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 40px;
    pointer-events: none;
    z-index: 10;
}

.worm-in-btn {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Search input */
.expander-search-input {
    width: 140px;
    height: 28px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    padding: 0 12px;
    font-size: 12px;
    color: #2a2b2b;
    outline: none;
    font-family: inherit;
}

.expander-search-input::placeholder {
    color: #888;
}

/* Toggle */
.expander-toggle {
    width: 36px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.expander-toggle__track {
    width: 100%;
    height: 100%;
    background: #ccc;
    border-radius: 10px;
    position: relative;
    transition: background 0.25s ease;
}

.expander-toggle[data-active="true"] .expander-toggle__track {
    background: #9B8D63;
}

.expander-toggle__thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.expander-toggle[data-active="true"] .expander-toggle__thumb {
    transform: translateX(16px);
}

/* Hover effects */
.expander-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.expander-btn[data-expanded="false"]:hover {
    transform: scale(1.05);
}

/* Active/pressed state */
.expander-btn:active {
    transform: scale(0.98);
}

/* KEEP EXPANDED ON LARGE SCREENS (min-width: 1024px) */
@media (min-width: 1024px) {
    .expander-btn {
        width: auto;
        min-width: 220px;
        padding: 0 16px;
        overflow: visible;
    }

    .expander-btn--search {
        min-width: 200px;
        padding-right: 12px;
    }

    .expander-btn__content {
        opacity: 1;
        max-width: 300px;
    }
}

footer a {
    /* text-decoration: none */
    color: var(--common-color--black);
    text-decoration-color: var(--common-color--white);
}

footer p:last-of-type {
    margin-top: 4px;
    font-size: .85rem;
    font-family: 'deezer_productregular';
}

.sticker-rotate-bookmark {
    transform: rotate(-3deg);
}

.sticker-rotate-save {
    transform: rotate(2deg);
}

.sticker-rotate-upload {
    transform: rotate(-2deg);
}

.sticker-rotate-comment {
    transform: rotate(4deg);
}

.sticker-rotate-news {
    transform: rotate(-1deg);
}

.sticker-rotate-like {
    transform: rotate(3deg);
}

.sticker-rotate-edit {
    transform: rotate(-4deg);
}

.sticker-rotate-upgrade {
    transform: rotate(1deg);
}

/* Worm Clip-Path Entrance Animations */
@keyframes wormRevealTop {
    0% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes wormRevealLeft {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes wormRevealRight {
    0% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.worm-reveal-top {
    animation: wormRevealTop 1s ease-out forwards;
}

.worm-reveal-left {
    animation: wormRevealLeft 1s ease-out 0.3s forwards;
}

.worm-reveal-right {
    animation: wormRevealRight 1s ease-out 0.6s forwards;
}

.sticker-rotate-bookmark {
    transform: rotate(-3deg);
}

.sticker-rotate-save {
    transform: rotate(2deg);
}

.sticker-rotate-upload {
    transform: rotate(-2deg);
}

.sticker-rotate-comment {
    transform: rotate(4deg);
}

.sticker-rotate-news {
    transform: rotate(-1deg);
}

.sticker-rotate-like {
    transform: rotate(3deg);
}

.sticker-rotate-edit {
    transform: rotate(-4deg);
}

.sticker-rotate-upgrade {
    transform: rotate(1deg);
}