/* =====================================================
   Product Catalog – Frontend Styles v1.6.0
   Brand: Pestmaster | Tone: Forest green #0D6B33
   Design: Clean professional, full-width, no sidebar
   Google Fonts: Plus Jakarta Sans (loaded via assets.php)
===================================================== */

*, *::before, *::after { box-sizing: border-box; }

/* ─── TOKENS ─────────────────────────────────────── */
:root {
    --pc-green:        #0D6B33;
    --pc-green-dark:   #094f25;
    --pc-green-mid:    #1a8a44;
    --pc-green-light:  #e6f4ec;
    --pc-green-xlight: #f2faf5;
    --pc-gold:         #e8a020;
    --pc-text:         #1a1a1a;
    --pc-text-2:       #4a5568;
    --pc-text-3:       #718096;
    --pc-border:       #e2e8e4;
    --pc-white:        #ffffff;
    --pc-bg:           #f8faf9;
    --pc-radius-sm:    6px;
    --pc-radius:       10px;
    --pc-radius-lg:    16px;
    --pc-radius-xl:    24px;
    --pc-shadow-sm:    0 1px 4px rgba(0,0,0,.06);
    --pc-shadow:       0 4px 16px rgba(13,107,51,.10);
    --pc-shadow-lg:    0 8px 32px rgba(13,107,51,.16);
    --pc-trans:        .22s ease;
    --pc-font:         'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ─── FULL-WIDTH OVERRIDE for GeneratePress ─────── */
/* Force plugin pages to be full width inside GP's grid */
.pc-page-wrap {
    width: 100%;
    background: var(--pc-bg);
    min-height: 60vh;
}

/* GP sets max-width on .inside-article — reset for our container */
.pc-page-wrap .inside-article,
.pc-page-wrap .entry-content {
    max-width: none;
    padding: 0;
    margin: 0;
}

.pc-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 32px 24px 64px;
}

/* ─── BREADCRUMB ─────────────────────────────────── */
.pc-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 13px;
    color: var(--pc-text-3);
    margin-bottom: 32px;
    font-family: var(--pc-font);
}
.pc-breadcrumb a {
    color: var(--pc-green);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--pc-trans);
}
.pc-breadcrumb a:hover { color: var(--pc-green-dark); text-decoration: underline; }
.pc-bc-sep {
    font-size: 9px;
    color: var(--pc-border);
    flex-shrink: 0;
}
.pc-breadcrumb span { color: var(--pc-text-2); font-weight: 500; }

/* ─── ARCHIVE HERO ───────────────────────────────── */
.pc-archive-hero {
    background: linear-gradient(135deg, var(--pc-green) 0%, var(--pc-green-mid) 100%);
    border-radius: var(--pc-radius-xl);
    padding: 48px 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pc-archive-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pc-archive-hero__inner { position: relative; z-index: 1; }
.pc-archive-hero__icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: #fff;
    backdrop-filter: blur(4px);
}
.pc-archive-hero__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.02em;
    font-family: var(--pc-font);
}
.pc-archive-hero__desc {
    color: rgba(255,255,255,.80);
    margin: 0;
    font-size: 15px;
    font-family: var(--pc-font);
}

/* ─── PRODUCT GRID ───────────────────────────────── */
.pc-grid {
    display: grid;
    gap: 24px;
}
.pc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pc-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ─── PRODUCT CARD ───────────────────────────────── */
.pc-card {
    background: var(--pc-white);
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    box-shadow: var(--pc-shadow-sm);
    border: 1px solid var(--pc-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--pc-trans), transform var(--pc-trans), border-color var(--pc-trans);
    font-family: var(--pc-font);
}
.pc-card:hover {
    box-shadow: var(--pc-shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(13,107,51,.20);
}

.pc-card__img-wrap {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--pc-green-xlight);
    position: relative;
}
.pc-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.pc-card:hover .pc-card__img-wrap img { transform: scale(1.07); }

.pc-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,107,51,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--pc-trans);
    font-size: 22px;
    color: #fff;
}
.pc-card:hover .pc-card__overlay { opacity: 1; }

.pc-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-green);
    font-size: 42px;
    opacity: .25;
}

.pc-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.pc-card__name {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: var(--pc-text);
}
.pc-card__name a { color: inherit; text-decoration: none; transition: color var(--pc-trans); }
.pc-card__name a:hover { color: var(--pc-green); }

