.colecciones-section {
    position: relative;
    padding: 64px 20px 70px;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(216, 182, 109, 0.13) 0%,
            rgba(216, 182, 109, 0) 45%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(147, 102, 71, 0.14) 0%,
            rgba(147, 102, 71, 0) 35%
        ),
        linear-gradient(180deg, #f8f3ed 0%, #f4ecdf 100%);
}

.colecciones-inner {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.colecciones-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}

.colecciones-kicker {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #9a724f;
}

.colecciones-header h2 {
    margin: 0.55rem 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: #3f2b21;
}

.colecciones-header p {
    margin: 0.9rem 0 0;
    font-family: "Lato", sans-serif;
    font-size: 1.07rem;
    line-height: 1.58;
    color: #5a4638;
}

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

.coleccion-card {
    position: relative;
    grid-column: span 3;
    min-height: clamp(185px, 22vw, 258px);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: #3f2b21;
    border: 1px solid rgba(86, 59, 42, 0.18);
    box-shadow: 0 16px 30px rgba(51, 35, 24, 0.12);
    transform: translateY(20px);
    opacity: 0;
    transition:
        transform 0.45s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        opacity 0.45s ease;
}

.coleccion-card.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.coleccion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.coleccion-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(25, 14, 11, 0.18) 0%,
        rgba(25, 14, 11, 0.15) 38%,
        rgba(25, 14, 11, 0.75) 100%
    );
}

.coleccion-card__name {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 1.32rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #fff9f2;
    text-shadow: none;
}

.coleccion-card__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.95px;
    text-transform: uppercase;
    background: rgba(216, 182, 109, 0.92);
    color: #372318;
}

.coleccion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(216, 182, 109, 0.25) 48%,
        rgba(216, 182, 109, 0.35) 52%,
        transparent 70%
    );
    background-size: 300% 100%;
    background-position: 100% 0;
    pointer-events: none;
    z-index: 3;
    transition: background-position 0.7s ease;
    opacity: 0;
}

.coleccion-card:hover,
.coleccion-card:focus-visible {
    transform: translateY(-6px);
    box-shadow:
        0 22px 36px rgba(51, 35, 24, 0.2),
        0 0 0 1px rgba(216, 182, 109, 0.3);
    border-color: rgba(216, 182, 109, 0.56);
}

.coleccion-card:hover::after,
.coleccion-card:focus-visible::after {
    opacity: 1;
    background-position: 0 0;
}

.coleccion-card:hover img,
.coleccion-card:focus-visible img {
    transform: scale(1.08);
}

.coleccion-card:focus-visible {
    outline: 2px solid #d8b66d;
    outline-offset: 2px;
}

.coleccion-card--signature {
    border-color: rgba(216, 182, 109, 0.46);
}

/* ── Badge Signature animado ── */
.coleccion-card__tag {
    animation: badge-pop 0.5s ease 0.3s both;
}

@keyframes badge-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── Contador de productos ── */
.coleccion-card__count {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: #f0e6d4;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.coleccion-card__count i {
    font-size: 0.6rem;
    opacity: 0.8;
}

@media (max-width: 1080px) {
    .coleccion-card {
        grid-column: span 4;
    }
}

@media (max-width: 760px) {
    .colecciones-section {
        padding-top: 54px;
        padding-bottom: 56px;
    }

    .colecciones-header {
        margin-bottom: 24px;
    }

    .colecciones-header p {
        font-size: 1rem;
    }

    .coleccion-card {
        grid-column: span 6;
        min-height: 198px;
    }

    .coleccion-card__name {
        font-size: 1.2rem;
    }
}

@media (max-width: 540px) {
    .colecciones-grid {
        gap: 12px;
    }

    .coleccion-card {
        grid-column: span 12;
        min-height: 214px;
        border-radius: 14px;
    }

    .coleccion-card__name {
        font-size: 1.15rem;
        bottom: 12px;
    }
}

:root {
    --cm-overlay: rgba(23, 16, 11, 0.62);
    --cm-panel-bg: #eee5d7;
    --cm-surface: #f7f1e6;
    --cm-surface-strong: #ffffff;
    --cm-line: #dbc8a9;
    --cm-ink: #2a211a;
    --cm-muted: #6c6255;
    --cm-gold: #b88f3c;
    --cm-accent: #1f6f78;
    --cm-danger: #8e3f35;
}

