:root {
    --board-ink: #29291f;
    --board-blue: #06264b;
    --board-bronze: #735f49;
    --board-surface: #eeece4;
    --board-muted: #67665f;
    --board-danger: #8d312b;
}

html {
    scrollbar-gutter: stable;
}

body.modal-open {
    padding-right: 0 !important;
}

body.modal-open .fixed-top,
body.modal-open .fixed-bottom,
body.modal-open .is-fixed,
body.modal-open .sticky-top,
body.modal-open .header-wrapper,
body.modal-open .cinema-account-bar {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.boards-page {
    background: #fff;
}

.boards-heading {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 42px;
}

.boards-heading-title {
    align-items: center;
    display: flex;
    min-width: 0;
}

.boards-heading-heart {
    color: #8c7a35;
    flex: 0 0 auto;
    font-family: Georgia, serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 0.85;
}

.boards-heading-divider {
    background: #bcb8ac;
    display: block;
    height: 62px;
    margin: 0 24px;
    width: 1px;
}

.boards-heading h1 {
    color: var(--board-ink);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(27px, 3vw, 41px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1;
    margin: 0 0 13px;
}

.boards-heading p {
    color: #4b4b47;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    max-width: 620px;
}

.boards-create-action {
    background: #7b7042;
    border-color: #7b7042;
    border-radius: 28px;
    flex: 0 0 auto;
    gap: 9px;
    min-width: 166px;
}

.boards-create-action > span {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.boards-primary-action {
    align-items: center;
    background: var(--board-ink);
    border: 1px solid var(--board-ink);
    border-radius: 0;
    color: #fff;
    display: inline-flex;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.boards-primary-action:hover,
.boards-primary-action:focus-visible {
    background: var(--board-bronze);
    border-color: var(--board-bronze);
    color: #fff;
}

.boards-primary-action:disabled {
    background: #67665f;
    border-color: #67665f;
    color: #fff;
    cursor: wait;
}

.boards-primary-action:focus-visible,
.board-text-action:focus-visible,
.product-save-action:focus-visible,
.product-detail-action:focus-visible,
.board-back-link:focus-visible,
.board-preview-link:focus-visible,
.board-card-copy:focus-visible,
.board-card-edit-trigger:focus-visible,
.board-card-menu-trigger:focus-visible,
.board-detail-edit-action:focus-visible,
.board-detail-delete-action:focus-visible {
    outline: 2px solid #b49b79;
    outline-offset: 3px;
}

.boards-grid > div {
    display: flex;
}

.board-card {
    background: #fff;
    border: 1px solid #e3e0d7;
    border-radius: 8px;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    overflow: visible;
}

.board-card-visual {
    position: relative;
}

.board-preview-link {
    border-radius: 8px 8px 0 0;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.board-preview {
    aspect-ratio: 1.5 / 1;
    background: #d6d1c3;
    display: grid;
    gap: 3px;
    overflow: hidden;
    width: 100%;
}

.board-preview img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    width: 100%;
}

.board-preview-count-1 {
    grid-template-columns: 1fr;
}

.board-preview-count-2 {
    grid-template-columns: repeat(2, 1fr);
}

.board-preview-count-3,
.board-preview-count-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.board-preview-count-3 img:first-child {
    grid-row: 1 / 3;
}

.board-preview-empty {
    align-items: center;
    background: #d8d3c5;
    color: #6d675b;
    display: flex;
    font-family: Georgia, serif;
    font-size: 64px;
    justify-content: center;
}

.board-card-edit-trigger {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 0;
    border-radius: 8px;
    color: #887625;
    cursor: pointer;
    display: inline-flex;
    font-size: 19px;
    height: 40px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 12px;
    top: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 40px;
}

.board-card-edit-trigger:hover,
.board-card-edit-trigger:focus-visible {
    background: #f3f0e7;
    color: #564816;
}

.board-card-footer {
    align-items: start;
    display: grid;
    flex: 1;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 133px;
    padding: 21px 18px 19px 22px;
}

.board-card-copy {
    color: inherit;
    display: grid;
    grid-template-rows: auto 35px auto;
    min-width: 0;
    row-gap: 4px;
    text-decoration: none;
}

.board-card-copy h2 {
    color: var(--board-ink);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.18;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-card-copy p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #565650;
    display: -webkit-box;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    height: 35px;
    line-height: 1.45;
    margin: 0;
    max-height: 35px;
    min-height: 35px;
    overflow: hidden;
    overflow-wrap: anywhere;
    text-overflow: ellipsis;
    white-space: normal;
}

.board-card-copy p.is-empty {
    visibility: hidden;
}

.board-card-copy > span,
.board-item-count {
    color: var(--board-muted);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
}

.board-card-copy > span {
    justify-self: stretch;
    margin-top: 8px;
    text-align: right;
}

.board-card-menu {
    position: relative;
}

.board-card-menu-trigger {
    align-items: center;
    background: transparent;
    border: 0;
    color: #615a3d;
    cursor: pointer;
    display: inline-flex;
    font-family: Georgia, serif;
    font-size: 27px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
    width: 26px;
}

.board-card-menu-trigger:hover,
.board-card-menu-trigger:focus-visible,
.board-card-menu-trigger[aria-expanded="true"] {
    color: #8c792b;
}

.board-card-menu .dropdown-menu {
    border: 1px solid #dedbd2;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(42, 40, 31, 0.12);
    min-width: 180px;
    padding: 7px;
}

.board-card-menu .dropdown-item {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 5px;
    color: var(--board-ink);
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    gap: 9px;
    padding: 9px 10px;
    text-align: left;
    width: 100%;
}

.board-card-menu .dropdown-item:hover,
.board-card-menu .dropdown-item:focus-visible {
    background: #f2efe7;
    color: #675b2c;
}

.board-menu-delete-form {
    margin: 0;
}

.board-card-menu .board-delete-menu-item {
    color: var(--board-danger);
}

.board-text-action {
    background: transparent;
    border: 0;
    color: var(--board-muted);
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.board-danger-action:hover,
.board-danger-action:focus-visible {
    color: var(--board-danger);
}

.boards-page-empty {
    background: #f8f7f3;
    min-height: 620px;
}

.boards-empty-showcase {
    align-items: center;
    display: grid;
    gap: clamp(44px, 7vw, 104px);
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    margin: 0 auto;
    max-width: 1160px;
}

.boards-empty-visual {
    align-items: flex-end;
    display: flex;
    justify-content: center;
    min-height: 440px;
    position: relative;
}

.boards-empty-visual::before {
    background: #e3ddcf;
    border-radius: 48% 48% 8px 8px;
    content: "";
    height: 82%;
    left: 11%;
    position: absolute;
    top: 4%;
    width: 70%;
}

.boards-empty-visual img {
    height: auto;
    max-width: 560px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.boards-empty-heart {
    align-items: center;
    background: #f8f7f3;
    border: 2px solid #555446;
    border-radius: 50%;
    bottom: 40px;
    color: #555446;
    display: flex;
    font-family: Georgia, serif;
    font-size: 52px;
    height: 104px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 2%;
    width: 104px;
    z-index: 2;
}

.boards-empty-copy {
    color: var(--board-ink);
    text-align: center;
}

.boards-empty-copy h1 {
    color: var(--board-ink);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(54px, 6vw, 82px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1;
    margin: 0;
}

.boards-empty-divider {
    background: var(--board-bronze);
    border-radius: 999px;
    display: block;
    height: 3px;
    margin: 28px auto 30px;
    width: 84px;
}

.boards-empty-copy h2 {
    color: #3e3d35;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 14px;
}

.boards-empty-copy p {
    color: #64635d;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto 28px;
    max-width: 470px;
}

.boards-empty-action {
    background: #484936;
    border-color: #484936;
    border-radius: 4px;
    gap: 9px;
    min-width: 184px;
}

.boards-empty-action > span {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.board-detail-page.section-space {
    padding-bottom: 72px;
    padding-top: 38px;
}

.board-detail-heading {
    align-items: center;
    display: flex;
    gap: 36px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.board-detail-copy {
    min-width: 0;
}

.board-back-link {
    align-items: center;
    color: #8c7a35;
    display: inline-flex;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.board-back-link > span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.board-back-link:hover,
.board-back-link:focus-visible {
    color: var(--board-ink);
}

.board-detail-title-row {
    align-items: center;
    display: flex;
    gap: 14px;
    min-width: 0;
}

.board-detail-title-row h1 {
    color: var(--board-ink);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(28px, 3.1vw, 41px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0;
    overflow-wrap: anywhere;
}

.board-detail-edit-action {
    align-items: center;
    background: transparent;
    border: 0;
    color: #786a31;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 20px;
    height: 38px;
    justify-content: center;
    padding: 0;
    transition: color 0.2s ease;
    width: 38px;
}

.board-detail-edit-action:hover,
.board-detail-edit-action:focus-visible {
    color: var(--board-ink);
}

.board-detail-description {
    color: #5f5e58;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0 0;
    max-width: 680px;
}

.board-item-count {
    color: #4f4e49;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    margin-top: 16px;
}

.board-detail-delete-form {
    flex: 0 0 auto;
    margin: 0;
}

.board-detail-header-actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
}

.board-detail-reserve-action {
    align-items: center;
    background: #484936;
    border: 1px solid #484936;
    border-radius: 24px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 9px;
    justify-content: center;
    min-height: 44px;
    min-width: 158px;
    padding: 10px 18px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.board-detail-reserve-action:hover,
.board-detail-reserve-action:focus-visible {
    background: #333426;
    border-color: #333426;
    color: #fff;
}

.board-detail-delete-action {
    align-items: center;
    background: #fff;
    border: 1px solid #a42d2d;
    border-radius: 24px;
    color: #922626;
    cursor: pointer;
    display: inline-flex;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    gap: 9px;
    justify-content: center;
    min-height: 44px;
    min-width: 158px;
    padding: 10px 18px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.board-detail-delete-action:hover,
.board-detail-delete-action:focus-visible {
    background: #922626;
    color: #fff;
}

.boards-product-grid .product-item {
    background: #fff;
    border: 1px solid #e4e1d9;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.boards-product-grid .product-item:hover {
    box-shadow: 0 5px 12px rgba(44, 42, 33, 0.08);
}

.boards-product-grid .product-item-thumb-wrap {
    aspect-ratio: 1.46 / 1;
    background: #f8f7f4;
    box-shadow: none;
}

.boards-product-grid .product-item-thumb {
    display: block;
    height: 100%;
}

.boards-product-grid .product-item-thumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.boards-product-grid .product-item-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 17px 18px 15px;
}

.boards-product-grid .product-card-meta {
    margin-bottom: 8px;
}

.boards-product-grid .product-item-title {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    height: 3em;
    line-height: 1.5;
    margin: 0 0 12px;
}

.boards-product-grid .product-item-price {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    margin-bottom: 12px !important;
}

.product-board-action {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 16px;
    width: 100%;
}

.boards-product-grid .product-board-action {
    border-top: 1px solid #e6e3dc;
    margin-top: auto;
    padding-top: 14px;
}

.single-product-board-action {
    display: flex;
    justify-content: flex-end;
    margin: 24px 0 4px;
}

.product-board-action .product-save-action {
    margin-left: auto;
}

.product-save-action,
.product-detail-action {
    background: transparent;
    border: 0;
    color: var(--board-bronze);
    cursor: pointer;
    display: inline-flex;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    gap: 6px;
    line-height: 1.3;
    padding: 3px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-save-action > span {
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 0.8;
}

.product-save-action:hover,
.product-save-action:focus-visible,
.product-detail-action:hover,
.product-detail-action:focus-visible {
    color: var(--board-blue);
}

.product-save-action.is-saved {
    color: #9d2828;
}

.product-save-action.is-saved:hover,
.product-save-action.is-saved:focus-visible {
    color: #741d1d;
}

.product-remove-action {
    color: var(--board-danger);
}

.board-remove-form {
    margin: 0 0 0 auto;
}

.board-inspiration {
    border-top: 1px solid #dedbd2;
    margin-top: 26px;
    padding-top: 22px;
    text-align: center;
}

.board-inspiration-heart {
    color: #756a38;
    display: block;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 5px;
}

.board-inspiration h2 {
    color: var(--board-ink);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 5px;
}

.board-inspiration p {
    color: #4f4e49;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 13px;
}

.board-inspiration-action {
    background: #36372b;
    border-color: #36372b;
    border-radius: 3px;
    font-size: 12px;
    min-height: 40px;
    min-width: 150px;
    padding: 9px 18px;
}

.board-modal .modal-dialog {
    max-width: 650px;
}

.board-modal .modal-content {
    background: #fff;
    border: 1px solid #d9d7d1;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(24, 24, 22, 0.16);
    overflow: hidden;
}

.board-modal form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.board-modal .modal-header {
    align-items: center;
    border: 0;
    padding: 24px 30px 18px;
}

.board-modal .modal-header .btn-close {
    background-size: 16px;
    height: 22px;
    margin: 0;
    opacity: 0.7;
    padding: 0;
    width: 22px;
}

.board-modal .modal-header .btn-close:hover,
.board-modal .modal-header .btn-close:focus-visible {
    opacity: 1;
}

.board-modal .modal-title {
    color: var(--board-blue);
    font-family: "Lato", sans-serif;
    font-size: clamp(18px, 2.55vw, 21px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.board-modal .modal-header p {
    color: #66645f;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    margin: 6px 0 0;
}

.board-modal-product {
    align-items: center;
    display: flex;
    gap: 12px;
    padding: 0 30px 18px;
}

.board-modal-product img {
    background: #e9e5dc;
    border-radius: 4px;
    flex: 0 0 52px;
    height: 52px;
    object-fit: cover;
    width: 52px;
}

.board-modal-product h3,
.board-modal-intro h3 {
    color: #252522;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 4px;
}

.board-modal-product p,
.board-modal-intro p {
    color: #66645f;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
}

.board-ajax-error {
    background: #f7e8e6;
    color: var(--board-danger);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding: 8px 10px;
}

.board-modal .modal-body {
    border-bottom: 1px solid #e5e2dc;
    border-top: 1px solid #e5e2dc;
    padding: 18px 30px 0;
}

.board-modal-intro {
    margin-bottom: 8px;
}

.board-modal .modal-footer {
    border: 0;
    display: block;
    padding: 16px 30px 18px;
}

.board-modal-actions {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.board-modal-actions .boards-primary-action {
    background: var(--board-bronze);
    border-color: var(--board-bronze);
    border-radius: 2px;
    font-size: 12px;
    gap: 6px;
    min-height: 38px;
    min-width: 150px;
    padding: 8px 14px;
}

.board-modal-actions .boards-primary-action:hover,
.board-modal-actions .boards-primary-action:focus-visible {
    background: #5e4c39;
    border-color: #5e4c39;
}

.board-modal-actions .boards-primary-action:disabled {
    background: #9a9186;
    border-color: #9a9186;
}

.board-cancel-action {
    background: #fff;
    border: 1px solid #292925;
    border-radius: 2px;
    color: #292925;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    min-height: 38px;
    min-width: 100px;
    padding: 8px 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.board-cancel-action:hover,
.board-cancel-action:focus-visible {
    background: #292925;
    color: #fff;
}

.board-modal-note {
    align-items: center;
    background: #f4f0e8;
    color: #46443f;
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    gap: 8px;
    line-height: 1.5;
    margin: 14px 0 0;
    padding: 9px 11px;
    width: 100%;
}

.board-modal-note i {
    color: #8a6d48;
    font-size: 14px;
}

.board-form-field,
.board-new-name-field {
    margin-bottom: 18px;
}

.board-form-field label,
.board-new-name-field label {
    color: var(--board-ink);
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.board-form-field input,
.board-form-field textarea,
.board-new-name-field input {
    background: #fff;
    border: 1px solid #cbc7bb;
    border-radius: 0;
    color: var(--board-ink);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    width: 100%;
}

.board-form-field input:focus,
.board-form-field textarea:focus,
.board-new-name-field input:focus {
    border-color: var(--board-blue);
    box-shadow: none;
    outline: 2px solid rgba(6, 38, 75, 0.1);
    outline-offset: 1px;
}

.board-form-field .invalid-feedback {
    color: var(--board-danger);
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    margin-top: 5px;
}

.board-reserve-modal .modal-dialog {
    max-width: 570px;
}

.board-reserve-modal .modal-body {
    padding-bottom: 18px;
}

.board-reserve-summary {
    align-items: center;
    display: flex;
    gap: 13px;
    margin-bottom: 20px;
}

.board-reserve-summary-icon {
    color: #756246;
    flex: 0 0 auto;
    font-size: 25px;
    line-height: 1;
}

.board-reserve-summary h3 {
    color: var(--board-ink);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 3px;
}

.board-reserve-summary p {
    color: #66645f;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.board-reserve-dates {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-reserve-dates .board-form-field {
    margin-bottom: 4px;
}

.board-reserve-date-error {
    color: var(--board-danger);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    line-height: 1.45;
    margin: 8px 0 0;
}

.board-reserve-warning {
    margin-bottom: 0;
    margin-top: 18px;
}

.board-reserve-warning strong {
    font-weight: 700;
}

.board-choice-list {
    border: 0;
    margin: 0;
    padding: 0;
}

.board-choice {
    align-items: center;
    color: var(--board-ink);
    cursor: pointer;
    display: grid;
    gap: 10px;
    grid-template-columns: 18px minmax(130px, 1fr) auto 10px;
    min-height: 48px;
    padding: 7px 0;
}

.board-choice + .board-choice {
    border-top: 1px solid #e5e2dc;
}

.board-choice input,
.board-create-toggle input {
    appearance: none;
    background: #fff;
    border: 1px solid #74736f;
    border-radius: 3px;
    cursor: pointer;
    height: 18px;
    margin: 0;
    position: relative;
    width: 18px;
}

.board-choice input:checked,
.board-create-toggle input:checked {
    background: var(--board-bronze);
    border-color: var(--board-bronze);
}

.board-choice input:checked::after,
.board-create-toggle input:checked::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    height: 8px;
    left: 6px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 4px;
}

.board-choice input:focus-visible,
.board-create-toggle input:focus-visible,
.board-cancel-action:focus-visible {
    outline: 2px solid #b49b79;
    outline-offset: 3px;
}

.board-choice-copy {
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
}

.board-choice strong {
    font-size: 13px;
    font-weight: 700;
}

.board-choice small {
    color: var(--board-muted);
    font-size: 10px;
    margin-top: 1px;
}

.board-choice-previews {
    display: flex;
    gap: 4px;
}

.board-choice-previews img {
    background: #e9e5dc;
    border-radius: 3px;
    height: 28px;
    object-fit: cover;
    width: 35px;
}

.board-choice-chevron {
    color: #565550;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.board-choice-empty {
    align-items: center;
    color: var(--board-muted);
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    justify-content: space-between;
    line-height: 1.5;
    margin: 4px 0 14px;
}

.board-choice-empty[hidden] {
    display: none !important;
}

.board-choice-empty strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.board-modal.has-no-boards .board-modal-intro {
    margin-bottom: 14px;
}

.board-modal.has-no-boards .board-choice-empty {
    background: #292925;
    color: #f4f1eb;
    margin: 0 0 18px;
    padding: 13px 16px;
}

.board-modal.has-no-boards .board-choice-empty strong {
    color: #fff;
}

.board-empty-signal {
    color: #c3a57c;
    flex: 0 0 auto;
    font-family: Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    margin-left: 20px;
}

.board-create-choice {
    margin: 0 -30px;
    padding: 14px 30px 8px;
    border-top: 1px solid #e5e2dc;
}

.board-modal:not(.has-no-boards) .board-create-choice {
    margin-top: 15px;
}

.board-modal.has-no-boards .board-create-choice {
    margin-top: 8px;
    padding-bottom: 12px;
    padding-top: 18px;
}

.board-modal.has-no-boards .board-create-toggle {
    margin-bottom: 16px;
}

.board-create-toggle {
    align-items: center;
    color: var(--board-ink);
    cursor: pointer;
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    gap: 10px;
    margin-bottom: 12px;
}

.board-modal .board-new-name-field {
    margin-bottom: 9px;
}

.board-modal .board-new-name-field label {
    font-size: 11px;
    margin-bottom: 4px;
}

.board-modal .board-new-name-field input {
    font-size: 12px;
    padding: 8px 10px;
}

.board-new-name-field.is-disabled {
    opacity: 0.5;
}

.board-new-name-field small {
    color: var(--board-muted);
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    margin-top: 4px;
}

.board-feedback {
    background: var(--board-ink);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.5;
    max-width: min(420px, calc(100vw - 32px));
    padding: 14px 18px;
    position: fixed;
    right: 18px;
    top: calc(128px + var(--cinema-account-bar-height));
    z-index: 1060;
}

.board-feedback.is-success {
    background: #394b35;
}

.board-feedback.is-info {
    background: #38452B;
}

.board-feedback.is-error {
    background: var(--board-danger);
}

@media (max-width: 767px) {
    .boards-page.section-space {
        padding-bottom: 64px;
        padding-top: 64px;
    }

    .boards-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 34px;
    }

    .boards-heading h1 {
        font-size: 24px;
    }

    .boards-heading-heart {
        font-size: 48px;
    }

    .boards-heading-divider {
        height: 50px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .boards-heading p {
        font-size: 13px;
        line-height: 1.5;
    }

    .boards-create-action {
        min-width: 154px;
    }

    .board-detail-page.section-space {
        padding-bottom: 56px;
        padding-top: 28px;
    }

    .board-detail-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }

    .board-back-link {
        margin-bottom: 14px;
    }

    .board-detail-title-row {
        gap: 8px;
    }

    .board-detail-title-row h1 {
        font-size: 28px;
    }

    .board-detail-edit-action {
        font-size: 18px;
        height: 34px;
        width: 34px;
    }

    .board-detail-description {
        font-size: 13px;
    }

    .board-detail-delete-form {
        align-self: flex-end;
    }

    .board-detail-header-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .board-detail-header-actions .board-detail-delete-form,
    .board-detail-reserve-action,
    .board-detail-delete-action {
        width: 100%;
    }

    .board-detail-delete-action {
        min-height: 40px;
        min-width: 148px;
    }

    .board-inspiration {
        margin-top: 22px;
        padding-top: 20px;
    }

    .boards-page-empty.section-space {
        min-height: 0;
        padding-bottom: 72px;
        padding-top: 54px;
    }

    .boards-empty-showcase {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .boards-empty-copy {
        order: 1;
    }

    .boards-empty-copy h1 {
        font-size: 46px;
    }

    .boards-empty-divider {
        margin-bottom: 22px;
        margin-top: 20px;
        width: 66px;
    }

    .boards-empty-copy h2 {
        font-size: 22px;
    }

    .boards-empty-copy p {
        font-size: 14px;
        max-width: 430px;
    }

    .boards-empty-visual {
        margin: 0 auto;
        min-height: 300px;
        order: 2;
        width: min(100%, 430px);
    }

    .boards-empty-heart {
        bottom: 24px;
        font-size: 38px;
        height: 74px;
        right: 0;
        width: 74px;
    }

    .board-card-footer {
        min-height: 122px;
        padding: 17px 14px 16px 17px;
    }

    .board-card-copy h2 {
        font-size: 22px;
    }

    .board-modal .modal-header,
    .board-modal .modal-body,
    .board-modal .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .board-modal .modal-dialog {
        margin: 8px;
    }

    .board-modal .modal-header {
        padding-bottom: 16px;
        padding-top: 18px;
    }

    .board-modal .modal-title {
        font-size: 19px;
    }

    .board-modal-product {
        align-items: flex-start;
        gap: 10px;
        padding: 0 20px 16px;
    }

    .board-modal-product img {
        flex-basis: 50px;
        height: 50px;
        width: 50px;
    }

    .board-modal-product h3,
    .board-modal-intro h3 {
        font-size: 13px;
    }

    .board-modal-product p,
    .board-modal-intro p {
        font-size: 11px;
    }

    .board-choice {
        gap: 8px;
        grid-template-columns: 18px minmax(0, 1fr) 10px;
    }

    .board-choice input,
    .board-create-toggle input {
        height: 18px;
        width: 18px;
    }

    .board-choice input:checked::after,
    .board-create-toggle input:checked::after {
        left: 6px;
        top: 2px;
    }

    .board-choice-previews {
        display: none;
    }

    .board-choice strong,
    .board-create-toggle {
        font-size: 12px;
    }

    .board-create-choice {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .board-modal-actions {
        gap: 8px;
    }

    .board-cancel-action,
    .board-modal-actions .boards-primary-action {
        flex: 1;
        min-width: 0;
        padding-left: 8px;
        padding-right: 8px;
    }

    .board-modal-note {
        align-items: flex-start;
    }

    .product-board-action {
        column-gap: 14px;
    }

    .product-save-action {
        font-size: 12px;
    }

    .board-reserve-dates {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .board-reserve-dates .board-form-field {
        margin-bottom: 14px;
    }

    .board-reserve-summary {
        align-items: flex-start;
        margin-bottom: 17px;
    }

    .board-feedback {
        left: 16px;
        right: 16px;
        top: calc(116px + var(--cinema-account-bar-height));
    }
}
