@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300;1,400&display=swap");
:root {
    --background: #ffffff;
    --surface: #ffffff;
    --text: #171717;
    --text-secondary: #737373;
    --border: #e8e8e8;
    --accent: #c7192d;
    --max-width: 980px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--max-width);
    min-height: 74px;
    margin: 0 auto;
    padding: 8px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: block;
    line-height: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 2px;
}

.language-selector button {
    appearance: none;
    border: 0;
    background: transparent;

    padding: 7px 6px;

    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.language-selector button:hover,
.language-selector button.active {
    color: var(--accent);
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
}

.intro {
    padding: 34px 16px 26px;
    text-align: center;
}

.intro h1 {
    margin: 0 0 7px;
    font-size: 26px;
    font-weight: 600;
}

.intro p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.catalog {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
}

.catalog-card {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
    aspect-ratio: 3 / 4;
    cursor: pointer;
}

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

.catalog-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    color: var(--text-secondary);
    text-align: center;
    font-size: 14px;
}

.catalog-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 38px 12px 12px;

    color: #ffffff;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, 0.68)
        );
}

.catalog-title {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 600;
}

.catalog-price {
    font-size: 13px;
}

.loading,
.error-message,
.empty-message {
    grid-column: 1 / -1;
    padding: 60px 20px;

    color: var(--text-secondary);
    text-align: center;
}

.site-footer {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 24px 16px 36px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid var(--border);

    color: var(--text-secondary);
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

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

@media (max-width: 640px) {

    .header-inner {
        min-height: 62px;
        padding: 6px 10px;
    }

    .brand-logo {
        height: 48px;
        max-width: 145px;
    }

    .language-selector {
        gap: 0;
    }

    .language-selector button {
        padding: 6px 4px;
        font-size: 10px;
    }

    .intro {
        padding: 24px 14px 20px;
    }

    .intro h1 {
        font-size: 22px;
    }

    .catalog {
        gap: 2px;
    }

    .catalog-overlay {
        padding: 30px 7px 7px;
    }

    .catalog-title {
        font-size: 12px;
    }

    .catalog-price {
        font-size: 11px;
    }

    .site-footer {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }
}


/* ============================================================
   OBJECT DETAIL
   ============================================================ */

.object-detail[hidden] {
    display: none;
}

.object-detail {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.object-detail-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.78);
}

.object-detail-panel {
    position: relative;
    z-index: 1;

    width: min(100%, 980px);
    max-height: calc(100vh - 48px);

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);

    overflow: hidden;

    background: var(--surface);
    border-radius: 8px;
}

.object-detail-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 5;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}

.object-detail-media {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
}

.detail-photo {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #aaa;
    text-align: center;
}

.detail-photo img {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 48px);

    object-fit: contain;

    display: block;
}

.detail-nav {
    position: absolute;
    top: 50%;
    z-index: 3;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);
    color: #fff;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

.detail-nav-prev {
    left: 12px;
}

.detail-nav-next {
    right: 12px;
}

.detail-photo-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 9px;

    border-radius: 12px;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    font-size: 12px;
}

.object-detail-content {
    overflow-y: auto;

    padding: 34px 28px 30px;
}

.detail-category {
    margin-bottom: 8px;

    color: var(--text-secondary);

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.object-detail-content h2 {
    margin: 0 0 14px;

    font-size: 25px;
    font-weight: 600;
}

.detail-price {
    margin-bottom: 18px;

    color: var(--accent);

    font-size: 19px;
    font-weight: 600;
}

.detail-age {
    margin-bottom: 18px;

    color: var(--text-secondary);

    font-size: 14px;
}

.detail-description {
    margin: 0;

    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

body.detail-open {
    overflow: hidden;
}


@media (max-width: 760px) {

    .object-detail {
        padding: 0;
        align-items: stretch;
    }

    .object-detail-panel {
        width: 100%;
        max-height: 100vh;

        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 62vh) auto;

        border-radius: 0;
    }

    .object-detail-media,
    .detail-photo {
        min-height: 0;
    }

    .object-detail-content {
        padding: 22px 18px 28px;
    }

    .object-detail-content h2 {
        font-size: 22px;
    }
}


/* ============================================================
   MOBILE — INSTAGRAM STYLE PROFILE GRID
   ============================================================ */

@media (max-width: 640px) {

    .intro {
        padding: 20px 14px 18px;
    }

    .catalog {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2px;

        padding: 0;
    }

    .catalog-card {
        aspect-ratio: 1 / 1;

        border-radius: 0;
        overflow: hidden;
    }

    .catalog-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .catalog-placeholder {
        padding: 6px;

        font-size: 10px;
        line-height: 1.15;
    }

    .catalog-overlay {
        display: none;
    }

    .site-footer {
        margin-top: 24px;
    }
}


/* ============================================================
   OBJECT DETAIL ACTIONS
   ============================================================ */

.detail-actions {
    display: flex;
    gap: 10px;

    margin: 0 0 22px;
}

.detail-action {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 9px 14px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #fff;
    color: var(--text);

    font: inherit;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;
}

.detail-action:hover {
    border-color: #cfcfcf;
}

.detail-action-icon {
    font-size: 21px;
    line-height: 1;
}

.detail-like.active {
    color: var(--accent);
    border-color: var(--accent);
}

.detail-like.active .detail-action-icon {
    color: var(--accent);
}

.detail-contact {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.detail-contact:hover {
    opacity: 0.92;
}

@media (max-width: 760px) {

    .detail-actions {
        position: sticky;
        bottom: 0;

        margin-left: -18px;
        margin-right: -18px;
        margin-bottom: 18px;

        padding: 10px 18px;

        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .detail-action {
        flex: 1;
    }
}


/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-form-modal[hidden] {
    display: none;
}

.contact-form-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;
}

.contact-form-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);
}