.pc-card__excerpt {
    font-size: 13px;
    color: var(--pc-text-3);
    margin: 0;
    line-height: 1.55;
    flex: 1;
}

.pc-card__swatches {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.pc-swatch-sm {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--swatch-color, #ccc);
    border: 2px solid rgba(255,255,255,.8);
    box-shadow: 0 0 0 1.5px rgba(0,0,0,.12);
    display: inline-block;
    flex-shrink: 0;
}

.pc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pc-green);
    text-decoration: none;
    margin-top: auto;
    transition: gap var(--pc-trans), color var(--pc-trans);
    letter-spacing: .01em;
}
.pc-card__link:hover { gap: 10px; color: var(--pc-green-dark); }
.pc-card__link i { font-size: 11px; transition: transform var(--pc-trans); }
.pc-card__link:hover i { transform: translateX(2px); }

/* ─── PAGINATION ─────────────────────────────────── */
.pc-pagination { margin-top: 44px; text-align: center; }
.pc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--pc-radius-sm);
    border: 1.5px solid var(--pc-border);
    color: var(--pc-text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 3px;
    transition: var(--pc-trans);
    font-family: var(--pc-font);
}
.pc-pagination .page-numbers.current,
.pc-pagination .page-numbers:hover {
    background: var(--pc-green);
    border-color: var(--pc-green);
    color: #fff;
    box-shadow: 0 2px 8px rgba(13,107,51,.30);
}

/* ─── EMPTY ──────────────────────────────────────── */
.pc-empty {
    text-align: center;
    padding: 80px 40px;
    color: var(--pc-text-3);
}
.pc-empty i { font-size: 48px; display: block; margin-bottom: 16px; color: var(--pc-green); opacity: .3; }
.pc-empty p { margin: 0; font-size: 16px; }

/* ─── SINGLE HERO ────────────────────────────────── */
.pc-single-hero {
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

/* ─── GALLERY COLUMN ─────────────────────────────── */
.pc-gallery-col {
    position: sticky;
    top: 80px;
    min-width: 0;
}

.pc-gallery-stage {
    border-radius: var(--pc-radius-xl);
    overflow: hidden;
    background: var(--pc-white);
    box-shadow: var(--pc-shadow);
    border: 1px solid var(--pc-border);
}

/* Swiper main */
.pc-swiper-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 520px;
    background: var(--pc-white);
}
.pc-swiper-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-white);
}
.pc-swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    padding: 20px;
    display: block;
}

/* Custom nav buttons */
.pc-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pc-white);
    border: 1.5px solid var(--pc-border);
    color: var(--pc-green);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pc-shadow-sm);
    transition: background var(--pc-trans), color var(--pc-trans), box-shadow var(--pc-trans);
    opacity: 0;
}
.pc-gallery-stage:hover .pc-swiper-btn { opacity: 1; }
.pc-swiper-btn:hover { background: var(--pc-green); color: #fff; box-shadow: var(--pc-shadow); }
.pc-swiper-btn--next { right: 14px; }
.pc-swiper-btn--prev { left: 14px; }

.pc-swiper-dots {
    bottom: 14px !important;
}
.pc-swiper-dots .swiper-pagination-bullet {
    background: var(--pc-text-3);
    opacity: .4;
}
.pc-swiper-dots .swiper-pagination-bullet-active {
    background: var(--pc-green);
    opacity: 1;
}

/* Thumb strip */
.pc-swiper-thumbs {
    padding: 12px 16px;
    background: var(--pc-green-xlight);
    border-top: 1px solid var(--pc-border);
}
.pc-swiper-thumbs .swiper-slide {
    width: 66px !important;
    height: 66px;
    border-radius: var(--pc-radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .55;
    transition: var(--pc-trans);
    background: var(--pc-white);
}
.pc-swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pc-swiper-thumbs .swiper-slide-thumb-active {
    border-color: var(--pc-green);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(13,107,51,.25);
}

/* Feature image / no-image fallback */
.pc-feat-img img {
    width: 100%;
    display: block;
    max-height: 520px;
    object-fit: contain;
    padding: 20px;
}
.pc-no-img {
    aspect-ratio: 1;
    max-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-green-xlight);
    color: var(--pc-green);
    font-size: 72px;
    opacity: .25;
}

/* ─── INFO COLUMN ────────────────────────────────── */
.pc-info-col {
    min-width: 0;
    font-family: var(--pc-font);
}

.pc-cats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.pc-cat-pill {
    background: var(--pc-green-light);
    color: var(--pc-green-dark);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: background var(--pc-trans), color var(--pc-trans);
}
.pc-cat-pill:hover { background: var(--pc-green); color: #fff; }

.pc-product-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight:700;
    color: var(--pc-text);
    margin: 0 0 16px;
    line-height: 1.25;
    letter-spacing: -.025em;
}

/* ─── THÔNG TIN SẢN PHẨM (excerpt notice box) ─────── */
.pc-product-lead {
    background: var(--pc-green-light);
    border: 1.5px solid #b7dfc8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
}

.pc-product-lead__header {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--pc-green);
    padding: 10px 16px;
}

