:root {
    --bg: #f6fbf2;
    --soft: #eef8e7;
    --soft-green: #e4f4df;
    --card: #ffffff;
    --primary: #2f7d4b;
    --primary-dark: #1f5b36;
    --accent: #9bcf53;
    --orchid: #c96f9b;
    --text: #203126;
    --muted: #657267;
    --border: #dbead3;
    --shadow: 0 18px 45px rgba(35, 93, 56, 0.13);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at 10% 0%, rgba(218, 242, 199, .75), transparent 28%), radial-gradient(circle at 90% 10%, rgba(233, 247, 224, .9), transparent 34%), var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 251, 242, 0.90);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(47, 125, 75, 0.14);
}
.navbar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.brand strong { color: var(--primary); }
.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #e5f8df, #fff8e6);
    box-shadow: 0 8px 20px rgba(47, 125, 75, 0.16);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #304338;
    font-weight: 600;
}
.nav-links a { position: relative; }
.nav-links a:not(.login-link)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.login-link {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(47, 125, 75, 0.08);
}
.nav-toggle {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.hero-section { padding: 18px 18px 0; }
.hero-video-wrap {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #dbeed2, #f7fff3 45%, #f4dfeb);
    box-shadow: var(--shadow);
}
.hero-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.38), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(111,191,115,.35), transparent 26%),
        linear-gradient(135deg, #2f7d4b, #a9d18e 50%, #f0d6e4);
}
.hero-placeholder span { font-size: 5rem; animation: floatFlower 4s ease-in-out infinite; }
.hero-placeholder p { font-size: 1.1rem; font-weight: 700; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 62, 38, 0.74), rgba(25, 62, 38, 0.30), rgba(25, 62, 38, 0.12));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 150px 70px;
    color: #fff;
}
.eyebrow {
    margin: 0 0 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: .8rem;
    font-weight: 800;
}
.hero-content .eyebrow { color: #e8ffd9; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    margin-bottom: 18px;
    letter-spacing: -0.05em;
}
.hero-content p:not(.eyebrow) {
    font-size: 1.18rem;
    max-width: 620px;
    color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.primary-btn { background: var(--primary); color: #fff; box-shadow: 0 14px 28px rgba(47, 125, 75, 0.25); }
.secondary-btn { background: #fff; color: var(--primary-dark); box-shadow: 0 14px 28px rgba(43, 38, 48, 0.12); }
.card-btn { width: 100%; background: var(--primary); color: #fff; margin-top: 16px; }

.intro-band {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(70, 22, 48, 0.08);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 18px;
    align-items: center;
}
.intro-band h2 { margin-bottom: 8px; }
.intro-band p { color: var(--muted); margin: 0; }
.feature-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.feature-pills span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary-dark);
    font-weight: 700;
}
.feature-pills i { color: var(--accent); margin-right: 6px; }

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 88px 0;
}
.soft-section {
    width: 100%;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(180deg, rgba(246,251,242,.85), rgba(228,244,223,.75));
}
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 12px; }
.section-heading p:not(.eyebrow) { color: var(--muted); }