.contact-form-panel {
    position: relative;
    z-index: 1;

    width: min(100%, 480px);
    max-height: calc(100vh - 36px);
    overflow-y: auto;

    padding: 26px;

    background: #fff;
    border-radius: 14px;
}

.contact-form-close {
    position: absolute;
    top: 8px;
    right: 12px;

    border: 0;
    background: transparent;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

.contact-object {
    padding-right: 30px;
    margin-bottom: 22px;
}

#contact-object-title {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

#contact-object-code {
    font-size: 13px;
    opacity: 0.65;
}

#contact-form label {
    display: block;
    margin-bottom: 14px;
}

#contact-form label span {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;
    font-weight: 600;
}

#contact-form input,
#contact-form textarea {
    box-sizing: border-box;

    width: 100%;

    padding: 10px 11px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: #fff;
    color: var(--text);

    font: inherit;
}

#contact-form textarea {
    resize: vertical;
}

.contact-submit {
    width: 100%;
    min-height: 44px;

    border: 0;
    border-radius: 8px;

    background: var(--accent);
    color: #fff;

    font: inherit;
    font-weight: 600;

    cursor: pointer;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.contact-status {
    min-height: 20px;

    margin-top: 10px;

    text-align: center;
    font-size: 13px;
}

@media (max-width: 640px) {

    .contact-form-modal {
        align-items: flex-end;
        padding: 0;
    }

    .contact-form-panel {
        width: 100%;
        max-height: 90vh;

        border-radius: 16px 16px 0 0;

        padding: 24px 18px 28px;
    }
}


/* ============================================================
   CATALOG LIKED FILTER
   ============================================================ */

.catalog-filter {
    display: flex;
    justify-content: center;
    gap: 8px;

    margin: 0 auto 18px;
    padding: 0 12px;
}

.catalog-filter-button {
    padding: 7px 14px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;
    color: var(--text);

    font: inherit;
    font-size: 14px;

    cursor: pointer;
}

.catalog-filter-button.active {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
}

@media (max-width: 640px) {

    .catalog-filter {
        justify-content: flex-start;

        margin-bottom: 8px;
        padding: 0 10px;
    }

    .catalog-filter-button {
        padding: 6px 12px;
        font-size: 13px;
    }
}


/* ============================================================
   CATALOG LIKE COUNT
   ============================================================ */

.catalog-like-count {
    padding: 4px 8px;

    font-size: 13px;
    line-height: 1;

    color: var(--text);
    opacity: 0.75;
}

@media (max-width: 640px) {

    .catalog-like-count {
        position: absolute;
        right: 4px;
        bottom: 4px;

        padding: 3px 5px;

        border-radius: 10px;

        background: rgba(0, 0, 0, 0.55);
        color: #fff;

        font-size: 11px;
        opacity: 1;
    }
}


/* ============================================================
   PUBLIC VIDEO MEDIA
   ============================================================ */

.detail-photo video,
.detail-video {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 48px);

    object-fit: contain;

    display: block;

    background: #111;
}


/*
 * VIDEO used as catalog cover.
 * Same geometry as PHOTO cover.
 */
.catalog-card video.catalog-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
}


/* ============================================================
   DETAIL SOCIAL PANEL
   ============================================================ */

.object-detail-content {
    display: flex;
    flex-direction: column;
}

.detail-description {
    margin: 0 0 18px;
}

.detail-social {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
}

.detail-social-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-social-button {
    appearance: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 0;
    border: 0;

    background: transparent;
    color: var(--text);

    text-decoration: none;
    cursor: pointer;
}

.detail-social-button:hover {
    color: var(--accent);
}

.detail-social-icon {
    display: block;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
}

.detail-social-hidden-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.detail-like-summary {
    margin-top: 7px;
    font-size: 13px;
    font-weight: 600;
}

.detail-share-status {
    min-height: 16px;
    margin-top: 2px;

    color: var(--text-secondary);
    font-size: 12px;
}

.detail-social-divider {
    height: 1px;
    margin: 11px 0;
    background: rgba(0, 0, 0, 0.09);
}

