/* Colourway picker — aligns with collections.html / botanical-rhythms typography & palette */

.design-colorways-page .collection-back {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Centres title, ID, lede + colour tiles as one column on the page */
.design-page-main {
    width: 100%;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.design-colorways-page .design-page-main .collection-detail-intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    text-align: center;
    width: 100%;
}

.colorway-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 28px 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.colorway-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 320px;
    width: 320px;
    max-width: min(320px, 100%);
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

.colorway-card:focus {
    outline: none;
}

.colorway-card:focus-visible .colorway-image-frame {
    outline: 2px solid #2c2c2c;
    outline-offset: 4px;
}

.colorway-card:hover .colorway-image-frame {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.colorway-card.is-selected .colorway-image-frame {
    box-shadow: 0 0 0 2px #1a1a1a;
}

.colorway-image-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.2s ease;
}

.colorway-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.colorway-copy {
    margin-top: 18px;
    padding: 0 8px 8px;
    max-width: 100%;
}

.colorway-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.35px;
    line-height: 1.35;
}

.colorway-line .design-part {
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
}

.colorway-line .color-part {
    font-weight: 400;
    letter-spacing: 0.25px;
}

.colorway-line .colorway-in {
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.2px;
    color: #555;
}

.colorway-material {
    margin-top: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #888888;
    font-weight: 400;
}

.design-missing {
    font-size: 15px;
    color: #666;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.design-missing a {
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .colorway-grid {
        gap: 24px 16px;
        max-width: 680px;
    }

    .colorway-card {
        flex: 0 1 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .colorway-grid {
        gap: 28px;
        max-width: 420px;
    }

    .colorway-card {
        flex: 0 1 100%;
        width: 100%;
        max-width: 360px;
    }

    .colorway-line {
        font-size: 14px;
    }

    .colorway-line .design-part {
        font-size: 12px;
    }
}