.flower-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.flower-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(35, 93, 56, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.flower-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: linear-gradient(135deg, #ffd26e, #ff9b6e);
    color: #5d3100;
    font-weight: 900;
    font-size: .75rem;
    padding: 7px 11px;
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(118, 67, 0, .16);
}
.flower-image {
    aspect-ratio: 1 / 0.82;
    background: linear-gradient(135deg, #effadc, #fff8e6);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.flower-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.flower-card:hover .flower-image img { transform: scale(1.07); }
.image-placeholder { font-size: 4rem; animation: floatFlower 4s ease-in-out infinite; }
.flower-body { padding: 20px; }
.rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f5a400;
    font-size: .95rem;
    margin-bottom: 8px;
}
.rating span { color: var(--muted); margin-left: 6px; font-weight: 700; }
.flower-body h3 { margin: 0 0 8px; font-size: 1.14rem; }
.flower-desc { color: var(--muted); font-size: .92rem; min-height: 88px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.old-price { color: var(--muted); text-decoration: line-through; font-size: .92rem; }
.discount {
    background: #ffe3e3;
    color: #b72323;
    font-weight: 900;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: .78rem;
}
.new-price { font-size: 1.35rem; font-weight: 900; color: var(--primary-dark); margin-top: 4px; }
.stock-status { color: #278a3e; font-size: .9rem; font-weight: 700; margin-top: 8px; }

.contact-icons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.contact-icons a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: 0 8px 18px rgba(47, 125, 75, 0.08);
    transition: transform .22s ease, color .22s ease;
}
.contact-icons a:hover { transform: translateY(-4px) rotate(-3deg); color: var(--accent); }
.big-icons { justify-content: center; }
.big-icons a { width: 58px; height: 58px; font-size: 1.35rem; }
.contact-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 80px;
    padding: 44px 20px;
    border-radius: 34px;
    text-align: center;
    background: linear-gradient(135deg, #fff, #eef8e7 55%, #fff8e6);
    box-shadow: var(--shadow);
}
.contact-strip p { color: var(--muted); }

.page-hero {
    margin: 18px;
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 34px;
    padding: 60px 20px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,.65), transparent 25%),
        linear-gradient(135deg, #eef8e7, #fff8e6);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: 10px; }
.page-hero p:not(.eyebrow) { max-width: 700px; color: var(--muted); margin: 0 auto; }
.academy-grid, .post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.academy-card, .post-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(35, 93, 56, 0.08);
}
.video-frame { aspect-ratio: 16 / 9; background: #111; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.academy-content, .post-content { padding: 22px; }
.academy-content p, .post-content p { color: var(--muted); }
.post-card img, .post-placeholder { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-placeholder {
    display: grid;
    place-items: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #eef8e7, #fff8e6);
}
.post-type {
    display: inline-flex;
    padding: 5px 11px;
    background: var(--soft-green);
    color: #28723b;
    font-size: .75rem;
    font-weight: 900;
    border-radius: 999px;
    margin-bottom: 12px;
}
.post-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.share-btn {
    border: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 10px 15px;
    font-weight: 800;
    cursor: pointer;
}
.small-link { color: var(--primary-dark); font-weight: 800; }
.center-action { text-align: center; margin-top: 30px; }
.empty-state {
    grid-column: 1 / -1;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    background: #fff;
    color: var(--muted);
    border: 1px dashed var(--border);
}

.site-footer {
    background: linear-gradient(135deg, #173b24, #1f5b36);
    color: #f7fff2;
    padding: 52px 18px 20px;
}
.footer-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
}
.site-footer p, .site-footer a { color: #dcebd8; }
.techon-link { color: #ffffff !important; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.techon-link:hover { color: #d8f6c9 !important; }
.footer-bottom {
    width: min(1180px, 100%);
    margin: 32px auto 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 18px;
    color: #c6dec1;
    text-align: center;
    font-size: .9rem;
}
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 20;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: none;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(47, 125, 75, 0.26);
}
.back-to-top.visible { display: grid; }

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }
@keyframes floatFlower {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

@media (max-width: 1100px) {
    .flower-grid { grid-template-columns: repeat(3, 1fr); }
    .academy-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: #fff;
        padding: 18px;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 10px; }
    .hero-video-wrap { min-height: 560px; border-radius: 26px; }
    .hero-content { padding: 110px 28px; }
    .intro-band { grid-template-columns: 1fr; }
    .feature-pills { justify-content: flex-start; }
    .flower-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .hero-section, .page-hero { margin: 0; padding: 12px; }
    .hero-video-wrap, .page-hero { border-radius: 22px; }
    .flower-grid, .academy-grid, .post-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .compact-post-grid { grid-template-columns: 1fr; }
    .flower-desc { min-height: auto; }
    .hero-actions .btn { width: 100%; }
}

/* v1.0.4 - Admin-managed CK Orchid logo and contact details */
.brand-logo-wrap {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(47, 125, 75, 0.14);
    overflow: hidden;
}
.brand-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.footer-brand-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.footer-brand-line img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 18px;
    background: #ffffff;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.28);
}
.footer-brand-line h3 { margin: 0; }
.footer-location,
.contact-address {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--muted);
    font-weight: 700;
}
.contact-list {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}
.contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.contact-list i,
.footer-location i,
.contact-address i { color: #d8f6c9; }
.footer-socials { margin-top: 18px; }
@media (max-width: 560px) {
    .brand-logo-wrap { width: 44px; height: 44px; }
    .brand { font-size: 1.15rem; }
}

/* v1.0.5 - Products showcase, filters, multi-image slider, and 8-second hero rotation support */
.product-filter-panel {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 24px;
    margin: 0 auto 30px;
    box-shadow: 0 16px 36px rgba(35, 93, 56, 0.09);
}
.product-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}
.product-filter-header h3 { margin: 0 0 6px; }
.product-filter-header p { margin: 0; color: var(--muted); }
.product-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.product-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    padding: 11px 14px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #ffffff, #f4fbef);
    border-radius: 999px;
    font-weight: 800;
    color: var(--primary-dark);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.product-filter-chip:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}
.product-filter-chip input {
    width: auto;
    accent-color: var(--primary);
}
.product-count {
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 800;
}
.product-card.hidden-by-filter { display: none; }
.green-badge {
    background: linear-gradient(135deg, #9bcf53, #2f7d4b);
    color: #fff;
}
.product-category-label {
    display: inline-flex;
    padding: 6px 11px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: var(--soft-green);
    color: var(--primary-dark);
    font-size: .74rem;
    font-weight: 900;
}
.product-image-slider {
    position: relative;
}
.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}
.slider-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .45s ease, transform .6s ease;
}
.slider-slide.active {
    opacity: 1;
    transform: scale(1);
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--primary-dark);
    background: rgba(255,255,255,.86);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}
.slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.62);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}
.slider-dot.active {
    width: 22px;
    border-radius: 999px;
    background: #fff;
}
.product-grid .image-placeholder i {
    color: var(--primary);
}
@media (max-width: 760px) {
    .product-filter-header { flex-direction: column; }
    .product-filter-clear { width: 100%; }
    .product-filter-chip { width: 100%; justify-content: flex-start; }
}

/* v1.0.8 - Clear showcase images, hover/tap descriptions, and flower/product detail pages */
.clear-product-image {
    min-height: 250px;
    aspect-ratio: 1 / 0.95;
    text-decoration: none;
    background: linear-gradient(135deg, #f7fff1, #ffffff 55%, #fff8ea);
}
.clear-product-image img,
.flower-image.clear-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    border-radius: 24px 24px 0 0;
    background: #fff;
}
.flower-card:hover .clear-product-image img {
    transform: scale(1.035);
}
.compact-card-body {
    position: relative;
}
.item-name-popover {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: help;
    outline: none;
    color: var(--primary-dark);
    border-bottom: 1px dashed rgba(47,125,75,.35);
}
.item-name-popover::after {
    content: "ⓘ";
    font-size: .78rem;
    color: var(--primary);
}
.desc-popover {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: min(270px, 82vw);
    z-index: 30;
    padding: 14px 15px;
    border-radius: 18px;
    color: #254232;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(35,93,56,.18);
    font-size: .88rem;
    line-height: 1.55;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(.98);
    transition: opacity .18s ease, transform .18s ease;
}
.desc-popover strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.item-name-popover:hover .desc-popover,
.item-name-popover:focus .desc-popover,
.item-name-popover:focus-within .desc-popover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.tap-hint {
    margin: 6px 0 14px;
    color: var(--muted);
    font-size: .78rem;
}
.card-actions-vertical {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.card-actions-vertical .card-btn,
.card-actions-vertical .details-btn {
    margin-top: 0;
    width: 100%;
    justify-content: center;
}
.details-btn {
    background: #ffffff;
    color: var(--primary-dark);
    border: 1px solid var(--border);
    box-shadow: 0 10px 18px rgba(47,125,75,.08);
}
.details-btn:hover {
    background: var(--soft-green);
    transform: translateY(-2px);
}
.detail-hero {
    padding: 34px max(16px, calc((100% - 1180px) / 2)) 70px;
    background: linear-gradient(180deg, #f7fff2, #fffdf5 64%, #eef8e7);
}
.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 30px;
    align-items: center;
    background: rgba(255,255,255,.84);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 22px;
    box-shadow: var(--shadow);
}
.detail-media {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf8de, #ffffff);
}
.detail-slider .slider-slide {
    object-fit: contain;
    padding: 14px;
    background: #fff;
}
.detail-placeholder {
    height: 100%;
    min-height: 520px;
    display: grid;
    place-items: center;
    font-size: 6rem;
    color: var(--primary);
}
.detail-info {
    padding: 18px;
}
.detail-info h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
    margin: 8px 0 14px;
    color: var(--primary-dark);
}
.detail-rating {
    font-size: 1.08rem;
    margin: 14px 0;
}
.detail-description {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}
.detail-price-card {
    display: grid;
    gap: 8px;
    margin: 22px 0;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f6fff0, #fff8e7);
    border: 1px solid var(--border);
}
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.detail-actions .btn {
    min-width: 180px;
    justify-content: center;
}
@media (max-width: 900px) {
    .detail-grid { grid-template-columns: 1fr; }
    .detail-media, .detail-placeholder { min-height: 390px; }
    .clear-product-image { min-height: 230px; }
}
@media (max-width: 520px) {
    .detail-hero { padding-top: 20px; }
    .detail-grid { padding: 12px; border-radius: 24px; }
    .detail-media, .detail-placeholder { min-height: 330px; }
    .detail-info { padding: 10px; }
    .desc-popover { left: auto; right: -20px; }
}

