.sub-title {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.sticker-block {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.76);
    margin-bottom: 10px;
}

.sticker-block h4 { margin: 0 0 8px; }

.sticker-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 168px), 1fr));
    gap: 14px;
}

@media (min-width: 640px) {
    .sticker-list { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
}
@media (min-width: 960px) {
    .sticker-list { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
}

.sticker-block.sticker-block--floating-peel {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 8px 4px 16px;
}
.sticker-block.sticker-block--floating-peel h4 {
    margin-bottom: 18px;
}
.sticker-list.sticker-list--has-peel {
    gap: 28px 22px;
}

.sticker-item {
    border: 1px solid #eadffe;
    border-radius: 12px;
    padding: 8px 10px;
    background: #fff;
}
.sticker-item.sticker-tile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    min-width: 0;
}
.sticker-tile-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(165deg, #3a3348 0%, #4d455c 45%, #5c5368 100%);
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    isolation: isolate;
}
.sticker-tile-img {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100% - 6px);
    max-height: calc(100% - 6px);
    object-fit: contain;
    object-position: center;
    margin: auto;
    image-rendering: auto;
    filter: contrast(1.42) saturate(1.1) brightness(0.94);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    border-radius: 8px;
}
.sticker-tile-label {
    margin-top: 10px;
    font-size: clamp(0.86rem, 2.4vw, 0.96rem);
    font-weight: 800;
    color: var(--text);
    text-align: center;
    line-height: 1.42;
    word-break: break-word;
}

/* גרפיקת PNG מלאה כמדבקה - בלי אריח רקע, בלי שורת כיתוב מתחת (הכיתוב על התמונה) */
.sticker-tile.sticker-tile--peel {
    border: none;
    background: transparent;
    padding: 10px 6px;
    box-shadow: none;
}
.sticker-tile.sticker-tile--peel .sticker-tile-visual {
    background: transparent;
    border: none;
    box-shadow: none;
    aspect-ratio: auto;
}
.sticker-peel-float {
    display: block;
    will-change: transform;
    animation: stickerPeelFloat 5.2s ease-in-out infinite;
}
.sticker-tile.sticker-tile--peel .sticker-tile-img--peel {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    filter: drop-shadow(0 22px 40px rgba(38, 26, 16, 0.11))
        drop-shadow(0 8px 20px rgba(38, 26, 16, 0.08))
        drop-shadow(0 2px 6px rgba(38, 26, 16, 0.07));
}
.sticker-tile.sticker-tile--peel:hover .sticker-peel-float {
    animation-play-state: paused;
    transform: translateY(-8px) rotate(0deg);
    transition: transform 0.28s ease;
}

@keyframes stickerPeelFloat {
    0%, 100% { transform: translateY(0) rotate(-0.9deg); }
    50% { transform: translateY(-10px) rotate(-0.35deg); }
}

@media (prefers-reduced-motion: reduce) {
    .sticker-tile-img { filter: contrast(1.22) saturate(1.05) brightness(0.96); }
    .sticker-peel-float {
        animation: none;
    }
    .sticker-tile.sticker-tile--peel:hover .sticker-peel-float {
        transform: none;
    }
}