.pc-product-lead__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,.2);
    border-radius: 6px;
    flex-shrink: 0;
    color: #fff;
    font-size: 13px;
}

.pc-product-lead__title {
    font-family: var(--pc-font);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.pc-product-lead__body {
    padding: 6px 16px 14px;
}

/* ── Each row ── */
.pc-lead-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #c9e8d5;
}
.pc-lead-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pc-lead-row__icon {
    flex-shrink: 0;
    color: var(--pc-green);
    font-size: 13px;
    margin-top: 3px;
    line-height: 1;
}

.pc-lead-row__text {
    font-family: var(--pc-font);
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 1.65;
}

/* Bold / italic inside excerpt rows */
.pc-lead-row__text strong,
.pc-lead-row__text b {
    font-weight: 700;
    color: var(--pc-text);
}
.pc-lead-row__text em,
.pc-lead-row__text i {
    font-style: italic;
}

.pc-divider {
    height: 1px;
    background: var(--pc-border);
    margin: 24px 0;
}

/* Color variants */
.pc-variants-block { margin-bottom: 24px; }
.pc-variants-label {
    font-size: 13px;
    color: var(--pc-text-3);
    margin: 0 0 12px;
    font-weight: 500;
}
.pc-variants-label strong {
    color: var(--pc-text);
    font-weight: 700;
}
.pc-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.pc-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--swatch-color);
    border: 3px solid var(--pc-white);
    box-shadow: 0 0 0 2px var(--pc-border);
    cursor: pointer;
    transition: box-shadow var(--pc-trans), transform var(--pc-trans);
    flex-shrink: 0;
    padding: 0;
}
.pc-swatch:hover,
.pc-swatch.is-active {
    box-shadow: 0 0 0 3px var(--pc-green);
    transform: scale(1.12);
    background: var(--swatch-color);
}

/* CTA block */
.pc-cta-block {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    background: var(--pc-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--pc-radius);
    border: 2px solid var(--pc-green);
    cursor: pointer;
    transition: background var(--pc-trans), border-color var(--pc-trans), box-shadow var(--pc-trans), transform var(--pc-trans);
    font-family: var(--pc-font);
    letter-spacing: .01em;
    box-shadow: 0 2px 12px rgba(13,107,51,.28);
}
.pc-btn-primary:hover {
    background: var(--pc-green-dark);
    border-color: var(--pc-green-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(13,107,51,.36);
}
.pc-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    background: var(--pc-green-light);;
    color: var(--pc-green);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--pc-radius);
    border: 2px solid var(--pc-border);
    cursor: pointer;
    transition: background var(--pc-trans), border-color var(--pc-trans), color var(--pc-trans);
    font-family: var(--pc-font);
}
.pc-btn-ghost:hover {
    background: var(--pc-green-light);
    border-color: var(--pc-green);
    color: var(--pc-green);
}


/* Share row */
.pc-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--pc-text-3);
    font-family: var(--pc-font);
}
.pc-share-label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pc-share-fb,
.pc-share-zalo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: transform var(--pc-trans), box-shadow var(--pc-trans);
}
.pc-share-fb  { background: #1877f2; color: #fff; }
.pc-share-zalo { background: #0068ff; color: #fff; }
.pc-share-fb:hover,
.pc-share-zalo:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(0,0,0,.20);
    color: #fff;
    text-decoration: none;
}

/* ─── SECTION HEADINGS ───────────────────────────── */
/* ─── SECTION HEADING ───────────────────────────── */
.pc-section-heading {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 0 20px;
    position: relative;
}
.pc-section-heading__line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, var(--pc-border) 0%, #b7dfc8 50%, var(--pc-border) 100%);
    display: block;
}
.pc-section-heading__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pc-bg);
    padding: 0 18px;
    position: relative;
    z-index: 1;
}
.pc-section-heading__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--pc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}
.pc-section-heading__text {
    font-family: var(--pc-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--pc-text);
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ─── ACCORDION ──────────────────────────────────── */
.pc-detail-section { margin-bottom: 56px; }

.pc-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(13,107,51,.09), 0 1px 4px rgba(0,0,0,.04);
    border: 1px solid #0D6B33;
}