/* v1.0.9 - Products dropdown and restored visible descriptions */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 260px;
    z-index: 60;
    display: none;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: grid; gap: 4px; }
.nav-dropdown-menu a {
    padding: 10px 12px !important;
    border-radius: 12px;
    color: var(--primary-dark);
    white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--soft-green); }
.flower-body .flower-desc {
    display: block;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.65;
    min-height: 78px;
    margin: 0 0 14px;
}
.item-name-popover .desc-popover,
.tap-hint { display: none !important; }
.detail-media {
    display: grid;
    place-items: center;
}
.detail-slider .slider-track {
    position: absolute;
    inset: 0;
}
.detail-slider .slider-slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 860px) {
    .nav-dropdown { display: block; }
    .nav-dropdown-menu { position: static; display: grid; box-shadow: none; margin: 6px 0 0; background: #f8fff3; min-width: auto; }
}

/* v1.0.11/v1.0.15 - Customer cart and order placement */
.cart-link {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 10px 14px !important;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(35, 93, 56, .08);
}
.cart-count {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    padding: 0 6px;
}
.cart-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cart-outline-btn,
.buy-now-btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}
.cart-outline-btn {
    background: #fff;
    color: var(--primary-dark);
    border: 1px solid var(--border);
}
.cart-outline-btn:hover { background: #f2faed; transform: translateY(-2px); }
.buy-now-btn {
    background: linear-gradient(135deg, #ffa600, #ff8a00);
    color: #241600;
    border: 1px solid #ffb23a;
    box-shadow: 0 10px 22px rgba(255, 138, 0, .20);
}
.buy-now-btn:hover { transform: translateY(-2px); filter: brightness(.98); }
.order-placement-section {
    background: linear-gradient(135deg, #f5fff1, #fffdf4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.order-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    align-items: start;
}
.order-cart-panel,
.order-form-panel,
.success-card,
.order-summary-box {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 22px;
}
.order-cart-panel h3,
.order-form-panel h3 { margin-top: 0; color: var(--primary-dark); }
.order-cart-empty {
    padding: 16px;
    border-radius: 18px;
    background: #f7fff2;
    color: var(--muted);
    font-weight: 700;
}
.order-cart-table-wrap { overflow-x: auto; }
.order-cart-table { width: 100%; border-collapse: collapse; }
.order-cart-table th,
.order-cart-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.order-cart-table thead th,
.order-cart-table tfoot th { background: #eef8e8; color: var(--primary-dark); text-transform: uppercase; font-size: .78rem; letter-spacing: .05em; }
.public-cart-qty {
    width: 70px;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
}
.cart-remove {
    width: 34px;
    height: 34px;
    border: 1px solid #ffd8d8;
    border-radius: 10px;
    background: #fff3f3;
    color: #b72121;
    cursor: pointer;
}
.public-order-grid textarea { min-height: 88px; }
.map-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 14px 0;
}
.map-tools span { color: var(--muted); font-weight: 700; }
.order-map {
    width: 100%;
    height: 310px;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #eaf5e5;
}
.order-submit-btn { width: 100%; justify-content: center; }
.order-note {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
}
.order-success-section { min-height: 70vh; display: grid; place-items: center; }
.success-card { width: min(980px, 100%); text-align: center; }
.success-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #e8f8e7;
    color: var(--primary);
    font-size: 2.4rem;
}
.success-card .detail-actions { justify-content: center; }
.order-summary-box { margin: 20px 0; text-align: left; box-shadow: none; }
@media (max-width: 900px) {
    .order-layout { grid-template-columns: 1fr; }
    .cart-action-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .cart-link { width: 100%; justify-content: center; }
    .order-cart-panel, .order-form-panel, .success-card { padding: 16px; border-radius: 22px; }
    .order-map { height: 260px; }
}

/* v1.0.15 - Button sizing, completed customer order form, and 8-flower showcase limit */
.cart-action-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
}
.cart-outline-btn,
.buy-now-btn {
    min-width: 0;
    width: 100%;
    padding: 11px 8px;
    font-size: .82rem;
    line-height: 1.1;
    letter-spacing: -.01em;
    gap: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-outline-btn i,
.buy-now-btn i {
    flex: 0 0 auto;
}
.card-actions-vertical {
    gap: 9px;
}
.card-actions-vertical .details-btn {
    min-height: 46px;
}
.hidden-extra-flower {
    display: none !important;
}
#flowerShowcase.show-all-flowers .hidden-extra-flower {
    display: block !important;
}
.flower-more-action {
    margin-top: 28px;
}
.public-order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.public-order-grid .full {
    grid-column: 1 / -1;
}
.public-order-grid .form-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.public-order-grid label {
    color: var(--primary-dark);
    font-weight: 900;
    font-size: .9rem;
}
.public-order-grid input,
.public-order-grid textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    padding: 13px 14px;
    color: var(--text);
    font-size: .95rem;
    outline: none;
    box-shadow: 0 8px 20px rgba(35, 93, 56, .04);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.public-order-grid textarea {
    min-height: 108px;
    resize: vertical;
}
.public-order-grid input:focus,
.public-order-grid textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(47, 125, 75, .11);
    background: #fbfff8;
}
.public-order-grid input[readonly] {
    background: #f7fbf3;
    color: var(--muted);
}
.order-form-panel {
    overflow: hidden;
}
@media (max-width: 1100px) {
    .cart-outline-btn,
    .buy-now-btn {
        font-size: .78rem;
        padding: 10px 6px;
    }
}
@media (max-width: 760px) {
    .public-order-grid {
        grid-template-columns: 1fr;
    }
    .public-order-grid .full {
        grid-column: auto;
    }
    .cart-action-row {
        grid-template-columns: 1fr;
    }
    .cart-outline-btn,
    .buy-now-btn {
        font-size: .92rem;
        padding: 12px 10px;
    }
}