.detail-comments-heading {
    margin-bottom: 8px;

    color: var(--text-secondary);

    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-comments {
    flex: 0 0 auto;

    min-height: 0;
    max-height: none;

    overflow: visible;
    padding-right: 0;
}

.detail-comment {
    margin-bottom: 12px;

    font-size: 13px;
    line-height: 1.35;
}

.detail-comment-author {
    display: block;

    margin-bottom: 2px;

    font-size: 13px;
    font-weight: 600;
}

.detail-comment-body {
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.detail-comments-empty {
    padding: 8px 0;

    color: var(--text-secondary);
    font-size: 13px;
}

.detail-comment-form {
    flex: 0 0 auto;

    margin: 0 0 14px;
    padding: 0 0 12px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.09);
}

.detail-comment-name {
    width: 100%;

    margin-bottom: 5px;
    padding: 5px 0;

    border: 0;
    border-bottom:
        1px solid rgba(0, 0, 0, 0.11);

    outline: none;
    background: transparent;

    font: inherit;
    font-size: 12px;
}

.detail-comment-compose {
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

.detail-comment-compose textarea {
    flex: 1;

    min-height: 34px;
    max-height: 90px;

    padding: 7px 0;
    resize: vertical;

    border: 0;
    outline: none;

    background: transparent;

    font: inherit;
    font-size: 13px;
    line-height: 1.35;
}

.detail-comment-submit {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;
    color: var(--accent);

    font-size: 20px;
    cursor: pointer;
}

.detail-comment-submit:disabled {
    opacity: 0.4;
    cursor: default;
}

@media (max-width: 760px) {

    .detail-comments {
        max-height: 220px;
    }

    .detail-social-actions {
        gap: 12px;
    }
}


/* ============================================================
   COMMENT REPLIES + LIKES
   ============================================================ */

.detail-comment-reply {
    margin-left: 22px;
    padding-left: 10px;

    border-left:
        2px solid rgba(0, 0, 0, 0.08);
}


.detail-comment-author.owner {
    color: var(--accent);
}


.detail-comment-reactions {
    display: flex;
    align-items: center;
    gap: 4px;

    margin-top: 4px;

    color: var(--text-secondary);
    font-size: 12px;
}


.detail-comment-like {
    appearance: none;

    padding: 0;
    border: 0;

    background: transparent;
    color: inherit;

    font-size: 16px;
    line-height: 1;

    cursor: pointer;
}


.detail-comment-like:hover {
    color: var(--accent);
}


/* ============================================================
   FOOTER SUBSCRIPTION
   ============================================================ */

.site-footer {
    display: block;
}


.footer-subscription {
    max-width: 520px;

    margin: 0 auto 24px;

    text-align: center;
}


.subscription-title {
    margin-bottom: 9px;

    color: var(--text);

    font-size: 14px;
    font-weight: 600;
}


.subscription-form {
    display: flex;

    max-width: 460px;

    margin: 0 auto;

    gap: 7px;
}


.subscription-form input {
    flex: 1;

    min-width: 0;
    min-height: 40px;

    padding: 8px 11px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    background: #fff;

    font: inherit;
    font-size: 13px;
}


.subscription-form button {
    flex: 0 0 auto;

    min-height: 40px;

    padding: 8px 14px;

    border: 0;
    border-radius: 7px;

    background: var(--text);
    color: #fff;

    font: inherit;
    font-size: 13px;

    cursor: pointer;
}


.subscription-form button:disabled {
    opacity: 0.55;
    cursor: default;
}


.subscription-note,
.subscription-status {
    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 11px;
    line-height: 1.4;
}


.subscription-status {
    min-height: 15px;

    color: var(--text);
}


.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


@media (max-width: 640px) {

    .subscription-form {
        width: 100%;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }
}


/* ============================================================
   HOME BRAND STORY
   ============================================================ */

.brand-story {
    max-width: 860px;
    margin: 24px auto 0;
}

.brand-lead {
    max-width: 720px;
    margin: 0 auto 22px;

    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
}

.brand-facts {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 1px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--border);
}

.brand-facts > div {
    min-height: 94px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 14px;

    background: var(--surface);
    color: var(--text);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}


@media (max-width: 860px) {

    .brand-facts {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .brand-facts > div:last-child {
        grid-column: 1 / -1;
    }
}


@media (max-width: 520px) {

    .brand-story {
        margin-top: 19px;
    }

    .brand-lead {
        margin-bottom: 16px;

        font-size: 14px;
        line-height: 1.55;
    }

    .brand-facts {
        grid-template-columns: 1fr;
    }

    .brand-facts > div,
    .brand-facts > div:last-child {
        min-height: auto;
        grid-column: auto;

        padding: 13px 14px;

        font-size: 12px;
    }
}


/* ============================================================
   DETAIL RESPONSIVE LAYOUT V2

   Desktop:
   - fixed viewport-sized gallery
   - media remains visible
   - content column scrolls independently

   Mobile:
   - one continuous page scroll
   - no nested scrolling in comments or content
   ============================================================ */


/* ------------------------------------------------------------
   DESKTOP
   ------------------------------------------------------------ */

@media (min-width: 761px) {

    .object-detail {
        padding: 24px;
    }


    .object-detail-panel {
        width: min(
            calc(100vw - 48px),
            1180px
        );

        height: min(
            calc(100dvh - 48px),
            900px
        );

        max-height: none;

        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(360px, 0.9fr);

        overflow: hidden;
    }


    .object-detail-media {
        min-width: 0;
        min-height: 0;
        height: 100%;

        align-items: center;
        justify-content: center;
    }


    .detail-photo {
        width: 100%;
        height: 100%;
        min-height: 0;
    }


    .detail-photo img,
    .detail-photo video,
    .detail-video {
        display: block;

        width: 100%;
        height: 100%;
        max-height: 100%;

        object-fit: contain;
        object-position: center;
    }


    .object-detail-content {
        min-width: 0;
        height: 100%;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;
        scrollbar-gutter: stable;

        padding:
            34px
            30px
            42px;
    }
}


/* ------------------------------------------------------------
   MOBILE / TABLET

   The only vertical scroll container is .object-detail.
   Everything inside participates in one normal document flow.
   ------------------------------------------------------------ */

@media (max-width: 760px) {

    .object-detail {
        display: block;

        padding: 0;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
    }


    .object-detail-backdrop {
        position: fixed;
    }


    .object-detail-panel {
        width: 100%;

        height: auto;
        min-height: 100dvh;
        max-height: none;

        display: block;

        overflow: visible;

        border-radius: 0;
    }


    .object-detail-media {
        width: 100%;
        height: auto;
        min-height: 0;

        display: block;

        overflow: hidden;
    }


    .detail-photo {
        width: 100%;
        height: auto;
        min-height: 0;

        display: block;
    }


    .detail-photo img,
    .detail-photo video,
    .detail-video {
        display: block;

        width: 100%;
        height: auto;
        max-height: none;

        object-fit: contain;
        object-position: top center;
    }


    .object-detail-content {
        width: auto;
        height: auto;

        overflow: visible;

        padding:
            22px
            18px
            calc(
                34px +
                env(safe-area-inset-bottom)
            );
    }


    .detail-comments {
        min-height: 0;
        max-height: none;

        overflow: visible;
    }


    .detail-comment {
        overflow: visible;
    }


    .detail-description {
        overflow: visible;
    }


    /*
     * Keep the close button available while scrolling,
     * without creating another scroll container.
     */
    .object-detail-close {
        position: fixed;

        top:
            max(
                10px,
                env(safe-area-inset-top)
            );

        right: 12px;
    }
}


/* ------------------------------------------------------------
   SMALL PHONES
   ------------------------------------------------------------ */

@media (max-width: 420px) {

    .object-detail-content {
        padding-left: 16px;
        padding-right: 16px;
    }


    .object-detail-content h2 {
        font-size: 21px;
        line-height: 1.25;
    }


    .detail-description {
        font-size: 15px;
        line-height: 1.55;
    }
}


/* ============================================================
   CATALOG FILTER PANEL
   ============================================================ */

body.catalog-filter-panel-open {
    overflow: hidden;
}

.catalog-filter-panel {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.catalog-filter-panel[hidden] {
    display: none;
}

.catalog-filter-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.42);
}

.catalog-filter-sheet {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;

    width: min(420px, 92vw);

    padding: 22px;

    overflow-y: auto;

    background: #fff;
    box-shadow:
        -10px 0 30px rgba(0, 0, 0, 0.16);
}

.catalog-filter-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-bottom: 18px;
}