/* ── Item ── */
.pc-acc-item {
    background: var(--pc-white);
    font-family: var(--pc-font);
    border-bottom: 1px solid var(--pc-border);
}
.pc-acc-item:last-child { border-bottom: none; }

/* ── Trigger — đặt background cứng, kill toàn bộ browser default ── */
.pc-acc-trigger {
    width: 100%;
    display: flex;
    align-items: stretch;
    padding: 0;
    /* ĐẶT MÀU NỀN CỨNG — không để none, tránh browser inject màu xám */
    background: #f8faf9;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--pc-trans);
}
.pc-acc-trigger:hover {
    background: #edf7f1;
}
.pc-acc-trigger:active,
.pc-acc-trigger:focus:not(:focus-visible) {
    background: #edf7f1;
    outline: none;
}
.pc-acc-trigger:focus-visible {
    outline: 2px solid var(--pc-green);
    outline-offset: -3px;
}
/* Khi item đang mở: header nổi lên với gradient xanh đậm hơn */
.pc-acc-item.is-open .pc-acc-trigger {
    background: linear-gradient(135deg, var(--pc-green) 0%, var(--pc-green-mid) 100%);
}
.pc-acc-item.is-open .pc-acc-trigger:hover {
    background: linear-gradient(135deg, var(--pc-green-dark) 0%, var(--pc-green) 100%);
}

.pc-acc-trigger__inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 14px;
    padding: 18px 22px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* ── Number badge ── */
.pc-acc-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.pc-acc-num__badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(13,107,51,.1);
    color: var(--pc-green);
    font-size: 11px;
    font-weight: 800;
    font-family: var(--pc-font);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .02em;
    transition: background var(--pc-trans), color var(--pc-trans);
    flex-shrink: 0;
}
.pc-acc-item.is-open .pc-acc-num__badge {
    background: rgba(255,255,255,.2);
    color: #fff;
}

/* ── Title ── */
.pc-acc-title {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--pc-text);
    line-height: 1.45;
    letter-spacing: -.015em;
    transition: color var(--pc-trans);
}
.pc-acc-item.is-open .pc-acc-title {
    color: #fff;
    font-weight: 700;
}

/* ── Chevron icon ── */
.pc-acc-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(13,107,51,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-green);
    font-size: 11px;
    transition: border-color var(--pc-trans), background var(--pc-trans), color var(--pc-trans), transform var(--pc-trans);
    background: rgba(13,107,51,.07);
}
.pc-acc-trigger:hover .pc-acc-chevron {
    border-color: var(--pc-green);
    background: rgba(13,107,51,.12);
}
.pc-acc-item.is-open .pc-acc-chevron {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.4);
    color: #fff;
    transform: rotate(180deg);
}

/* ── Panel animation ── */
.pc-acc-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
}
.pc-acc-item.is-open .pc-acc-panel { max-height: 2000px; }

/* ── Body ── */
.pc-acc-body {
    padding: 10px 24px 26px 20px;
    background: transparent;
    color: #000000;
    font-size: 15px;
    line-height: 1.9;
}
.pc-acc-body p:first-child { margin-top: 0; }
.pc-acc-body p:last-child  { margin-bottom: 0; }
.pc-acc-body p { margin: 0 0 10px; }
.pc-acc-body img { max-width: 100%; height: auto; border-radius: var(--pc-radius-sm); margin: 8px 0; }
.pc-acc-body ul, .pc-acc-body ol { padding-left: 20px; margin: 0 0 10px; }
.pc-acc-body li { margin-bottom: 5px; }
.pc-acc-body strong { color: var(--pc-text); font-weight: 700; }
.pc-acc-body table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.pc-acc-body table th,
.pc-acc-body table td { padding: 10px 14px; border: 1px solid var(--pc-border); font-size: 14px; }
.pc-acc-body table th { background: var(--pc-green-light); color: var(--pc-green-dark); font-weight: 700; }
.pc-acc-body table tr:nth-child(even) td { background: var(--pc-green-light); }