/* v1.0.23 - brand tagline and flower category/filter refinements */
.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}
.brand-text small,
.footer-tagline {
    display: block;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-top: 4px;
}
.nav-dropdown-menu a:first-child {
    border-bottom: 1px solid rgba(31, 109, 56, .12);
}
.active-filter-note {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ecf8e9;
    color: var(--primary-dark);
    font-weight: 800;
}
.active-filter-note a {
    color: var(--primary);
    text-decoration: underline;
}
.flower-category-panel {
    margin-bottom: 28px;
}
.product-filter-chip.active-chip {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.required-mark {
    color: #d92d20;
}
.optional-mark {
    color: var(--muted);
    font-weight: 700;
    font-size: .8rem;
}
.footer-brand-line > div h3 {
    margin-bottom: 0;
}
@media (max-width: 760px) {
    .brand-text small {
        font-size: .62rem;
    }
}

/* v1.0.23 - brand tagline and publication name refinements */
.brand-text { align-items: flex-start; }
.brand-text > span { display: block; line-height: 1; }
.brand-text small {
    display: block;
    margin-top: 6px;
    font-size: .78rem;
    letter-spacing: .02em;
    color: #2f7d4b;
    font-weight: 700;
    line-height: 1;
}
.publication-name {
    margin: -6px 0 10px;
    color: #2f7d4b;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.35;
}
.detail-publication-name {
    margin: -8px 0 14px;
    color: #2f7d4b;
    font-size: 1.05rem;
    font-weight: 800;
}
.nav-dropdown-menu {
    max-height: 78vh;
    overflow-y: auto;
}

/* v1.0.23 - corrected brand tagline placement and publication/variety display */
.brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 2px !important;
    line-height: 1.05 !important;
}
.brand-text .brand-name {
    display: block !important;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.brand-text .brand-tagline {
    display: block !important;
    margin-top: 1px !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    letter-spacing: .015em !important;
    line-height: 1.1 !important;
    white-space: nowrap;
}
.showcase-title-main {
    margin: 0 0 4px;
    color: #12251b;
    font-size: 1.14rem;
    font-weight: 850;
    line-height: 1.25;
}
.showcase-variety-ref {
    display: block;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
}
@media (max-width: 760px) {
    .brand-text .brand-name { font-size: 1.16rem; }
    .brand-text .brand-tagline { font-size: .64rem !important; }
}

/* v1.0.23 - Customer-friendly checkbox filters for flower and product showcase */
.attractive-filter-header h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
}
.attractive-filter-header h3 i {
    color: var(--primary);
}
.filter-action-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter-clear-btn {
    min-width: 138px;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(24, 83, 49, 0.08);
}
.checkbox-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.checkbox-filter-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top left, rgba(223, 247, 213, .95), transparent 48%),
        linear-gradient(135deg, #ffffff, #fbfff6);
    color: var(--primary-dark);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(29, 92, 53, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    overflow: hidden;
}
.checkbox-filter-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 18px 34px rgba(29, 92, 53, 0.14);
}
.checkbox-filter-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.checkbox-filter-card .filter-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: var(--soft-green);
    color: var(--primary);
    flex: 0 0 auto;
}
.checkbox-filter-card .filter-name {
    line-height: 1.25;
}
.checkbox-filter-card .check-icon {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: transparent;
    border: 1px solid var(--border);
    transform: scale(.92);
    transition: all .2s ease;
}
.checkbox-filter-card.is-selected,
.checkbox-filter-card.checked-from-url {
    border-color: var(--primary);
    background: linear-gradient(135deg, #e7f8db, #ffffff 56%, #fff8e6);
    box-shadow: 0 18px 38px rgba(38, 129, 75, 0.18);
}
.checkbox-filter-card.is-selected .check-icon,
.checkbox-filter-card.checked-from-url .check-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1);
}
.checkbox-filter-card.is-selected .filter-icon,
.checkbox-filter-card.checked-from-url .filter-icon {
    background: var(--primary);
    color: #fff;
}
.filter-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(237, 249, 229, .74);
    color: var(--primary-dark);
    font-weight: 800;
}
.filter-summary-row i { color: var(--primary); }
.flower-card.hidden-by-filter,
.product-card.hidden-by-filter {
    display: none !important;
}
.flower-grid.filter-mode-active .flower-extra.hidden-extra-flower {
    display: flex;
}
@media (max-width: 760px) {
    .checkbox-filter-grid {
        grid-template-columns: 1fr;
    }
    .filter-clear-btn {
        width: 100%;
    }
    .filter-summary-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* v1.0.26 - Mobile navigation scroll fix
   Fix: On small phones the expanded menu can be taller than the screen,
   especially when Flower and Product dropdowns are open. Keep the menu
   fixed below the header and allow vertical scrolling inside the menu. */
@media (max-width: 860px) {
    body.mobile-nav-open {
        overflow: hidden;
    }
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1500;
    }
    .navbar {
        min-height: 76px;
    }
    .nav-links {
        position: fixed !important;
        top: 82px !important;
        left: 16px !important;
        right: 16px !important;
        bottom: max(14px, env(safe-area-inset-bottom)) !important;
        max-height: calc(100dvh - 96px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 22px 18px 28px !important;
        border-radius: 22px !important;
        z-index: 1600;
    }
    .nav-links.open {
        display: flex !important;
    }
    .nav-links a,
    .nav-dropdown-toggle {
        min-height: 44px;
        display: flex !important;
        align-items: center;
    }
    .nav-dropdown-menu {
        position: static !important;
        display: grid !important;
        max-height: none !important;
        overflow: visible !important;
        width: 100%;
        margin: 8px 0 14px !important;
        padding: 12px !important;
        box-shadow: none !important;
        background: #f8fff3 !important;
    }
    .nav-dropdown-menu a {
        white-space: normal !important;
        line-height: 1.3;
        padding: 12px 14px !important;
    }
    .cart-link,
    .login-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .navbar {
        width: min(100% - 22px, 1180px);
    }
    .brand-logo-wrap {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }
    .brand-text .brand-name {
        font-size: 1.08rem !important;
    }
    .brand-text .brand-tagline {
        font-size: .62rem !important;
    }
    .nav-toggle {
        border-radius: 16px;
        padding: 12px;
    }
    .nav-links {
        top: 78px !important;
        left: 12px !important;
        right: 12px !important;
        max-height: calc(100dvh - 90px) !important;
    }
}


/* v1.0.26 - Mobile menu professional scroll/collapse fix
   The mobile menu is now a true fixed drawer below the header. Flower/Product
   lists are collapsed by default and each dropdown has its own scroll area, so
   all top-bar tabs remain visible on small phone screens. */
@media (max-width: 860px) {
    body.mobile-nav-open {
        overflow: hidden !important;
        touch-action: none;
    }
    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 5000 !important;
    }
    .navbar {
        min-height: 74px !important;
    }
    .nav-links {
        position: fixed !important;
        top: 74px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 74px) !important;
        height: calc(100dvh - 74px) !important;
        max-height: none !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior-y: contain !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        padding: 22px 24px calc(120px + env(safe-area-inset-bottom)) !important;
        border-radius: 0 0 28px 28px !important;
        background: rgba(255,255,255,.98) !important;
        border-top: 1px solid rgba(47,125,75,.12) !important;
        box-shadow: 0 25px 60px rgba(22, 65, 38, .20) !important;
        z-index: 6000 !important;
        transform: translateZ(0);
    }
    .nav-links.open {
        display: flex !important;
    }
    .nav-links > a,
    .nav-dropdown-toggle {
        width: 100% !important;
        min-height: 52px !important;
        padding: 14px 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        border: 1px solid rgba(47,125,75,.14) !important;
        box-shadow: 0 8px 24px rgba(47,125,75,.08) !important;
        font-size: 1.02rem !important;
        font-weight: 850 !important;
    }
    .nav-links > a::after,
    .nav-dropdown-toggle::after {
        display: none !important;
    }
    .nav-dropdown {
        width: 100% !important;
        display: block !important;
    }
    .nav-dropdown-toggle i {
        transition: transform .2s ease;
    }
    .nav-dropdown.mobile-dropdown-open .nav-dropdown-toggle i {
        transform: rotate(180deg);
    }
    .nav-dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: 300px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 8px 0 4px !important;
        padding: 10px !important;
        border-radius: 18px !important;
        background: #f5fff0 !important;
        border: 1px solid rgba(47,125,75,.14) !important;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.7) !important;
        gap: 6px !important;
    }
    .nav-dropdown.mobile-dropdown-open .nav-dropdown-menu {
        display: grid !important;
    }
    .nav-dropdown-menu a {
        white-space: normal !important;
        line-height: 1.3 !important;
        padding: 13px 16px !important;
        border-radius: 14px !important;
        background: rgba(255,255,255,.64) !important;
        border: 1px solid rgba(47,125,75,.08) !important;
        font-size: .95rem !important;
        font-weight: 800 !important;
    }
    .cart-link,
    .login-link {
        justify-content: center !important;
    }
}