.catalog-filter-sheet-header h2 {
    margin: 0;
    font-size: 22px;
}

.catalog-filter-close {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: #fff;
    color: var(--text);

    font: inherit;
    font-size: 25px;
    line-height: 1;

    cursor: pointer;
}

.catalog-filter-content {
    flex: 1;
    min-height: 1px;
}


@media (max-width: 640px) {

    .catalog-filter-panel {
        display: flex;
        align-items: flex-end;
    }

    .catalog-filter-sheet {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        max-height: min(82vh, 680px);

        padding: 18px 16px 24px;

        border-radius: 18px 18px 0 0;

        box-shadow:
            0 -10px 30px rgba(0, 0, 0, 0.16);
    }

    .catalog-filter-sheet-header {
        margin-bottom: 12px;
    }

    .catalog-filter-sheet-header h2 {
        font-size: 20px;
    }
}


/* ============================================================
   WORKING CATALOG FILTERS
   ============================================================ */

.catalog-dynamic-filter-group {
    min-width: 0;
    margin: 0 0 18px;
    padding: 0 0 16px;

    border: 0;
    border-bottom: 1px solid var(--border);
}

.catalog-dynamic-filter-group > legend {
    margin-bottom: 10px;
    padding: 0;

    font-size: 15px;
    font-weight: 700;
}

.catalog-dynamic-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-dynamic-filter-option {
    cursor: pointer;
}

.catalog-dynamic-filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-dynamic-filter-option span {
    display: inline-flex;
    align-items: center;

    min-height: 34px;
    padding: 6px 12px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;

    font-size: 14px;
}

.catalog-dynamic-filter-option input:checked + span {
    border-color: var(--text);
    background: var(--text);
    color: #fff;
}

.catalog-dynamic-filter-option input:focus-visible + span {
    outline: 2px solid var(--text);
    outline-offset: 2px;
}

.catalog-dynamic-filter-actions {
    position: sticky;
    bottom: -1px;

    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;

    margin-top: auto;
    padding-top: 14px;

    background: #fff;
}

.catalog-dynamic-filter-reset,
.catalog-dynamic-filter-apply {
    min-height: 44px;
    padding: 9px 16px;

    border-radius: 22px;

    font: inherit;
    font-weight: 600;

    cursor: pointer;
}

.catalog-dynamic-filter-reset {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
}

.catalog-dynamic-filter-apply {
    border: 1px solid var(--text);
    background: var(--text);
    color: #fff;
}


/* ============================================================
   CATALOG FILTER OPTION COUNTS
   ============================================================ */

.catalog-dynamic-filter-option > span {
    gap: 7px;
}

.catalogFilterOptionCount {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 20px;
    height: 20px;
    padding: 0 6px;

    border-radius: 10px;

    background: rgba(0, 0, 0, 0.07);

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

.catalog-dynamic-filter-option
input:checked + span
.catalogFilterOptionCount {
    background: rgba(255, 255, 255, 0.2);
}


/* ============================================================
   FILTER CHIP NESTED SPAN FIX
   ============================================================ */

/*
 * Only the direct span after the hidden input is the chip.
 * Nested spans for label and count must not receive chip styling.
 */
.catalog-dynamic-filter-option > input + span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-height: 34px;
    padding: 6px 12px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;
    color: var(--text);

    font-size: 14px;
    line-height: 1.2;
}

