:root {
    /* Volontairement clair uniquement, meme si le systeme est en mode sombre :
       les photos produit viennent de boutiques externes avec un fond blanc
       "cuit" dans l'image (pas detourable sans IA de suppression de fond,
       hors de portee gratuitement sur cet hebergement) - un theme sombre
       ferait ressortir un carre blanc autour de chaque photo concernee. */
    color-scheme: light;
    --paper: #ffffff;
    --chrome: #f5f4f1;
    --ink: #14130f;
    --muted: #67645b;
    --rule: #e4e2dc;
    --signal: #1b34c7;
    --tile: #ece9e2;
    --shadow: rgba(20, 19, 15, 0.10);
}

* {
    box-sizing: border-box;
}

/* Transition douce entre les pages (navigateurs qui la supportent - Chrome/
   Edge recents) : anime automatiquement l'ancienne et la nouvelle page lors
   d'une navigation classique (rechargement de document), sans JS. Ignore
   silencieusement dans les autres navigateurs. */
@view-transition {
    navigation: auto;
}

body {
    margin: 0;
    background: var(--chrome);
    color: var(--ink);
    font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    animation: page-fade-in 0.2s ease;
}

@keyframes page-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------- topbar / logo ---------- */

.topbar {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
}

.topbar-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.brand {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    color: var(--ink);
    text-decoration: none;
}

.topnav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.topnav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.topnav a:hover {
    color: var(--signal);
}

.icon-link,
.account-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-link svg,
.account-icon-link svg {
    display: block;
    width: 20px;
    height: 20px;
}

details.account-menu summary {
    border: none;
    background: none;
    padding: 0;
    list-style: none;
}

/* Selecteur plus specifique que ".multiselect summary::after" (qui pose la
   fleche "▾" des menus de filtre) pour etre sur de gagner la cascade quel
   que soit l'ordre des regles dans le fichier. */
details.account-menu summary::after {
    content: "";
}

.account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--signal);
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    font-weight: 700;
}

.account-menu .multiselect-options.account-dropdown {
    left: auto;
    right: 0;
    min-width: 200px;
    padding: 6px 0;
}

.account-dropdown-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: var(--ink);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.account-dropdown-item:hover {
    background: var(--chrome);
    color: var(--signal);
}

.account-dropdown-btn {
    border-top: 1px solid var(--rule);
}

/* ---------- layout ---------- */

main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 28px 20px 48px;
}

.page-title {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.hero-tagline {
    margin: 0;
    font-size: 1.05rem;
    color: var(--ink);
    max-width: 620px;
    line-height: 1.45;
}

/* ---------- bandeau d'accueil ---------- */

.hero {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-top: -28px;
    margin-bottom: 28px;
    overflow: hidden;
    background: var(--ink);
}

.hero-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

.hero-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: grayscale(35%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 19, 15, 0.68) 0%, rgba(20, 19, 15, 0.94) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 64px 20px 56px;
}

.hero-inner .page-title,
.hero-inner .hero-tagline {
    color: #fff;
}

.hero-inner .page-title {
    font-size: 2.4rem;
}

.subtitle {
    color: var(--muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    margin: 0 0 20px;
}

.subtitle a {
    color: var(--signal);
}

.new-matches-banner {
    background: var(--tile);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--signal);
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.new-matches-banner a {
    color: var(--signal);
    font-weight: 600;
}

/* ---------- filtres actifs ---------- */

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    color: var(--ink);
    background: var(--tile);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 4px 10px;
    text-decoration: none;
}

.filter-chip:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.filter-chip-reset {
    background: none;
    border-style: dashed;
    color: var(--muted);
    font-weight: 600;
}

.filter-chip-reset:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.filter-chip-save {
    cursor: pointer;
    font-family: inherit;
}

.filter-chip-save:hover {
    border-color: var(--signal);
    color: var(--signal);
}

/* ---------- filters ---------- */

.filters {
    background: var(--chrome);
    border: 1px solid var(--rule);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
    margin-bottom: 28px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
    flex: 1 1 150px;
}

.field-narrow {
    min-width: 100px;
    flex: 0 1 100px;
}

.field-wide {
    flex: 2 1 260px;
}

/* Taille sortie de l'accordeon "Autres filtres" - visible des le premier
   coup d'oeil, sans clic, juste apres le mot-cle (coeur de la proposition
   du site : chercher par taille dans plusieurs boutiques a la fois). */
.field-size-prominent {
    min-width: 180px;
}