body.is-modal-open {
    overflow: hidden;
}

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

.cm-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    padding: 0.5rem;
}

.cm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: var(--cm-overlay);
    backdrop-filter: blur(2px);
}

.cm-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 1rem));
    max-height: calc(100vh - 1rem);
    border: 1px solid rgba(129, 98, 57, 0.42);
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 4% 8%,
            rgba(184, 143, 60, 0.12) 0%,
            rgba(184, 143, 60, 0) 42%
        ),
        radial-gradient(
            circle at 94% 6%,
            rgba(31, 111, 120, 0.14) 0%,
            rgba(31, 111, 120, 0) 44%
        ),
        var(--cm-panel-bg);
    box-shadow: 0 24px 58px rgba(23, 16, 11, 0.42);
    animation: cm-modal-in 0.24s ease;
}

.cm-modal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.72rem 0.86rem;
    border-bottom: 1px solid rgba(129, 98, 57, 0.26);
    background: rgba(245, 237, 224, 0.86);
    backdrop-filter: blur(3px);
}

.cm-modal__crumb {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #6a4d22;
    text-transform: uppercase;
}

.cm-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dfcba8;
    background: #f8f0df;
    color: #6c5223;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cm-icon-btn:hover {
    filter: brightness(0.98);
}

.cm-modal__content {
    max-height: calc(100vh - 60px);
    overflow: auto;
    padding: 0.86rem;
}

.cm-view {
    display: grid;
    gap: 0.82rem;
}

.cm-status {
    margin: 0;
    padding: 0.7rem 0.82rem;
    border-radius: 12px;
    border: 1px dashed #dcc8a3;
    background: #fbf3e5;
    color: #6c5223;
    font-size: 0.84rem;
    line-height: 1.5;
}

.cm-status.is-info {
    border-color: #c4dce0;
    background: #eaf6f8;
    color: #265f66;
}

.cm-status.is-danger {
    border-color: #efc8c3;
    background: #faece9;
    color: var(--cm-danger);
}

.cm-hero {
    position: relative;
    min-height: 286px;
    border-radius: 20px;
    border: 1px solid #d7c39d;
    overflow: hidden;
    background: #e7d6be;
    box-shadow: 0 14px 30px rgba(47, 33, 16, 0.2);
}

.cm-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cm-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(18, 12, 8, 0.26) 10%,
        rgba(18, 12, 8, 0.62) 66%,
        rgba(18, 12, 8, 0.82) 100%
    );
}

.cm-hero__body {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 720px;
    padding: 1rem;
}

.cm-kicker {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    font-weight: 800;
    color: #f5deb2;
}

.cm-hero__body h3 {
    margin: 0.32rem 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3.3vw, 2.9rem);
}

.cm-hero__body p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 249, 238, 0.94);
}

.cm-hero__meta {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.46rem;
}

.cm-hero__meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
    padding: 0.3rem 0.62rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.cm-products-head,
.cm-product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.cm-products-head h4,
.cm-product-head h4 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: var(--cm-ink);
}

.cm-products-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.75rem;
}

.cm-product-item {
    grid-column: span 3;
    border-radius: 16px;
    border: 1px solid #e1d2ba;
    background: var(--cm-surface-strong);
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(45, 31, 12, 0.11);
}

.cm-product-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.cm-product-item__body {
    padding: 0.72rem;
    display: grid;
    gap: 0.32rem;
}

.cm-product-item__body h5 {
    margin: 0;
    font-size: 0.96rem;
    color: #2b241c;
}

.cm-product-item__price {
    margin: 0;
    color: #6e5629;
    font-size: 0.8rem;
    font-weight: 800;
}