.catalog-dynamic-filter-option
> input:checked
+ span {
    border-color: var(--text);
    background: var(--text);
    color: #fff;
}

.catalog-dynamic-filter-option
> input:focus-visible
+ span {
    outline: 2px solid var(--text);
    outline-offset: 2px;
}

/*
 * Neutralize the old broad ".catalog-dynamic-filter-option span"
 * styling for the nested name element.
 */
.catalog-dynamic-filter-option-name {
    display: inline !important;

    min-height: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: inherit !important;

    font: inherit !important;
    line-height: inherit !important;
}

.catalog-dynamic-filter-option
> input:checked
+ span
.catalog-dynamic-filter-option-name {
    background: transparent !important;
    color: inherit !important;
}


@media (max-width: 640px) {

    .catalog-dynamic-filter-option
    > input
    + span {
        min-height: 32px;
        padding: 6px 11px;
        font-size: 13px;
    }
}


/* ============================================================
   FILTER ZERO RESULTS
   ============================================================ */

.catalog-dynamic-filter-apply:disabled,
.catalog-dynamic-filter-apply.is-empty {
    cursor: not-allowed;
    opacity: 0.48;
}

.catalog-dynamic-filter-apply:disabled:hover {
    background: var(--text);
    color: #fff;
}


/* ============================================================
   COLLAPSIBLE FILTER GROUPS
   ============================================================ */

.catalog-dynamic-filter-group > legend {
    width: 100%;
    margin: 0;
}

.catalog-filter-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    width: 100%;
    min-height: 44px;
    padding: 0;

    border: 0;

    background: transparent;
    color: var(--text);

    font: inherit;
    text-align: left;

    cursor: pointer;
}

.catalog-filter-group-title {
    min-width: 0;

    font-size: 15px;
    font-weight: 700;
}

.catalog-filter-group-status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.catalog-filter-group-selected-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 24px;
    height: 24px;
    padding: 0 7px;

    border-radius: 12px;

    background: var(--text);
    color: #fff;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.catalog-filter-group-selected-count[hidden] {
    display: none;
}

.catalog-filter-group-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.catalog-dynamic-filter-group
.catalog-dynamic-filter-options {
    margin-top: 8px;
}

.catalog-dynamic-filter-group.is-collapsed {
    padding-bottom: 8px;
}

.catalog-dynamic-filter-group.is-expanded {
    padding-bottom: 16px;
}

.catalog-filter-group-toggle:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 4px;
    border-radius: 4px;
}


@media (max-width: 640px) {

    .catalog-filter-group-toggle {
        min-height: 42px;
    }

    .catalog-filter-group-title {
        font-size: 15px;
    }
}


/* ============================================================
   CATALOG CARD PERSONAL LIKE
   ============================================================ */

.catalog-card-like-button {
    position: absolute;
    z-index: 4;
    top: 10px;
    right: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 0;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.42);
    color: #ffffff;

    font-size: 27px;
    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transition:
        transform 120ms ease,
        background-color 120ms ease,
        color 120ms ease;
}

.catalog-card-like-button:hover {
    transform: scale(1.06);
    background: rgba(0, 0, 0, 0.58);
}

.catalog-card-like-button:active {
    transform: scale(0.94);
}

.catalog-card-like-button.active {
    color: #e53935;
    background: rgba(255, 255, 255, 0.92);
}

.catalog-card-like-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}


@media (max-width: 640px) {

    .catalog-card-like-button {
        top: 5px;
        right: 5px;

        width: 31px;
        height: 31px;

        font-size: 22px;
    }
}


/* ============================================================
   DETAIL PERSONAL LIKE STATUS
   ============================================================ */

/*
 * Outline heart:
 * this visitor has not added the model to favourites.
 */
#detail-like .detail-action-icon {
    color: currentColor;
    transition:
        color 120ms ease,
        transform 120ms ease;
}


/*
 * Red filled heart:
 * this visitor has added the model to favourites.
 */
#detail-like.active .detail-action-icon {
    color: #e21d2f;
}


/*
 * The number is the public aggregate like count.
 * It must not inherit the red personal-status colour.
 */
#detail-like .detail-action-text {
    color: currentColor;
    font-variant-numeric: tabular-nums;
}


#detail-like:hover .detail-action-icon {
    transform: scale(1.08);
}


#detail-like:active .detail-action-icon {
    transform: scale(0.94);
}


/* ============================================================
   DETAIL SOCIAL COUNTERS
   ============================================================ */

.detail-social-actions {
    flex-wrap: wrap;
}

.detail-social-button {
    width: auto;
    min-width: 34px;

    gap: 5px;

    font-variant-numeric: tabular-nums;
}

.detail-social-count {
    min-width: 9px;

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}

/*
 * Personal status is red only on the heart.
 * The aggregate counter remains neutral.
 */
#detail-like.active .detail-social-count {
    color: var(--text-secondary);
}

/*
 * The old detached like summary no longer exists.
 */
.detail-like-summary {
    display: none;
}


@media (max-width: 760px) {

    .detail-social-actions {
        gap: 13px;
    }

    .detail-social-button {
        gap: 4px;
    }

    .detail-social-count {
        font-size: 12px;
    }
}


/* ============================================================
   LUXURY VISUAL PASS V1.1
   Warm palette, stronger contrast, compact first screen
   ============================================================ */