@media (max-width: 420px) {
    .nav-links {
        top: 72px !important;
        height: calc(100vh - 72px) !important;
        height: calc(100dvh - 72px) !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
    .nav-dropdown-menu {
        max-height: 240px !important;
    }
}


/* v1.0.28 - official social brand colors in footer/contact icons */
.contact-icons a.social-facebook {
    color: #1877F2;
    border-color: rgba(24,119,242,.22);
}
.contact-icons a.social-instagram {
    color: #E4405F;
    border-color: rgba(228,64,95,.22);
}
.contact-icons a.social-youtube {
    color: #FF0000;
    border-color: rgba(255,0,0,.22);
}
.contact-icons a.social-facebook:hover {
    background: #1877F2;
    color: #fff;
}
.contact-icons a.social-instagram:hover {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}
.contact-icons a.social-youtube:hover {
    background: #FF0000;
    color: #fff;
}

/* v1.0.31 - Updates sharing, update detail gallery, and stable update listing */
.updates-page-header {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 16px;
    padding: 42px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,248,231,.94));
    border: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(35, 93, 56, 0.08);
    text-align: center;
}
.updates-page-header h1 { margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3.8rem); }
.updates-page-header p:not(.eyebrow) { color: var(--muted); margin: 0 auto; max-width: 760px; }
.all-updates-grid .post-card h3 a,
.compact-post-grid .post-card h3 a { color: var(--text); text-decoration: none; }
.clickable-update-card { transition: transform .24s ease, box-shadow .24s ease; }
.clickable-update-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(35, 93, 56, 0.13); }
.post-card-image-link { display: block; color: inherit; text-decoration: none; }
.social-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 14px;
}
.share-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 22px rgba(35, 93, 56, .12);
}
.whatsapp-share { background: #25D366; }
.facebook-share { background: #1877F2; }
.update-detail-section { padding-top: 34px; }
.update-detail-card {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.update-detail-media { min-width: 0; }
.post-detail-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef8e7, #fff8e6);
}
.post-detail-slider .slider-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.large-post-placeholder { height: 420px; border-radius: 28px; }
.update-detail-content h1 { font-size: clamp(2rem, 4vw, 4rem); margin: 10px 0; }
.update-date { color: var(--muted); font-weight: 800; }
.update-body-text { margin: 22px 0; color: var(--muted); line-height: 1.8; white-space: normal; }
.detail-share-row { margin-bottom: 24px; }
@media (max-width: 860px) {
    .update-detail-card { grid-template-columns: 1fr; padding: 18px; }
    .post-detail-slider { aspect-ratio: 4 / 3; }
    .share-social { width: 100%; }
}

/* v1.0.31 - updates page visibility, readable update detail, and default Dendrobium-first showcase ordering support */
.updates-list-section {
    padding-top: 24px;
    padding-bottom: 86px;
}
.updates-list-section .post-card,
.all-updates-grid .post-card,
.all-updates-grid .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
.all-updates-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    align-items: stretch;
}
.update-detail-content h1 {
    font-size: clamp(1.65rem, 2.6vw, 2.65rem) !important;
    line-height: 1.22;
    letter-spacing: -0.02em;
}
.update-body-text {
    font-size: 1.06rem;
    line-height: 1.78;
    color: #405147;
    max-width: 760px;
    word-break: normal;
    overflow-wrap: anywhere;
}
.update-detail-content .post-type {
    margin-bottom: 8px;
}
@media (max-width: 860px) {
    .updates-page-header {
        margin: 18px auto 8px;
        padding: 28px 18px;
    }
    .updates-list-section {
        padding-top: 14px;
    }
    .update-detail-content h1 {
        font-size: clamp(1.45rem, 6vw, 2rem) !important;
    }
    .update-body-text {
        font-size: 1rem;
        line-height: 1.72;
    }
}