.cm-product-item__desc {
    margin: 0;
    color: var(--cm-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.cm-btn,
.cm-mini-btn,
.cm-link-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.4rem 0.76rem;
    text-decoration: none;
    cursor: pointer;
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
}

.cm-btn--ghost {
    background: #f6ebd8;
    border-color: #e2cfad;
    color: #6d5426;
}

.cm-mini-btn {
    background: linear-gradient(135deg, var(--cm-accent) 0%, #1a5f67 100%);
    border-color: #1a5c64;
    color: #fff;
    justify-self: start;
}

.cm-link-btn {
    background: #fff;
    border-color: #dfccb1;
    color: #624b21;
}

.cm-btn:hover,
.cm-mini-btn:hover,
.cm-link-btn:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
}

.cm-btn[disabled],
.cm-mini-btn[disabled],
.cm-link-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.cm-product-main {
    display: grid;
    grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
    gap: 0.86rem;
}

.cm-product-media {
    margin: 0;
    border-radius: 20px;
    border: 1px solid #d9c8ac;
    overflow: hidden;
    background: #eadbc4;
    box-shadow: 0 14px 30px rgba(45, 31, 12, 0.16);
}

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

.cm-product-card {
    border-radius: 20px;
    border: 1px solid var(--cm-line);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(2px);
    padding: 1rem;
}

.cm-product-kicker {
    margin: 0;
    font-size: 0.73rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    color: #7d6030;
}

.cm-product-card h3 {
    margin: 0.28rem 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: #231d17;
}

.cm-product-price {
    margin: 0;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f6ecd9;
    border: 1px solid #e4d1ab;
    color: #6e5120;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 0.3rem 0.72rem;
}

.cm-product-description {
    margin: 0.76rem 0 0;
    line-height: 1.64;
    color: #5d5548;
}

.cm-product-meta {
    margin: 0.84rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.44rem;
}

.cm-chip {
    border-radius: 999px;
    border: 1px solid #ddceb5;
    background: #fcf7ee;
    color: #594824;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.24rem 0.56rem;
}

.cm-chip-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-right: 0.34rem;
    vertical-align: middle;
}

.cm-product-actions {
    margin-top: 0.94rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.cm-gallery,
.cm-related {
    border: 1px solid var(--cm-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.82rem;
}

.cm-section-head {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 0.56rem;
}

.cm-section-head h4 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.15rem, 2.1vw, 1.65rem);
}

.cm-section-head p {
    margin: 0;
    color: var(--cm-muted);
    font-size: 0.8rem;
}

.cm-thumb-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, 172px);
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.12rem;
}

.cm-thumb-item {
    border: 1px solid #dfceb3;
    border-radius: 14px;
    background: #fff;
    color: #33291d;
    padding: 0;
    display: grid;
    cursor: pointer;
    text-align: left;
}

.cm-thumb-item img {
    width: 100%;
    height: 102px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    display: block;
}

.cm-thumb-item span {
    display: block;
    padding: 0.4rem 0.46rem 0.48rem;
    font-size: 0.77rem;
    font-weight: 700;
    line-height: 1.35;
}

.cm-thumb-item.is-active {
    border-color: #2294a0;
    box-shadow: 0 0 0 2px rgba(31, 111, 120, 0.14);
}

.cm-related-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.7rem;
}

.cm-related-card {
    grid-column: span 3;
    border: 1px solid #e0d2bb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.cm-related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.cm-related-card__body {
    padding: 0.66rem;
    display: grid;
    gap: 0.28rem;
}

.cm-related-card__body h5 {
    margin: 0;
    font-size: 0.85rem;
    color: #2c241d;
}

.cm-related-card__body p {
    margin: 0;
    font-size: 0.76rem;
    color: #6d592f;
    font-weight: 700;
}

.cm-empty {
    margin: 0;
    border: 1px dashed #d6c29f;
    border-radius: 12px;
    background: #fbf4e8;
    color: #6f5529;
    padding: 0.74rem;
    font-size: 0.83rem;
    line-height: 1.45;
}

@keyframes cm-modal-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.995);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1080px) {
    .cm-product-item,
    .cm-related-card {
        grid-column: span 4;
    }
}

@media (max-width: 880px) {
    .cm-modal__dialog {
        width: min(1180px, calc(100vw - 0.6rem));
        max-height: calc(100vh - 0.6rem);
    }

    .cm-modal__content {
        padding: 0.7rem;
    }

    .cm-product-main {
        grid-template-columns: 1fr;
    }

    .cm-product-media img {
        min-height: 270px;
    }

    .cm-product-item,
    .cm-related-card {
        grid-column: span 6;
    }
}