:root {
    --background: #f7f3ed;
    --surface: #fffdfa;
    --text: #17130f;
    --text-secondary: #4d4740;
    --border: #d8cec2;
    --accent: #8f2130;
}


/* ------------------------------------------------------------
   Global readability
   ------------------------------------------------------------ */

body {
    background: var(--background);
    color: var(--text);
}

button,
input,
textarea,
select {
    color: var(--text);
}

.intro p,
.language-selector button,
.catalog-placeholder,
.loading,
.error-message,
.empty-message,
.site-footer,
.subscription-note,
.subscription-status {
    color: var(--text-secondary);
}


/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */

.site-header {
    background: rgba(255, 253, 250, 0.97);
    border-bottom-color: var(--border);
}

.header-inner {
    min-height: 60px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.brand-logo {
    height: 46px;
    max-width: 165px;
}

.language-selector button {
    padding: 6px 5px;
}


/* ------------------------------------------------------------
   Intro: less unused vertical space
   ------------------------------------------------------------ */

.intro {
    padding: 18px 16px 12px;
}

.intro h1 {
    margin-bottom: 5px;
    color: var(--text);
    font-size: 27px;
    line-height: 1.15;
    font-weight: 650;
}

.intro p {
    font-size: 14px;
    line-height: 1.4;
}


/* ------------------------------------------------------------
   Brand story: compact, readable
   ------------------------------------------------------------ */

.brand-story {
    margin-top: 14px;
}

.brand-lead {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.brand-facts {
    border-color: var(--border);
    background: var(--border);
}

.brand-facts > div {
    min-height: 72px;
    padding: 12px 10px;

    background: var(--surface);
    color: var(--text);

    font-size: 12px;
    line-height: 1.35;
}


/* ------------------------------------------------------------
   Catalog toolbar
   ------------------------------------------------------------ */

.catalog-filter {
    margin-top: 14px;
    margin-bottom: 14px;
}

.catalog-filter-button {
    color: var(--text);
    border-color: var(--border);
    background: var(--surface);
}

.catalog-filter-button.active {
    background: var(--text);
    color: #ffffff;
    border-color: var(--text);
}


/* ------------------------------------------------------------
   Catalog cards
   ------------------------------------------------------------ */

.catalog-card {
    background: #eae3da;
}

.catalog-image {
    transition: transform 280ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .catalog-card:hover .catalog-image {
        transform: scale(1.018);
    }
}


/* ------------------------------------------------------------
   Footer and subscription
   ------------------------------------------------------------ */

.site-footer {
    margin-top: 26px;
    padding-top: 18px;
    padding-bottom: 24px;
    color: var(--text-secondary);
    border-top-color: var(--border);
}

.footer-subscription {
    padding-top: 16px;
    padding-bottom: 16px;
}


/* ------------------------------------------------------------
   Mobile
   ------------------------------------------------------------ */

@media (max-width: 640px) {

    .header-inner {
        min-height: 52px;
        padding: 4px 8px;
    }

    .brand-logo {
        height: 40px;
        max-width: 130px;
    }

    .language-selector button {
        padding: 5px 3px;
        font-size: 10px;
    }

    .intro {
        padding: 12px 12px 8px;
    }

    .intro h1 {
        margin-bottom: 4px;
        font-size: 21px;
        line-height: 1.12;
    }

    .intro p {
        font-size: 13px;
        line-height: 1.3;
    }

    .brand-story {
        margin-top: 9px;
    }

    .brand-lead {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.4;
    }

    .brand-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-facts > div,
    .brand-facts > div:last-child {
        min-height: 54px;
        grid-column: auto;
        padding: 8px 7px;
        font-size: 11px;
        line-height: 1.25;
    }

    .brand-facts > div:last-child {
        grid-column: 1 / -1;
    }

    .catalog-filter {
        margin-top: 10px;
        margin-bottom: 9px;
    }

    .site-footer {
        margin-top: 20px;
        padding-top: 14px;
        padding-bottom: 20px;
    }
}


/* ============================================================
   LUXURY VISUAL PASS V1.2
   Larger brand, unified surfaces, compact premium layout
   ============================================================ */


/* ------------------------------------------------------------
   Unified warm surfaces and stronger readability
   ------------------------------------------------------------ */

:root {
    --background: #f7f3ed;
    --surface: #fdfaf5;
    --surface-strong: #fffdf9;
    --text: #15120f;
    --text-secondary: #453f39;
    --border: #cfc4b7;
    --accent: #8f2130;
}

body {
    background: var(--background);
    color: var(--text);
}

.site-header,
.catalog-filter-button,
.brand-facts > div,
.subscription-form input,
.subscription-form button,
.catalog-filter-sheet,
.object-detail-content {
    background-color: var(--surface);
}


/* ------------------------------------------------------------
   Brand header
   Larger logo without wasting vertical space
   ------------------------------------------------------------ */

.header-inner {
    min-height: 66px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.brand-logo {
    width: auto;
    height: 59px;
    max-width: 220px;
}

.language-selector button {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

.language-selector button:hover,
.language-selector button.active {
    color: var(--accent);
}


/* ------------------------------------------------------------
   More premium and readable title area
   ------------------------------------------------------------ */

.intro {
    padding-top: 12px;
    padding-bottom: 8px;
}

.intro h1 {
    margin-bottom: 4px;

    color: var(--text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.intro > p {
    color: #352f2a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}


/* ------------------------------------------------------------
   Brand story and facts
   Compact, but still readable
   ------------------------------------------------------------ */

.brand-story {
    margin-top: 9px;
}

.brand-lead {
    max-width: 780px;
    margin-bottom: 8px;

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.brand-facts {
    border-color: var(--border);
    border-radius: 5px;
    background: var(--border);
}

.brand-facts > div {
    min-height: 58px;
    padding: 8px 10px;

    color: var(--text);

    font-size: 12px;
    font-weight: 650;
    line-height: 1.3;
}


/* ------------------------------------------------------------
   Catalog toolbar
   ------------------------------------------------------------ */

.catalog-filter {
    margin-top: 10px;
    margin-bottom: 10px;
}

.catalog-filter-button {
    min-height: 34px;

    padding-top: 6px;
    padding-bottom: 6px;

    border-color: var(--border);

    color: var(--text);
    font-weight: 650;
}

.catalog-filter-button.active {
    border-color: var(--text);
    background: var(--text);
    color: #ffffff;
}


/* ------------------------------------------------------------
   Catalog remains visually dominant
   ------------------------------------------------------------ */

.catalog {
    gap: 2px;
}

.catalog-card {
    background: #e9e0d6;
}

.catalog-title {
    font-weight: 700;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.55);
}


/* ------------------------------------------------------------
   Subscription and footer
   ------------------------------------------------------------ */

.footer-subscription {
    padding-top: 10px;
    padding-bottom: 8px;
}

.subscription-title {
    color: var(--text);
    font-weight: 700;
}

.subscription-form input {
    border-color: var(--border);
    color: var(--text);
}

.subscription-form input::placeholder {
    color: #625a52;
    opacity: 1;
}

.subscription-form button {
    border-color: var(--text);
    background: var(--text);
    color: #ffffff;
    font-weight: 650;
}

.subscription-note,
.subscription-status {
    color: var(--text-secondary);
}

.site-footer {
    margin-top: 16px;
    padding-top: 12px;
    padding-bottom: 16px;

    color: var(--text-secondary);
}

.site-footer a {
    color: var(--text-secondary);
}

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


/* ------------------------------------------------------------
   Detail panel readability
   ------------------------------------------------------------ */

.detail-description,
.detail-comment,
.detail-comment-name,
.detail-comment-compose textarea {
    color: var(--text);
}

.detail-comments-heading,
.detail-share-status,
.detail-comments-empty {
    color: var(--text-secondary);
}


/* ------------------------------------------------------------
   Mobile
   ------------------------------------------------------------ */

@media (max-width: 640px) {

    .header-inner {
        min-height: 58px;
        padding: 2px 7px;
    }

    .brand-logo {
        height: 52px;
        max-width: 185px;
    }

    .language-selector button {
        padding: 5px 3px;
        font-size: 10px;
    }

    .intro {
        padding:
            8px
            10px
            6px;
    }

    .intro h1 {
        margin-bottom: 3px;
        font-size: 23px;
        line-height: 1.05;
    }

    .intro > p {
        font-size: 13px;
        line-height: 1.25;
    }

    .brand-story {
        margin-top: 6px;
    }

    .brand-lead {
        margin-bottom: 6px;

        font-size: 12px;
        line-height: 1.3;
    }

    .brand-facts {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .brand-facts > div,
    .brand-facts > div:last-child {
        min-height: 46px;
        grid-column: auto;

        padding: 6px 7px;

        font-size: 10.5px;
        line-height: 1.2;
    }

    .brand-facts > div:last-child {
        grid-column: 1 / -1;
    }

    .catalog-filter {
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .catalog-filter-button {
        min-height: 32px;
        padding: 5px 9px;
    }

    .footer-subscription {
        padding-top: 8px;
        padding-bottom: 6px;
    }

    .site-footer {
        margin-top: 12px;
        padding-top: 10px;
        padding-bottom: 14px;
    }
}



/* ============================================================
   LUXURY STRUCTURE PASS V1.3
   Collection first, atelier story after the catalog
   ============================================================ */


/* ------------------------------------------------------------
   Compact introduction
   ------------------------------------------------------------ */

.intro {
    padding:
        14px
        16px
        8px;
}

.intro h1 {
    margin-bottom: 5px;
}

.intro > p {
    margin: 0;
}


/* The filter now follows the short introduction directly. */

.catalog-filter {
    margin-top: 10px;
}


/* ------------------------------------------------------------
   Atelier story below the collection
   ------------------------------------------------------------ */

.atelier-story-bottom {
    max-width: var(--max-width);

    margin:
        30px
        auto
        0;

    padding:
        26px
        16px
        4px;

    border-top:
        1px solid var(--border);

    text-align: center;
}

.atelier-story-bottom .brand-story {
    max-width: 860px;
    margin: 0 auto;
}

.atelier-story-bottom .brand-lead {
    max-width: 720px;

    margin:
        0
        auto
        18px;

    color: var(--text);

    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.atelier-story-bottom .brand-facts {
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
}

.atelier-story-bottom .brand-facts > div {
    min-height: 68px;

    padding:
        11px
        10px;

    background:
        var(--surface);

    color:
        var(--text);

    font-size: 12px;
    font-weight: 650;
    line-height: 1.3;
}


/* ------------------------------------------------------------
   Footer follows the atelier story without excessive space
   ------------------------------------------------------------ */

.atelier-story-bottom + .site-footer {
    margin-top: 14px;
}


/* ------------------------------------------------------------
   Mobile
   ------------------------------------------------------------ */

@media (max-width: 640px) {

    .intro {
        padding:
            10px
            12px
            6px;
    }

    .intro h1 {
        margin-bottom: 4px;

        font-size: 23px;
        line-height: 1.06;
    }

    .intro > p {
        font-size: 13px;
        line-height: 1.3;
    }

    .catalog-filter {
        margin-top: 7px;
    }

    .atelier-story-bottom {
        margin-top: 22px;

        padding:
            22px
            14px
            2px;
    }

    .atelier-story-bottom .brand-lead {
        margin-bottom: 14px;

        font-size: 14px;
        line-height: 1.45;
    }

    .atelier-story-bottom .brand-facts {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .atelier-story-bottom .brand-facts > div,
    .atelier-story-bottom .brand-facts > div:last-child {
        min-height: 58px;
        grid-column: auto;

        padding:
            9px
            8px;

        font-size: 11px;
        line-height: 1.25;
    }

    .atelier-story-bottom .brand-facts > div:last-child {
        grid-column: 1 / -1;
    }

    .atelier-story-bottom + .site-footer {
        margin-top: 10px;
    }
}



/* ============================================================
   DETAIL DESCRIPTION SEPARATOR
   Separate product specifications from the long description
   ============================================================ */

.detail-description {
    display: block;

    margin-top: 18px;
    padding-top: 16px;

    border-top:
        1px solid var(--border);

    color: var(--text);
    line-height: 1.55;
}

@media (max-width: 760px) {
    .detail-description {
        margin-top: 16px;
        padding-top: 14px;
    }
}



/* ============================================================
   MOBILE HERO FIX
   Only the poetic title on small screens
   ============================================================ */

@media (max-width: 640px) {

    .intro {
        padding:
            8px
            10px
            6px;
    }

    .intro h1 {
        width: 100%;
        max-width: none;

        margin: 0 auto;

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: 19px;
        font-style: italic;
        font-weight: 400;
        line-height: 1.15;
        letter-spacing: 0;

        color: #b08a57;

        white-space: nowrap;
        text-align: center;
    }

    .intro > p {
        display: none;
    }

    .catalog-filter {
        margin-top: 8px;
    }
}



/* ============================================================
   MOBILE CATALOG — TWO DRESSES PER ROW
   Normal vertical catalog grid
   ============================================================ */

@media (max-width: 640px) {

    .catalog {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-auto-flow: row;
        grid-auto-columns: auto;

        gap: 2px;
        padding: 0;

        overflow: visible;

        scroll-snap-type: none;
        scroll-behavior: auto;

        overscroll-behavior-x: auto;

        scrollbar-width: auto;
        -ms-overflow-style: auto;
    }


    .catalog-card {
        width: auto;
        min-width: 0;

        aspect-ratio: 3 / 4;

        scroll-snap-align: none;
        scroll-snap-stop: normal;

        border-radius: 0;
        overflow: hidden;
    }


    .catalog-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    .catalog-overlay {
        display: block;
    }
}


/* ============================================================
   GOLD POETIC TITLE
   Only the main phrase
   ============================================================ */

.intro h1 {
    font-family:
        "Cormorant Garamond",
        Georgia,
        "Times New Roman",
        serif !important;

    font-style: italic;
    font-weight: 400;

    font-size: clamp(28px, 2.3vw, 42px);
    line-height: 1.08;
    letter-spacing: 0;

    color: #b08a57;

    text-align: center;
    margin: 0 auto;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65),
        0 2px 8px rgba(176, 138, 87, 0.10);
}

.intro > p {
    display: none;
}

@media (max-width: 640px) {
    .intro h1 {
        font-size: 21px;
        line-height: 1.12;
        white-space: normal;
    }
}


@media (max-width: 640px) {
    .intro h1 {
        font-size: 18px;
        white-space: nowrap;
        max-width: none;
        width: 100%;
    }
}



/* ============================================================
   FINAL POETIC TITLE
   ============================================================ */

#page-title {
    width: 100% !important;
    max-width: none !important;

    margin: 0 auto !important;

    color: #b08a57 !important;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif !important;

    font-size: clamp(27px, 2.2vw, 38px) !important;
    font-style: italic !important;
    font-weight: 300 !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;

    text-align: center !important;
    white-space: nowrap !important;
}

#page-subtitle:empty {
    display: none !important;
}

@media (max-width: 640px) {

    #page-title {
        font-size: 17px !important;
        line-height: 1.05 !important;
        white-space: nowrap !important;
    }
}


/* ============================================================
   PUBLIC COMMENTS — COMPACT INLINE V2
   ============================================================ */

.detail-comment {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.28;
}

.detail-comment-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 3px;
    min-width: 0;
}

.detail-comment-author {
    display: inline;
    margin: 0;
    font-size: inherit;
    font-weight: 650;
    white-space: nowrap;
}

.detail-comment-author.owner {
    color: var(--accent);
}

.detail-comment-language {
    color: var(--text-secondary);
    font-size: 11px;
    white-space: nowrap;
}

.detail-comment-body {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.detail-comment-like {
    appearance: none;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
}

.detail-comment-like-count {
    flex: 0 0 auto;
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1;
}

.detail-comment-reply {
    margin: 0 0 4px 12px;
    padding: 0;
    border: 0;
}

.detail-comment-reply-mark {
    flex: 0 0 auto;
    color: var(--text-secondary);
}

.detail-comment-reactions {
    display: none;
}