/* Sur desktop, l'accordeon ne change rien au layout (ses champs restent des
   flex items directs de .filters) - il ne se comporte reellement comme un
   accordeon replie que sur mobile (voir media query + multiselect.js qui
   bascule .collapsed sous 640px). Un <div> classique plutot qu'un <details>
   pour "display: contents" : <details>+contents a un support navigateur
   incoherent (Safari/Chrome retombent parfois en bloc empile). */
.filters-accordion {
    display: contents;
}

.filters-accordion-toggle {
    display: none;
}

.field label, .field-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

select, input[type="text"], input[type="number"] {
    padding: 9px 10px;
    border: 1px solid var(--rule);
    border-radius: 6px;
    font-size: 0.88rem;
    font-family: inherit;
    background: var(--paper);
    color: var(--ink);
}

select:focus, input:focus {
    outline: none;
    border-color: var(--signal);
}

.multiselect {
    position: relative;
}

.multiselect summary {
    list-style: none;
    padding: 9px 10px;
    border: 1px solid var(--rule);
    border-radius: 6px;
    font-size: 0.88rem;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    user-select: none;
}

.multiselect summary::-webkit-details-marker {
    display: none;
}

.multiselect summary::after {
    content: "▾";
    float: right;
    color: var(--muted);
}

.multiselect[open] summary {
    border-color: var(--signal);
}

.multiselect-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 20;
    min-width: 220px;
    max-height: 260px;
    overflow-y: auto;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    box-shadow: 0 10px 24px var(--shadow);
    padding: 6px;
}

.multiselect-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 5px;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}

.multiselect-options label:hover {
    background: var(--chrome);
}

.multiselect-clear {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid var(--rule);
    cursor: pointer;
    padding: 6px 8px 8px;
    margin-bottom: 4px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    color: var(--signal);
}

.multiselect-group-label {
    padding: 6px 8px 2px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

button[type="submit"] {
    padding: 10px 26px;
    background: var(--ink);
    color: var(--paper);
    border: none;
    border-radius: 6px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    height: fit-content;
    transition: transform 0.08s ease, opacity 0.15s ease;
}

button[type="submit"]:hover {
    opacity: 0.85;
}

button[type="submit"]:active {
    transform: translateY(1px);
}

/* ---------- results grid ---------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px 18px;
}

.product-card {
    background: var(--paper);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease;
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--tile);
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 12px;
    text-align: center;
    color: var(--muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-media .save-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--paper);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--signal);
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px var(--shadow);
}

.product-body {
    padding: 10px 2px 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.product-title {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.87rem;
    line-height: 1.35;
}

.product-title:hover {
    color: var(--signal);
}

.product-meta {
    color: var(--muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.size-badges {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.size-badge.current {
    color: var(--paper);
    background: var(--signal);
    border-color: var(--signal);
    font-weight: 600;
}

.size-badge {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    color: var(--muted);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 1px 5px;
}

.flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.flag-badge svg {
    flex-shrink: 0;
}

.product-footer {
    margin-top: auto;
    padding-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "IBM Plex Mono", monospace;
}

.product-footer .price {
    font-weight: 600;
    font-size: 0.92rem;
    font-variant-numeric: tabular-nums;
}

.product-footer .store {
    color: var(--muted);
    font-size: 0.72rem;
}

.also-at {
    color: var(--signal);
}

.alert-btn {
    margin-top: 8px;
    width: 100%;
    padding: 7px;
    background: none;
    border: 1px solid var(--rule);
    border-radius: 5px;
    color: var(--muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.alert-btn:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.alert-btn.active {
    border-color: var(--signal);
    color: var(--signal);
    cursor: default;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.82rem;
}

.pagination a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid var(--rule);
    border-radius: 6px;
    background: var(--paper);
}

.pagination a:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.pagination .disabled {
    color: var(--rule);
    padding: 6px 12px;
}

.pagination .page-info {
    color: var(--muted);
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    color: var(--ink);
    text-decoration: none;
    padding: 4px 9px;
    border-radius: 6px;
}

.page-number:hover {
    color: var(--signal);
}

.page-number.current {
    background: var(--signal);
    color: var(--paper);
    font-weight: 600;
}

.page-ellipsis {
    color: var(--muted);
    padding: 0 2px;
}

.save-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1;
    padding: 4px;
}

.save-btn:hover {
    color: var(--signal);
}

.save-btn.saved {
    color: var(--signal);
}

/* ---------- page favoris ---------- */

.fav-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 10px;
}

.fav-thumb {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--tile);
}

.fav-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.fav-info a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.fav-info a:hover {
    color: var(--signal);
}