@media (max-width: 580px) {
    .cm-modal {
        padding: 0.2rem;
    }

    .cm-modal__dialog {
        border-radius: 16px;
        width: calc(100vw - 0.4rem);
        max-height: calc(100vh - 0.4rem);
    }

    .cm-modal__bar,
    .cm-modal__content {
        padding: 0.58rem;
    }

    .cm-hero {
        min-height: 234px;
    }

    .cm-hero__body {
        padding: 0.78rem;
    }

    .cm-product-item,
    .cm-related-card {
        grid-column: span 12;
    }

    .cm-thumb-row {
        grid-auto-columns: minmax(118px, 150px);
    }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL (antes en adm_colecciones)
   ═══════════════════════════════════════════════════════════════ */

.acm-product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 1rem;
    border: 1px solid #dcc9aa;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(45, 31, 12, 0.08);
}

.acm-product-detail[hidden] {
    display: none !important;
}

.acm-product-detail__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    background: #f0e8db;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

.acm-product-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Gallery Main */
.acm-gallery-main {
    position: relative;
    flex: 1;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    overflow: hidden;
}

.acm-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Navigation arrows */
.acm-gal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 0.25s ease,
        background 0.2s ease,
        transform 0.15s ease;
    backdrop-filter: blur(2px);
}

.acm-gallery-main:hover .acm-gal-nav,
.acm-gallery-main:focus-within .acm-gal-nav {
    opacity: 1;
}

.acm-gal-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.08);
}

.acm-gal-nav--prev {
    left: 12px;
}

.acm-gal-nav--next {
    right: 12px;
}

/* Image dots */
.acm-image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 5px;
}

.acm-dot {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition:
        background 0.25s ease,
        width 0.25s ease;
}

.acm-dot.is-active {
    background: #d8b66d;
    width: 32px;
}

/* Thumb strip */
.acm-thumb-strip {
    display: flex;
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.06);
    scrollbar-width: thin;
}

.acm-thumb-item {
    flex: 0 0 56px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: #e8dccb;
    transition: border-color 0.2s ease;
}

.acm-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.acm-thumb-item.is-active {
    border-color: #d8b66d;
}

/* Product detail info */
.acm-product-detail__info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.acm-product-detail__category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9a7d5a;
}

.acm-product-detail__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: #2a1f18;
    line-height: 1.1;
}

.acm-product-detail__price {
    margin: 0.35rem 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #8a6a3a;
}

.pm-price--old {
    text-decoration: line-through;
    color: #bba58a;
    font-weight: 600;
    margin-right: 0.3rem;
}

.pm-price--discount {
    color: #c0392b;
}

.acm-product-detail__desc {
    margin: 0.5rem 0 0;
    color: #5c4f42;
    line-height: 1.6;
    font-size: 0.92rem;
}

.acm-product-detail__meta {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* ── Product Info Section (pis) ── */
.pis-section {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e8dccb;
}

.pis-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9a7d5a;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pis-title i {
    color: #c59347;
    font-size: 0.85em;
}

.pis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.pis-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pis-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #9a8470;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pis-label i {
    font-size: 0.75rem;
    color: #c59347;
    width: 14px;
    text-align: center;
}

.pis-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: #473426;
}

.pis-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 1px;
}

.pis-color-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c4a38;
    background: #f7f0e6;
    border: 1px solid #e1d0b8;
    border-radius: 6px;
    padding: 2px 8px 2px 4px;
}

.pis-color-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

/* ── Responsive product detail ── */
@media (max-width: 880px) {
    .acm-product-detail {
        grid-template-columns: 1fr;
    }

    .acm-product-detail__media {
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 4 / 5;
    }

    .acm-gallery-main {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 540px) {
    .acm-product-detail__media {
        min-height: 240px;
    }

    .acm-product-detail__info {
        padding: 0.7rem;
    }

    .acm-product-detail__title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .acm-product-detail__price {
        font-size: 1rem;
    }

    .pis-grid {
        grid-template-columns: 1fr;
    }

    .acm-thumb-strip {
        padding: 4px;
    }

    .acm-thumb-item {
        flex: 0 0 44px;
        height: 44px;
    }
}

@media (max-width: 400px) {
    .acm-gallery-main img {
        min-height: 200px;
    }

    .acm-gal-nav {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .acm-image-dots {
        bottom: 8px;
    }

    .acm-dot {
        width: 16px;
        height: 3px;
    }

    .acm-dot.is-active {
        width: 24px;
    }
}