/* ── Thin separator line between open body and next item ── */
.pc-acc-item.is-open + .pc-acc-item { border-top: 2px solid var(--pc-border); }

/* ─── RELATED PRODUCTS SECTION ───────────────────── */
.pc-related-section { margin-bottom: 48px; }

/* Wrapper — positioning context for prev/next nav buttons */
.pc-related-wrap {
    position: relative;
}

/* Prev/next nav buttons */
.pc-related-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(2px);
    border: 1.5px solid var(--pc-border);
    color: var(--pc-green);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: var(--pc-shadow-sm);
    transition: background var(--pc-trans), color var(--pc-trans), box-shadow var(--pc-trans), opacity var(--pc-trans);
}
.pc-related-nav:hover {
    background: var(--pc-green);
    color: #fff;
    box-shadow: var(--pc-shadow);
}
.pc-related-nav--prev { left: 6px; }
.pc-related-nav--next { right: 6px; }
.pc-related-nav.is-disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* No overflow → cards already fit, hide both controls */
.pc-related-wrap--no-overflow .pc-related-nav { display: none; }

/* Horizontal-scroll viewport */
.pc-related-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--pc-green-mid) var(--pc-green-light);
    padding-bottom: 8px;
    margin: 0 -4px;
}
.pc-related-scroll::-webkit-scrollbar { height: 7px; }
.pc-related-scroll::-webkit-scrollbar-track {
    background: var(--pc-green-light);
    border-radius: 10px;
}
.pc-related-scroll::-webkit-scrollbar-thumb {
    background: var(--pc-green-mid);
    border-radius: 10px;
}
.pc-related-scroll::-webkit-scrollbar-thumb:hover { background: var(--pc-green); }

/* Track: row of cards, gap matches .pc-grid */
.pc-related-track {
    display: flex;
    gap: 24px;
    padding: 0 4px;
}

/* Card sizing — desktop: exactly 4 visible per row, scroll for the rest */
.pc-related-card {
    flex: 0 0 calc((100% - 24px * 3) / 4);
    min-width: 0;
    scroll-snap-align: start;
}

/* ─── SECTION HEADING — pc-related-section icon variant ── */
.pc-related-section .pc-section-heading__icon {
    background: linear-gradient(135deg, var(--pc-green) 0%, var(--pc-green-mid) 100%);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
    .pc-single-hero { grid-template-columns: 1fr 1fr; gap: 36px; }
    .pc-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .pc-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pc-container { padding: 24px 16px 48px; }
    .pc-single-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pc-gallery-col { position: static; }
    .pc-swiper-main { max-height: 360px; }
    .pc-archive-hero { padding: 36px 24px; }
    .pc-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .pc-grid--2,
    .pc-grid--3,
    .pc-grid--4 { grid-template-columns: 1fr; }
    .pc-cta-block { flex-direction: column; }
    .pc-btn-primary,
    .pc-btn-ghost { justify-content: center; }
    .pc-swiper-main { max-height: 280px; }
    .pc-section-heading__text { font-size: 12px; }
    .pc-section-heading__inner { padding: 0 10px; }
    .pc-archive-hero { border-radius: var(--pc-radius-lg); }

    /* Related products: exactly 2 visible per row, scroll for the rest */
    .pc-related-track { gap: 14px; }
    .pc-related-card { flex-basis: calc((100% - 14px) / 2); }
    .pc-related-card .pc-card__body { padding: 14px 14px 16px; }
    .pc-related-card .pc-card__name { font-size: 13px; }
    .pc-related-card .pc-card__link { font-size: 12px; }
    .pc-related-nav { width: 32px; height: 32px; font-size: 12px; }
    .pc-related-nav--prev { left: 2px; }
    .pc-related-nav--next { right: 2px; }
}


/* ─── PRINT ──────────────────────────────────────── */
@media print {
    .pc-gallery-col { position: static; }
    .pc-swiper-main, .pc-swiper-thumbs,
    .pc-swiper-btn  { display: none; }
    .pc-feat-img    { display: block; }
    .pc-single-hero { grid-template-columns: 1fr; }
    .pc-share-row, .pc-cta-block { display: none; }
    .pc-page-wrap { background: #fff; }
}