.fav-meta {
    color: var(--muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
}

.remove-btn {
    flex-shrink: 0;
    padding: 7px 14px;
    background: none;
    border: 1px solid var(--rule);
    border-radius: 5px;
    color: var(--ink);
    cursor: pointer;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.remove-btn:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.clear-btn {
    margin-top: 12px;
    padding: 9px 18px;
    background: none;
    border: 1px solid var(--rule);
    border-radius: 5px;
    color: var(--muted);
    cursor: pointer;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.clear-btn:hover {
    border-color: var(--signal);
    color: var(--signal);
}

.empty {
    color: var(--muted);
    padding: 40px 24px;
    text-align: center;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
}

/* ---------- page tenues ---------- */

.section-title {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
}

.outfit-pick-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.outfit-pick-card label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

#outfit-draft-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.outfit-score {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid var(--rule);
}

.outfit-score.good {
    color: #1f7a1f;
    border-color: #1f7a1f;
}

.outfit-score.ok {
    color: #a56a00;
    border-color: #a56a00;
}

.outfit-score.risky {
    color: var(--signal);
    border-color: var(--signal);
}

.outfit-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.outfit-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.outfit-card-name {
    font-weight: 600;
}

.outfit-card-thumbs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.outfit-card-thumbs img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    background: var(--tile);
}

.login-nudge {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 480px;
    margin: 0 auto;
    background: var(--ink);
    color: var(--paper);
    border-radius: 8px;
    padding: 12px 40px 12px 16px;
    font-size: 0.85rem;
    box-shadow: 0 4px 16px var(--shadow);
    z-index: 50;
}

.login-nudge a {
    color: var(--paper);
    text-decoration: underline;
    font-weight: 600;
}

.login-nudge button {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

/* ---------- page produit ---------- */

.product-detail {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.product-detail-media {
    flex: 1 1 320px;
    max-width: 420px;
    background: var(--tile);
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
}

.product-detail-media img {
    width: 100%;
    display: block;
}

.product-detail-body {
    flex: 1 1 320px;
}

.product-detail-body .price {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 8px 0 12px;
}

.product-detail-body .size-badges {
    margin-bottom: 14px;
}

.product-detail-body .alert-btn {
    margin: 14px 0;
}

/* ---------- footer ---------- */

footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    color: var(--muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.74rem;
    line-height: 1.6;
}

.site-footer {
    max-width: 1160px;
    margin: 40px auto 0;
    padding: 20px 20px 32px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
    color: var(--muted);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.76rem;
}

.site-footer a {
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--signal);
}

.site-footer .sep {
    margin-left: auto;
}

/* ---------- pages statiques (a propos, confidentialite, mentions legales) ---------- */

.prose {
    max-width: 640px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.prose h2 {
    font-size: 1.05rem;
    margin: 28px 0 8px;
}

.prose p, .prose ul {
    margin: 0 0 14px;
    color: var(--ink);
}

.prose ul {
    padding-left: 20px;
}

.prose li {
    margin-bottom: 6px;
}

.prose code {
    background: var(--chrome);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 1px 6px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.85em;
}

.prose a {
    color: var(--signal);
}

/* ---------- pages d'erreur ---------- */

.error-page {
    max-width: 480px;
    margin: 60px auto;
    text-align: center;
}

.error-code {
    font-family: "IBM Plex Mono", monospace;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--rule);
    margin: 0;
    line-height: 1;
}

.error-back {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 6px;
    text-decoration: none;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.error-back:hover {
    opacity: 0.85;
}

/* ---------- responsive ---------- */

@media (max-width: 640px) {
    .topbar-inner {
        padding: 16px 16px;
    }

    .hero-inner {
        padding: 40px 16px 36px;
    }

    .hero-inner .page-title {
        font-size: 1.7rem;
    }

    .hero-tagline {
        font-size: 0.92rem;
    }

    .hero-mosaic {
        grid-template-columns: repeat(4, 1fr);
    }

    .filters {
        padding: 16px;
    }

    .field {
        flex: 1 1 100%;
    }

    .filters-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        cursor: pointer;
        background: var(--chrome);
        border: 1px solid var(--rule);
        border-radius: 8px;
        font-family: "IBM Plex Mono", monospace;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--ink);
        padding: 10px 14px;
        margin-bottom: 10px;
    }

    .filters-accordion-toggle::after {
        content: "+";
        font-size: 1rem;
        font-weight: 700;
        color: var(--signal);
    }

    .filters-accordion-toggle[aria-expanded="true"]::after {
        content: "\2212";
    }

    .filters-accordion.collapsed {
        display: none;
    }

    .size-badges {
        flex-wrap: wrap;
    }

    .fav-card,
    .outfit-pick-card {
        flex-direction: column;
        align-items: stretch;
    }

    .remove-btn {
        align-self: flex-end;
    }

    #outfit-draft-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
