/* Sticker Corner — collection catalog + compact pack sheets */

.stickers-page {
    max-width: 1400px;
    margin: auto;
    padding: 10px 40px 70px;
    overflow-x: hidden;
}

/* Same pattern as diary.css / playroom.css */
.back-home {
    display: inline-block;
    margin-bottom: 28px;
    padding: 12px 24px;
    background: #FFF8F1;
    border-radius: 18px;
    border: 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    color: #7A644E;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s;
    cursor: pointer;
}

.back-home:hover {
    transform: translateY(-3px);
    color: #B48B43;
}

.stickers-intro {
    margin: 0 0 28px;
    max-width: 46ch;
    font-size: 16px;
    line-height: 1.65;
    color: #7A644E;
}

.stickers-section-title {
    margin: 0 0 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 600;
    color: #4B3D2F;
}

.sticker-collections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin-bottom: 40px;
    max-width: 880px;
}

.stickers-page .sticker-collections .card {
    background: #FFF8F1;
}

.stickers-page .sticker-collections .card-image {
    background: #F3EBE0;
}

.stickers-page .sticker-collections .card-image img {
    object-fit: contain;
    padding: 22px 26px;
    box-sizing: border-box;
}

.stickers-page .sticker-collections .card-content {
    gap: 6px;
}

.stickers-page .sticker-collections .card-content p.sticker-collection-meta {
    display: block;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #7A644E;
}

.stickers-page .sticker-collections .sticker-collection-cta {
    display: inline-block;
    margin-top: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #B48B43;
}

.sticker-detail-head {
    margin: 0 0 18px;
}

.sticker-detail-head h2 {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: #4B3D2F;
}

.sticker-detail-head p {
    margin: 0;
    font-size: 15px;
    color: #7A644E;
}

.sticker-pack-group {
    margin: 0 0 28px;
}

.sticker-pack-group-title {
    margin: 0 0 12px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #8D5F35;
}

/* Compact contact sheet — reads as ONE pack */
.sticker-pack-sheet {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    max-width: 760px;
    padding: 12px;
    background: #FFF8F1;
    border-radius: 22px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.06),
        0 3px 10px rgba(0, 0, 0, 0.04);
}

.sticker-pack-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    aspect-ratio: 1 / 1.12;
    padding: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.sticker-pack-cell img {
    display: block;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

.sticker-pack-cell figcaption {
    flex: 0 0 auto;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-align: center;
    color: #7A644E;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticker-download {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 24px;
}

.sticker-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 18px;
    background: rgba(201, 168, 106, 0.28);
    color: #7A644E;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
}

.sticker-note {
    margin: 0;
    font-size: 13px;
    color: #9A8774;
}

@media (max-width: 980px) {
    .stickers-page {
        padding: 10px 24px 60px;
    }

    .sticker-pack-sheet {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 720px) {
    .stickers-page {
        padding: 8px 16px 50px;
    }

    .sticker-collections {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .sticker-pack-sheet {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
    }
}
