/* ========================================================
   assets/css/details.css — Product Detail Experience
   ======================================================== */

/* 1. ROOT CONTAINER & RESPONSIVE VIEWPORT GUARDS */
.product-experience-root {
    width: 100%;
    background-color: var(--bg-main, #fffafc);
    color: var(--text-main, #2d2629);
    font-family: 'Poppins', -apple-system, sans-serif;
    display: block;
    position: relative;
}

.layout-desktop-viewport {
    display: none !important;
}
.layout-mobile-viewport {
    display: block !important;
    padding-bottom: 95px;
}

@media (min-width: 992px) {
    .layout-desktop-viewport {
        display: block !important;
    }
    .layout-mobile-viewport {
        display: none !important;
        padding-bottom: 0 !important;
    }
}

/* 2. 404 NOT FOUND STATE */
.not-found-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 5%;
    font-family: 'Poppins', sans-serif;
}
.not-found-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff5f8;
    border: 1px solid rgba(244, 166, 193, 0.35);
    color: var(--brand-primary, #f4a6c1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.not-found-title { 
    font-family: 'Playfair Display', Georgia, serif; 
    font-size: 2.2rem; 
    color: #2d2629; 
    margin: 0 0 0.5rem; 
    font-weight: 500;
}
.not-found-subtitle { 
    color: #8c7b84; 
    margin: 0 0 2rem; 
    font-size: 0.95rem; 
    max-width: 440px; 
    line-height: 1.55; 
}

/* 3. IN-PAGE BUYER REVIEW INVITE BOX */
.buyer-review-invite-section { 
    max-width: 1120px; 
    margin: 2.5rem auto 1rem; 
    padding: 0 4%; 
    box-sizing: border-box;
}
.buyer-review-invite-card { 
    background: #ffffff; 
    border: 1.5px solid rgba(244, 166, 193, 0.4); 
    border-radius: 28px; 
    padding: 2.2rem; 
    box-shadow: 0 10px 30px rgba(244, 166, 193, 0.1); 
}
.buyer-review-invite-card.success-card { 
    background: #f0fff4; 
    border-color: #c6f6d5; 
    padding: 1.5rem 2rem; 
}
.invite-header { 
    display: flex; 
    align-items: flex-start; 
    gap: 1.2rem; 
    margin-bottom: 1.5rem; 
}
.invite-icon { 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    background: #fff4f8; 
    border: 1px solid rgba(244, 166, 193, 0.4); 
    color: var(--brand-primary, #f4a6c1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    flex-shrink: 0; 
}
.invite-tag { 
    font-size: 0.72rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #276749; 
    background: #f0fff4; 
    padding: 0.2rem 0.65rem; 
    border-radius: 12px; 
    display: inline-block; 
    margin-bottom: 0.4rem; 
}
.invite-title { 
    font-family: 'Playfair Display', Georgia, serif; 
    font-size: 1.4rem; 
    color: var(--text-main, #2d2629); 
    margin: 0 0 0.3rem; 
    font-weight: 500;
}
.invite-desc { 
    font-size: 0.86rem; 
    color: #8c7b84; 
    margin: 0; 
    line-height: 1.5; 
}
.inpage-review-form { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}
.inpage-stars-wrap { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.inpage-stars-wrap label { 
    font-size: 0.82rem; 
    font-weight: 600; 
    color: var(--text-main, #2d2629); 
}
.inpage-star-picker { 
    display: flex; 
    gap: 6px; 
    font-size: 1.4rem; 
    cursor: pointer; 
    user-select: none;
}
.inpage-star-picker span { 
    color: #e2d9dd; 
    transition: color 0.2s ease, transform 0.15s ease; 
    display: inline-block;
}
.inpage-star-picker span:hover { 
    transform: scale(1.15); 
}
.inpage-star-picker span.selected { 
    color: #f6ad55; 
}
.inpage-textarea { 
    width: 100%; 
    min-height: 90px; 
    padding: 1rem; 
    border: 1.5px solid rgba(244, 166, 193, 0.35); 
    border-radius: 18px; 
    font-family: 'Poppins', sans-serif; 
    font-size: 0.88rem; 
    outline: none; 
    box-sizing: border-box; 
    transition: border-color 0.2s ease; 
}
.inpage-textarea:focus { 
    border-color: var(--brand-primary, #f4a6c1); 
}
.review-feedback-alert { 
    background: #fffaf0; 
    color: #c05621; 
    border: 1px solid #feebc8; 
    padding: 0.75rem 1.2rem; 
    border-radius: 14px; 
    font-size: 0.84rem; 
    margin-bottom: 1rem; 
}

/* 4. DESKTOP HERO STAGE */
.desktop-details-wrapper {
    width: 100%;
    background: var(--bg-main, #fffafc);
    font-family: 'Poppins', -apple-system, sans-serif;
}

.desktop-hero-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 85vh;
    border-bottom: 1px solid rgba(244, 166, 193, 0.22);
}

.desktop-visual-canvas {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #fdf2f6;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.desktop-canvas-nav {
    position: absolute;
    top: 1.8rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}
.desktop-canvas-nav > * {
    pointer-events: auto;
}

.desktop-back-btn {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 166, 193, 0.35);
    color: #2d2629;
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.desktop-back-btn:hover {
    transform: translateY(-2px);
    border-color: var(--brand-primary, #f4a6c1);
    box-shadow: 0 6px 18px rgba(244, 166, 193, 0.25);
}

.desktop-hero-sale-chip {
    background: linear-gradient(135deg, #f6b4cb 0%, #dfaec5 100%);
    color: #ffffff;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 14px rgba(246, 180, 203, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.chip-spark { font-size: 0.8rem; }

.desktop-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.desktop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.desktop-img-sold-out .desktop-img {
    filter: grayscale(0.85) opacity(0.75);
}

.desktop-canvas-sold-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(45, 38, 41, 0.88);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 5;
}

.desktop-img-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 82%, var(--bg-main, #fffafc) 100%);
    pointer-events: none;
}

.desktop-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-primary, #f4a6c1);
}

.desktop-sidebar-pane {
    display: flex;
    align-items: center;
    padding: 4.5rem 4rem 4.5rem 3.5rem;
    box-sizing: border-box;
}

.desktop-sidebar-inner {
    max-width: 480px;
    width: 100%;
    text-align: left;
}

.desktop-product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.3rem, 3.6vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.5px;
    color: #2d2629;
}

.desktop-pricing-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.3rem;
}

.desktop-sale-banner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0f5;
    border: 1px solid rgba(244, 166, 193, 0.45);
    color: #d1648a;
    padding: 0.32rem 0.85rem;
    border-radius: 9999px;
    width: fit-content;
    margin-bottom: 0.15rem;
}

.sale-star { color: #f4a6c1; font-size: 0.82rem; }
.sale-title { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2px; }

.sale-badge-pill {
    background: #f0fff4;
    color: #276749;
    border: 1px solid #c6f6d5;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 6px;
    margin-left: 2px;
}

.desktop-prices-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.desktop-price {
    font-size: 1.9rem;
    font-weight: 600;
    color: #2d2629;
    letter-spacing: -0.4px;
}
.desktop-price.sale-highlight { 
    color: #d1648a; 
}

.desktop-price-original {
    font-size: 1.15rem;
    font-weight: 400;
    color: #a89aa1;
    text-decoration: line-through;
}

.desktop-offer-expiry {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #b7791f;
    font-weight: 500;
    margin-top: 1px;
}

.desktop-description p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #63525b;
    margin: 0 0 0.85rem;
}

.desktop-category-row {
    margin-bottom: 1.35rem;
}

.desktop-category-text {
    font-size: 0.76rem;
    font-weight: 600;
    color: #ad8f9b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
}

.desktop-micro-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.micro-spec-card {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.28);
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.micro-spec-icon-orb {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #fffafc;
    border: 1px solid rgba(244, 166, 193, 0.35);
    color: #d1648a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.micro-spec-card strong { 
    display: block; 
    font-size: 0.8rem; 
    color: #2d2629; 
    line-height: 1.25; 
    font-weight: 600; 
}

.micro-spec-card span { 
    display: block; 
    font-size: 0.68rem; 
    color: #8c7b84; 
    margin-top: 2px; 
}

.desktop-guide-strip-row { margin-bottom: 1.3rem; }

.desktop-guide-pill-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fff6fa 100%);
    border: 1px solid rgba(244, 166, 193, 0.4);
    border-radius: 20px;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #5c4953;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(244, 166, 193, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.guide-btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-guide-pill-btn:hover {
    transform: translateY(-2px);
    border-color: var(--brand-primary, #f4a6c1);
    color: #d1648a;
    box-shadow: 0 6px 20px rgba(244, 166, 193, 0.22);
}

.guide-spark-dot { color: #d1648a; font-size: 0.9rem; }
.guide-arrow { color: #dca3d0; font-size: 1rem; transition: transform 0.2s ease; }
.desktop-guide-pill-btn:hover .guide-arrow { transform: translateX(3px); color: #d1648a; }

.desktop-qty-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.35);
    border-radius: 20px;
    padding: 0.5rem 0.95rem;
    margin-bottom: 1.1rem;
}

.qty-label {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8a7c83;
}

.desktop-qty-pill {
    display: inline-flex;
    align-items: center;
    background: #fffafc;
    border: 1px solid rgba(244, 166, 193, 0.4);
    border-radius: 30px;
    padding: 0.15rem 0.35rem;
}

.dock-qty-btn {
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #8a7c83;
    cursor: pointer;
}
.dock-qty-btn:disabled { color: #d6cbd0; cursor: not-allowed; }

.dock-qty-val {
    min-width: 28px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
}

.desktop-actions-dock {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.desktop-add-btn {
    flex: 1;
    padding: 0.95rem 1.4rem !important;
    justify-content: space-between !important;
    border-radius: 9999px !important;
}

.desktop-wish-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(244, 166, 193, 0.4);
    color: #ad8f9b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.desktop-wish-btn svg { width: 19px; height: 19px; }
.desktop-wish-btn:hover {
    transform: translateY(-2px);
    border-color: var(--brand-primary, #f4a6c1);
    color: var(--brand-primary, #f4a6c1);
}
.desktop-wish-btn.active {
    color: #f4a6c1;
    background: #fff0f5;
}
.desktop-wish-btn.active svg {
    fill: #f4a6c1;
    stroke: #f4a6c1;
}

.desktop-concierge-row { text-align: left; }

.desktop-concierge-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 500;
    color: #8a7c83;
    text-decoration: none;
    transition: color 0.2s ease;
}
.desktop-concierge-link:hover { color: var(--brand-primary, #f4a6c1); }

.desktop-craft-section {
    padding: 4.5rem 6%;
    border-bottom: 1px solid rgba(244, 166, 193, 0.22);
}

.desktop-craft-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.8rem;
}

.craft-block { flex: 1; text-align: left; }
.craft-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #dca3d0;
    margin-bottom: 0.45rem;
    display: block;
}
.craft-block h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #2d2629;
    font-weight: 500;
    margin: 0 0 0.45rem;
}
.craft-block p {
    font-size: 0.84rem;
    color: #7d6b75;
    line-height: 1.62;
    margin: 0;
}
.craft-divider {
    width: 1px;
    height: 90px;
    background: rgba(244, 166, 193, 0.35);
    align-self: center;
}

/* 5. MOBILE HERO & SEAMLESS FLOW */
.mobile-bespoke-stage {
    width: 100%;
    background-color: var(--bg-main, #fffafc);
    font-family: 'Poppins', -apple-system, sans-serif;
    color: var(--text-main, #2d2629);
    padding-bottom: 95px;
    margin: 0;
    overflow-x: hidden;
}

.m-hero-viewport {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 380px;
    background: #fdf2f6;
}

.m-hero-nav {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    right: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.m-nav-pill {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #2d2629;
    padding: 0.45rem 0.95rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    cursor: pointer;
}

.m-hero-sale-chip {
    background: linear-gradient(135deg, #f6b4cb 0%, #dfaec5 100%);
    color: #ffffff;
    padding: 0.42rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 14px rgba(246, 180, 203, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.m-chip-spark { font-size: 0.74rem; }

.m-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.m-main-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.m-img-sold-out .m-main-product-img {
    filter: grayscale(0.85) opacity(0.75);
}

.m-canvas-sold-badge {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(45, 38, 41, 0.88);
    color: #ffffff;
    padding: 0.75rem 1.6rem;
    border-radius: 9999px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 5;
}

.m-placeholder-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--brand-primary, #f4a6c1);
}

.m-seamless-blend {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-main, #fffafc) 0%, rgba(255, 250, 252, 0.75) 55%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.m-seamless-content {
    position: relative;
    background: transparent;
    margin-top: -65px;
    padding: 0 1.25rem 1.5rem;
    z-index: 3;
    text-align: left;
}

.m-product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 7.8vw, 2.7rem);
    font-weight: 400;
    color: #2d2629;
    line-height: 1.15;
    margin: 0 0 0.85rem 0;
    letter-spacing: -0.5px;
    text-align: left;
}

.m-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 1.2rem;
    text-align: left;
}

.m-sale-banner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0f5;
    border: 1px solid rgba(244, 166, 193, 0.45);
    color: #d1648a;
    padding: 0.28rem 0.8rem;
    border-radius: 9999px;
    margin-bottom: 0.15rem;
}

.m-sale-star { color: #f4a6c1; font-size: 0.8rem; }
.m-sale-title { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2px; }

.m-sale-badge-pill {
    background: #f0fff4;
    color: #276749;
    border: 1px solid #c6f6d5;
    font-size: 0.66rem;
    font-weight: 700;
    padding: 0.08rem 0.42rem;
    border-radius: 6px;
    margin-left: 2px;
}

.m-prices-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.m-price-val {
    font-size: 1.85rem;
    font-weight: 600;
    color: #2d2629;
    letter-spacing: -0.3px;
}
.m-price-val.sale-highlight { 
    color: #d1648a; 
}

.m-price-original {
    font-size: 1.1rem;
    font-weight: 400;
    color: #a89aa1;
    text-decoration: line-through;
}

.m-offer-expiry {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    color: #b7791f;
    font-weight: 500;
    margin-top: 2px;
}

.m-narrative-box p {
    font-size: 0.88rem;
    line-height: 1.68;
    color: #63525b;
    margin: 0 0 0.85rem;
    text-align: left;
}

.m-category-row {
    margin-bottom: 1.3rem;
    text-align: left;
}

.m-category-text {
    font-size: 0.74rem;
    font-weight: 600;
    color: #ad8f9b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
}

.m-perks-microgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.m-perk-cell {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.28);
    border-radius: 16px;
    padding: 0.85rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 4px 14px rgba(244, 166, 193, 0.06);
}

.m-perk-icon-orb {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fffafc;
    border: 1px solid rgba(244, 166, 193, 0.35);
    color: #d1648a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-perk-info strong { 
    display: block; 
    font-size: 0.76rem; 
    color: #2d2629; 
    font-weight: 600; 
    line-height: 1.2; 
}

.m-perk-info span { 
    display: block; 
    font-size: 0.66rem; 
    color: #8c7b84; 
    margin-top: 1px; 
}

.m-guide-strip-container { margin-bottom: 1.3rem; }

.m-guide-action-pill {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fff6fa 100%);
    border: 1.5px solid rgba(244, 166, 193, 0.45);
    border-radius: 18px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5c4953;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(244, 166, 193, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.m-guide-action-pill:active {
    transform: scale(0.98);
    border-color: #d1648a;
}

.m-guide-pill-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.m-guide-spark { color: #d1648a; font-size: 0.95rem; }
.m-guide-arrow { color: #dca3d0; font-size: 1rem; }

.m-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.3rem;
    text-align: left;
}

.m-accordion-item {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.28);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.m-accordion-item[open] { border-color: var(--brand-primary, #f4a6c1); }

.m-accordion-summary {
    padding: 0.85rem 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #2d2629;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.m-accordion-summary::-webkit-details-marker { display: none; }

.m-plus-icon {
    font-size: 1.05rem;
    color: #e48db5;
    transition: transform 0.25s ease;
}
.m-accordion-item[open] .m-plus-icon { transform: rotate(45deg); }

.m-accordion-content {
    padding: 0 1rem 0.85rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #7d6b75;
}
.m-accordion-content p { margin: 0; }

.m-concierge-strip { margin-bottom: 0; }
.m-concierge-btn {
    background: #fdf5f8;
    border: 1px solid rgba(244, 166, 193, 0.35);
    border-radius: 16px;
    padding: 0.8rem 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5c4953;
    font-size: 0.74rem;
    font-weight: 500;
    transition: background 0.2s ease;
}
.m-concierge-btn:hover { background: #fcebf2; }
.m-concierge-btn .m-arrow { color: #e48db5; font-size: 0.95rem; }

/* FIXED BOTTOM BUY DOCK */
.bespoke-mobile-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(244, 166, 193, 0.3);
    padding: 0.7rem 4% max(0.8rem, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    z-index: 999;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
}

.mobile-dock-qty-pill {
    display: inline-flex;
    align-items: center;
    background: #fffafc;
    border: 1.5px solid rgba(244, 166, 193, 0.4);
    border-radius: 9999px;
    padding: 0.15rem 0.35rem;
}

.mobile-qty-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #8a7c83;
    cursor: pointer;
}
.mobile-qty-btn:disabled { color: #d6cbd0; cursor: not-allowed; }

.mobile-qty-val {
    min-width: 24px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
}

.mobile-dock-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
}

.mobile-wish-round {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fffafc;
    border: 1.5px solid rgba(244, 166, 193, 0.4);
    color: #ad8f9b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.mobile-wish-round svg { width: 18px; height: 18px; }
.mobile-wish-round.active {
    color: #f4a6c1;
    background: #fff0f5;
}
.mobile-wish-round.active svg {
    fill: #f4a6c1;
    stroke: #f4a6c1;
}

.mobile-buy-btn {
    flex: 1;
    max-width: 220px;
    padding: 0.85rem 1.1rem !important;
    font-size: 0.82rem !important;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.btn-sold-out {
    background: #f0e6eb !important;
    color: #a89ba2 !important;
    border: 1px solid rgba(244, 166, 193, 0.25) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    pointer-events: none !important;
    transform: none !important;
}

/* 6. STYLED PAIRINGS CURATION */
.related-curation-stage {
    position: relative;
    padding: 5rem 4% 3rem;
    max-width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.curation-header-wrap {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.curation-pieces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.curation-mosaic-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    min-width: 0;
}

.mosaic-visual-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.18;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(220, 163, 208, 0.08);
    border: 1px solid rgba(244, 166, 193, 0.28);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    margin-bottom: 0.75rem;
}

.curation-mosaic-card:hover .mosaic-visual-box {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(244, 166, 193, 0.22);
}

.mosaic-img-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.mosaic-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.curation-mosaic-card:hover .mosaic-hero-img {
    transform: scale(1.05);
}

.mosaic-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf5f7 0%, #faedf3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #f4a6c1;
}

.mosaic-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #ad8f9b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, color 0.2s ease;
}
.mosaic-wishlist-btn svg { width: 15px; height: 15px; }
.mosaic-wishlist-btn:hover {
    transform: scale(1.08);
    color: #f4a6c1;
}
.mosaic-wishlist-btn.active {
    color: #f4a6c1;
    background: #fff0f5;
}
.mosaic-wishlist-btn.active svg {
    fill: #f4a6c1;
    stroke: #f4a6c1;
}

.mosaic-quick-bag-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 166, 193, 0.35);
    color: #2d2629;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.55rem 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.curation-mosaic-card:hover .mosaic-quick-bag-btn {
    opacity: 1;
    transform: translateY(0);
}

.mosaic-quick-bag-btn:hover {
    background: var(--brand-primary, #f4a6c1);
    color: #ffffff;
    border-color: var(--brand-primary, #f4a6c1);
}

.mosaic-meta-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 0 0.15rem;
}

.mosaic-title-link {
    text-decoration: none;
    width: 100%;
}

.mosaic-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark, #2d2629);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}
.mosaic-title-link:hover .mosaic-card-title { color: #d1648a; }

.mosaic-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.mosaic-card-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d2629;
}
.mosaic-card-price.sale-highlight { color: #d1648a; }

.mosaic-card-orig-price {
    font-size: 0.75rem;
    font-weight: 400;
    color: #a89aa1;
    text-decoration: line-through;
}

@media (max-width: 991px) {
    .curation-pieces-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
    .mosaic-quick-bag-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .related-curation-stage {
        padding: 3.5rem 4% 2rem;
    }
    .curation-heading {
        font-size: 1.85rem;
    }
    .curation-header-wrap {
        margin-bottom: 1.8rem;
    }
    .mosaic-quick-bag-btn {
        padding: 0.45rem 0.6rem;
        font-size: 0.68rem;
    }
}

/* 7. REVIEWS & COMMUNITY FEEDBACK */
.atelier-reviews-section {
    width: 100%;
    background: #fffafc;
    padding: 4rem 4% 4.5rem;
    border-top: 1px solid rgba(244, 166, 193, 0.22);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark, #2d2629);
}

.reviews-inner-container {
    max-width: 1080px;
    margin: 0 auto;
}

.reviews-header-block {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    margin: 0;
    color: #2d2629;
}

.reviews-overview-card {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.32);
    border-radius: 24px;
    padding: 1.6rem 2.2rem;
    box-shadow: 0 10px 30px rgba(220, 163, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.score-display-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.big-score-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d1648a;
    line-height: 1;
}

.stars-visual {
    display: flex;
    gap: 2px;
    color: #f4d0df;
    font-size: 1.2rem;
}
.stars-visual .star.filled {
    color: #f6ad55;
}

.score-total-count {
    font-size: 0.8rem;
    color: #8c7b84;
    font-weight: 500;
    border-left: 1px solid rgba(244, 166, 193, 0.4);
    padding-left: 12px;
    margin-left: 4px;
}

.open-review-drawer-btn {
    padding: 0.75rem 1.5rem !important;
    border-radius: 30px !important;
    font-size: 0.82rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
}

.reviews-empty-single-card {
    background: #ffffff;
    border: 1.5px dashed rgba(244, 166, 193, 0.45);
    border-radius: 24px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 1.5rem;
    box-sizing: border-box;
}

.empty-star-badge {
    color: #f4a6c1;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
}

.reviews-empty-single-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: #2d2629;
    margin: 0 0 0.35rem;
    font-weight: 500;
}

.reviews-empty-single-card p {
    color: #8c7b84;
    font-size: 0.86rem;
    margin: 0 0 1.4rem;
    line-height: 1.5;
}

.empty-action-row {
    display: flex;
    justify-content: center;
}

.review-feedback-banner {
    padding: 0.85rem 1.2rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.review-feedback-banner.success {
    background: #f0fff4;
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #276749;
}
.review-feedback-banner.error {
    background: #fff2f4;
    border: 1px solid rgba(217, 83, 79, 0.3);
    color: #d9534f;
}

.review-form-drawer {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.35);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 14px 40px rgba(220, 163, 208, 0.12);
    margin-bottom: 2.5rem;
    animation: fadeIn 0.25s ease forwards;
}

.form-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(244, 166, 193, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 1.2rem;
}
.form-header-row h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}
.close-form-btn {
    background: #fffafc;
    border: 1px solid rgba(244, 166, 193, 0.3);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #8c7b84;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-rating-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.star-rating-selector label {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #7d6b75;
}
.star-radio-group {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}
.star-radio-group input { display: none; }
.star-radio-group label {
    font-size: 1.5rem;
    color: #f4d0df;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}
.star-radio-group label:hover,
.star-radio-group label:hover ~ label,
.star-radio-group input:checked ~ label {
    color: #f6ad55;
    transform: scale(1.1);
}

.form-group-field { margin-bottom: 1.2rem; }
.form-group-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #7d6b75;
    margin-bottom: 0.4rem;
}

.fairy-review-textarea {
    width: 100%;
    min-height: 95px;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid rgba(244, 166, 193, 0.35);
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    background: #fffcfd;
    color: #2d2629;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fairy-review-textarea:focus {
    border-color: var(--brand-primary, #f4a6c1);
    box-shadow: 0 4px 16px rgba(244, 166, 193, 0.18);
    background: #ffffff;
}

.submit-muse-note-btn {
    padding: 0.8rem 1.8rem !important;
    border-radius: 30px !important;
    font-size: 0.84rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer;
}

.reviews-stream-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.single-review-card {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.25);
    border-radius: 20px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 4px 16px rgba(244, 166, 193, 0.06);
}

.review-top-meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6b4cb 0%, #dfaec5 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.reviewer-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviewer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name-line {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.reviewer-name-line .name {
    font-size: 0.9rem;
    color: #2d2629;
    font-weight: 600;
}

.review-date {
    font-size: 0.74rem;
    color: #ad8f9b;
}

.review-card-stars {
    display: flex;
    gap: 2px;
    font-size: 0.95rem;
    color: #f4d0df;
}
.review-card-stars .star.filled {
    color: #f6ad55;
}

.review-comment-body p {
    margin: 0;
    font-size: 0.86rem;
    color: #5c4a54;
    line-height: 1.55;
}

.review-footer-badge {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .atelier-reviews-section {
        padding: 3rem 4% 3.5rem;
    }
    .reviews-overview-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1.2rem;
        gap: 1.1rem;
    }
    .score-display-box { 
        flex-direction: column; 
        gap: 6px; 
    }
    .score-total-count {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
    .single-review-card { 
        padding: 1.3rem 1.1rem; 
        border-radius: 18px; 
    }
    .review-top-meta { 
        flex-wrap: wrap; 
    }
}

/* 8. SIZING & CARE GUIDE MODAL */
.guide-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(45, 38, 41, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2147483645;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    font-family: 'Poppins', sans-serif;
}

.guide-modal-overlay.is-active,
.guide-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2147483646 !important;
}

.guide-modal-card {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.4);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    box-shadow: 0 16px 45px rgba(220, 163, 208, 0.22);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translate3d(0, 10px, 0) scale(0.98);
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.guide-modal-overlay.is-active .guide-modal-card,
.guide-modal-overlay.active .guide-modal-card {
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.guide-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.4rem 1.6rem 1rem;
    border-bottom: 1px solid rgba(244, 166, 193, 0.2);
}

.guide-modal-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #d1648a;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.guide-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: #2d2629;
    margin: 0;
}

.guide-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff5f8;
    border: 1px solid rgba(244, 166, 193, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c7b84;
    cursor: pointer;
    transition: all 0.18s ease;
    padding: 0;
}
.guide-close-btn:hover { background: #fae4ee; color: #d1648a; }

.guide-tab-bar {
    display: flex;
    background: #fffafc;
    border-bottom: 1px solid rgba(244, 166, 193, 0.25);
    padding: 0.5rem 1.6rem;
    gap: 8px;
}

.guide-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 0.45rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #8c7b84;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-tab-btn.active {
    background: #ffffff;
    border-color: rgba(244, 166, 193, 0.4);
    color: #d1648a;
    box-shadow: 0 2px 8px rgba(244, 166, 193, 0.12);
}

.guide-modal-body {
    padding: 1.4rem 1.6rem 1.8rem;
    overflow-y: auto;
    flex: 1;
    box-sizing: border-box;
}

.guide-pane {
    display: none;
    flex-direction: column;
    gap: 1.1rem;
}
.guide-pane.active { display: flex; }

.guide-callout-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8fa;
    border: 1px dashed rgba(244, 166, 193, 0.5);
    border-radius: 16px;
    padding: 0.85rem 1rem;
}
.callout-icon { color: #d1648a; font-size: 1rem; flex-shrink: 0; }
.callout-text strong { display: block; font-size: 0.82rem; color: #2d2629; }
.callout-text span { font-size: 0.75rem; color: #8c7b84; line-height: 1.4; }

.guide-table-wrap {
    border: 1px solid rgba(244, 166, 193, 0.25);
    border-radius: 14px;
    overflow: hidden;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    text-align: left;
}
.guide-table th {
    background: #fff5f8;
    padding: 0.65rem 0.9rem;
    font-weight: 600;
    color: #5c4953;
    border-bottom: 1px solid rgba(244, 166, 193, 0.25);
}
.guide-table td {
    padding: 0.65rem 0.9rem;
    color: #6a5861;
    border-bottom: 1px solid rgba(244, 166, 193, 0.15);
}
.guide-table tr:last-child td { border-bottom: none; }

.guide-notice-card {
    background: #fdf5f7;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-size: 0.76rem;
    color: #5c4953;
    line-height: 1.4;
}

.care-items-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.care-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fffafc;
    border: 1px solid rgba(244, 166, 193, 0.28);
    border-radius: 16px;
    padding: 0.85rem 1rem;
}
.care-icon { font-size: 1.1rem; flex-shrink: 0; }
.care-item strong { display: block; font-size: 0.82rem; color: #2d2629; margin-bottom: 2px; }
.care-item p { margin: 0; font-size: 0.75rem; color: #8c7b84; line-height: 1.4; }

@media (max-width: 650px) {
    .guide-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .guide-modal-card {
        border-radius: 24px 24px 0 0;
        max-height: 85vh;
        margin: 0;
        padding-bottom: env(safe-area-inset-bottom, 14px);
        transform: translate3d(0, 100%, 0) !important;
        transition: transform 0.28s cubic-bezier(0.32, 1, 0.23, 1) !important;
    }
    .guide-modal-overlay.is-active .guide-modal-card,
    .guide-modal-overlay.active .guide-modal-card {
        transform: translate3d(0, 0, 0) !important;
    }
}

/* =========================================================================
   PDP FULL RESOLUTION EXPAND IMAGE BUTTON (DESKTOP & MOBILE)
   ========================================================================= */
.pdp-expand-image-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 166, 193, 0.45);
    color: #2d2629;
    font-family: 'Poppins', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 0.55rem 1.1rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    z-index: 6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.pdp-expand-image-btn svg {
    color: #d1648a;
    transition: transform 0.2s ease;
}

.pdp-expand-image-btn:hover {
    background: #ffffff;
    color: var(--brand-dark, #d1648a);
    border-color: var(--brand-primary, #f4a6c1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 166, 193, 0.35);
}

.pdp-expand-image-btn:hover svg {
    transform: scale(1.1);
}

.m-pdp-expand-btn {
    position: absolute !important;
    bottom: 20px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 6 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
}

.m-pdp-expand-btn span {
    display: none !important;
}