/* Plantopia design — botanical teal (distinct from lime agri clones) */

:root {
    --pt-forest: #0c3d38;
    --pt-green: #1a5c54;
    --pt-sage: #7d9e95;
    --pt-cream: #f3f6f5;
    --pt-ivory: #ffffff;
    --pt-yellow: #c9893a;
    --pt-ink: #152825;
    --pt-muted: #5f726d;
    --pt-line: rgba(12, 61, 56, 0.12);
    --pt-radius: 10px;
    --font-display: "Playfair Display", "Fraunces", Georgia, serif;
    --font-body: "Inter", "Segoe UI", sans-serif;
    --header-offset: 118px;
}

body.site-body {
    font-family: var(--font-body) !important;
    color: var(--pt-ink) !important;
    background: var(--pt-ivory) !important;
    padding-top: var(--header-offset) !important;
    line-height: 1.65;
}

h1, h2, h3, .display-font {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--pt-forest);
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 1px 0 var(--pt-line);
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(12,61,56,0.08); }

.top-announce {
    background: var(--pt-forest);
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
}
.top-announce-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.35rem 1rem;
    padding: 0.38rem 0;
}
.top-announce-tagline { color: #fff; font-weight: 500; }
.top-announce-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.9rem;
}
.top-announce-links a { color: rgba(255,255,255,0.78); text-decoration: none; }
.top-announce-links a:hover { color: #fff; }
.top-announce-sep { color: rgba(255,255,255,0.25); }

.site-navbar {
    padding: 0.65rem 0;
    background: #fff;
}
.site-navbar-inner {
    flex-wrap: wrap !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.site-navbar .navbar-collapse {
    flex-grow: 1;
    align-items: center;
}
.site-navbar .navbar-collapse.show,
.site-navbar .navbar-collapse.collapsing {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--pt-forest);
}
.brand-lockup-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pt-green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}
.brand-lockup.has-logo .brand-lockup-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
.brand-lockup-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-lockup-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.brand-lockup-text small {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--pt-sage);
    font-weight: 600;
}

.site-nav-links {
    gap: 0.05rem;
    align-items: center;
}
.site-navbar .nav-link {
    color: var(--pt-ink) !important;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.45rem 0.6rem !important;
    transform: none !important;
    white-space: nowrap;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--pt-green) !important;
}
.site-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.2rem;
    height: 2px;
    background: var(--pt-green);
}
.site-navbar .nav-item { position: relative; }
.site-navbar .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.15em;
}
.site-navbar .dropdown-menu {
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius);
    box-shadow: 0 12px 32px rgba(12,61,56,0.12);
    padding: 0.35rem;
    margin-top: 0.35rem;
    z-index: 1050;
}
.site-navbar .dropdown-item {
    font-size: 0.84rem;
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    color: var(--pt-ink);
}
.site-navbar .dropdown-item:hover {
    background: var(--pt-cream);
    color: var(--pt-forest);
}
.site-navbar .dropdown-item.active,
.site-navbar .dropdown-item:active {
    background: var(--pt-green);
    color: #fff;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: 0.5rem;
}
.nav-tool {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pt-ink);
    text-decoration: none;
    font-size: 1.05rem;
    position: relative;
    transition: background .2s;
}
.nav-tool:hover { background: var(--pt-cream); color: var(--pt-green); }
.nav-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: var(--pt-green);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}
.site-navbar .navbar-toggler {
    border-color: var(--pt-line);
    padding: 0.35rem 0.55rem;
}
.site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(26, 92, 84, 0.2);
}
.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a3020' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.35em;
    height: 1.35em;
}
.nav-circle-strip { display: none !important; }

/* ========== BUTTONS ========== */
.btn-pt-primary {
    background: var(--pt-forest);
    border: 1px solid var(--pt-forest);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.72rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background .25s, transform .25s;
}
.btn-pt-primary:hover {
    background: var(--pt-green);
    border-color: var(--pt-green);
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-pt-outline {
    background: #fff;
    border: 1.5px solid var(--pt-green);
    color: var(--pt-green) !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.72rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.btn-pt-outline:hover {
    background: var(--pt-cream);
    color: var(--pt-forest) !important;
}
.btn-pt-white {
    background: #fff;
    border: none;
    color: var(--pt-forest) !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.72rem 1.5rem;
}
.btn-pt-white:hover { background: var(--pt-cream); color: var(--pt-forest) !important; }

/* ========== HERO ========== */
.pt-hero {
    position: relative;
    min-height: clamp(520px, 78vh, 720px);
    display: flex;
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 0;
    overflow: hidden;
}
.pt-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.pt-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(12, 61, 56, 0.9) 0%,
        rgba(12, 61, 56, 0.78) 38%,
        rgba(12, 61, 56, 0.42) 68%,
        rgba(12, 61, 56, 0.25) 100%
    );
    pointer-events: none;
}
.pt-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
}
.pt-hero-copy {
    max-width: 640px;
}
.pt-hero-script {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}
.pt-hero-script .leaf-deco { color: var(--pt-yellow); font-size: 0.85rem; }
.pt-hero h1 {
    font-size: clamp(2.4rem, 4.8vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #fff;
}
.pt-hero h1 .accent { color: #9fd0c6; font-style: italic; }
.pt-hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    max-width: 32rem;
    margin-bottom: 1.75rem;
}
.pt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}
.pt-hero .btn-pt-primary {
    background: var(--pt-yellow);
    border-color: var(--pt-yellow);
    color: var(--pt-forest) !important;
}
.pt-hero .btn-pt-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--pt-forest) !important;
}
.pt-hero .btn-pt-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff !important;
}
.pt-hero .btn-pt-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff !important;
}
.pt-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pt-hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}
.pt-hero-benefits i {
    color: var(--pt-yellow);
    font-size: 1.1rem;
}
.pt-hero-social {
    flex-shrink: 0;
    align-self: flex-end;
    background: #fff;
    border-radius: var(--pt-radius);
    padding: 0.85rem 1rem;
    box-shadow: 0 8px 28px rgba(12, 61, 56, 0.2);
    min-width: 150px;
}
.pt-hero-social strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--pt-forest);
    line-height: 1;
}
.pt-hero-social span {
    font-size: 0.7rem;
    color: var(--pt-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pt-avatars {
    display: flex;
    margin-top: 0.55rem;
}
.pt-avatars img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -7px;
    object-fit: cover;
}

/* ========== CATEGORIES ========== */
.pt-section { padding: clamp(3rem, 6vw, 5rem) 0; }

/* Collapse gap between back-to-back sections with same background */
.pt-section.pt-products {
    padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.pt-section.pt-products + .pt-section.pt-gallery {
    padding-top: clamp(1.25rem, 2.5vw, 2rem);
}
.pt-section.pt-gallery + .pt-section.pt-blog {
    padding-top: clamp(2rem, 4vw, 3rem);
}
.pt-section-head {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.pt-section.pt-gallery .pt-section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.pt-section-head h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    margin-bottom: 0.35rem;
}
.pt-section-head p {
    color: var(--pt-muted);
    font-size: 0.92rem;
    margin: 0;
}
.pt-leaf-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--pt-sage);
    font-size: 0.75rem;
}
.pt-leaf-deco::before,
.pt-leaf-deco::after {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--pt-line);
}

.pt-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(0.75rem, 2vw, 1.5rem);
}
.pt-cat-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform .35s ease;
}
.pt-cat-card:hover { transform: translateY(-8px); color: inherit; }
.pt-cat-arch {
    aspect-ratio: 3 / 4;
    border-radius: 999px 999px 12px 12px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    background: var(--pt-cream);
}
.pt-cat-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.pt-cat-card:hover .pt-cat-arch img { transform: scale(1.06); }
.pt-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--pt-line);
    display: grid;
    place-items: center;
    margin: 0 auto 0.5rem;
    color: var(--pt-green);
    font-size: 0.95rem;
}
.pt-cat-name {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--pt-forest);
    margin-bottom: 0.2rem;
}
.pt-cat-link {
    font-size: 0.72rem;
    color: var(--pt-sage);
    letter-spacing: 0.04em;
}

/* ========== FEATURE BAR ========== */
.pt-features {
    background: var(--pt-cream);
    border-top: 1px solid var(--pt-line);
    border-bottom: 1px solid var(--pt-line);
    padding: clamp(2rem, 4vw, 2.75rem) 0;
}
.pt-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pt-feature-item {
    text-align: center;
    padding: 0 1rem;
    border-left: 1px solid var(--pt-line);
}
.pt-feature-item:first-child { border-left: 0; }
.pt-feature-item i {
    font-size: 1.5rem;
    color: var(--pt-green);
    display: block;
    margin-bottom: 0.55rem;
}
.pt-feature-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--pt-forest);
    margin-bottom: 0.15rem;
}
.pt-feature-item span {
    font-size: 0.8rem;
    color: var(--pt-muted);
}

/* ========== OUR STORY ========== */
.pt-story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.pt-story-media {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr;
    gap: 0.85rem;
    align-items: start;
}
.pt-story-main {
    position: relative;
    border-radius: var(--pt-radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}
.pt-story-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pt-story-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(12,61,56,0.15);
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    transition: background .3s;
}
.pt-story-play:hover { background: rgba(12,61,56,0.25); color: #fff; }
.pt-story-stack {
    display: grid;
    gap: 0.85rem;
    padding-top: 2rem;
}
.pt-story-stack img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--pt-radius);
}
.pt-story-kicker {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--pt-green);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}
.pt-story h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.pt-story-desc {
    color: var(--pt-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}
.pt-story-values {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.85rem;
}
.pt-story-values li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
}
.pt-story-values i {
    color: var(--pt-green);
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* ========== PROMO BANNER ========== */
.pt-promo {
    background: var(--pt-forest);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    position: relative;
    overflow: hidden;
}
.pt-promo::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.03'%3E%3Cpath d='M30 30c0-5 3-8 8-8s8 3 8 8-3 8-8 8-8-3-8-8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.pt-promo-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.pt-promo-copy { color: #fff; max-width: 320px; }
.pt-promo-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pt-yellow);
    margin-bottom: 0.5rem;
    display: block;
}
.pt-promo-copy h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.4rem;
}
.pt-promo-copy p {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}
.pt-promo-plant {
    flex: 0 0 auto;
    max-width: 200px;
}
.pt-promo-plant img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}
.pt-promo-badge {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--pt-yellow);
    color: var(--pt-forest);
    display: grid;
    place-content: center;
    text-align: center;
    font-weight: 800;
    line-height: 1.1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.pt-promo-badge small {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pt-promo-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--pt-forest);
}

/* ========== PRODUCTS ========== */
.pt-products { background: var(--pt-cream); }
.pt-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.15rem, 2.2vw, 1.85rem);
}
.pt-product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--pt-line);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.05);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.pt-product-card:hover {
    box-shadow: 0 18px 44px rgba(12, 61, 56, 0.12);
    transform: translateY(-6px);
}
.pt-product-media {
    position: relative;
    overflow: hidden;
}
.pt-product-thumb {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(160deg, #e8ede4 0%, #f5f4ef 100%);
}
.pt-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.pt-product-card:hover .pt-product-thumb img {
    transform: scale(1.06);
}
.pt-product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pt-green);
    border: 1px solid rgba(26, 92, 84, 0.14);
}
.pt-product-like {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--pt-forest);
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(12, 61, 56, 0.1);
    transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.pt-product-like:hover,
.pt-product-like.is-liked {
    color: #e74c3c;
    background: #fff;
    transform: scale(1.08);
}
.pt-product-body {
    padding: 1.15rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1;
}
.pt-product-info {
    flex: 1;
}
.pt-product-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 0.4rem;
}
.pt-product-body h3 a {
    color: var(--pt-forest);
    text-decoration: none;
    transition: color 0.2s ease;
}
.pt-product-body h3 a:hover {
    color: var(--pt-green);
}
.pt-product-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--pt-forest);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.pt-product-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.72rem 1rem;
    background: transparent;
    color: var(--pt-forest) !important;
    border: 1.5px solid var(--pt-forest);
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pt-product-cart:hover {
    background: var(--pt-forest);
    border-color: var(--pt-forest);
    color: #fff !important;
}
.pt-product-cart i {
    font-size: 1rem;
}
.pt-section-foot {
    text-align: center;
    margin-top: 2rem;
}
.pt-section.pt-products .pt-section-foot {
    margin-top: 1.75rem;
    margin-bottom: 0;
}
.pt-section-foot .btn-pt-outline {
    padding: 0.65rem 1.75rem;
}

/* ========== GALLERY (home) ========== */
.pt-gallery { background: var(--pt-cream); }
.pt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.15rem, 2.2vw, 1.75rem);
}
.pt-gallery-card {
    height: 100%;
}
.pt-gallery .pt-gallery-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--pt-line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.05);
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.pt-gallery .pt-gallery-open:hover,
.pt-gallery .pt-gallery-open:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(12, 61, 56, 0.12);
    border-color: rgba(26, 92, 84, 0.18);
}
.pt-gallery-media {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: linear-gradient(160deg, #e8ede4 0%, #f5f4ef 100%);
}
.pt-gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.55s ease;
}
.pt-gallery .pt-gallery-open:hover > .pt-gallery-media img,
.pt-gallery .pt-gallery-open:focus-visible > .pt-gallery-media img {
    transform: scale(1.06);
}
.pt-gallery-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pt-green);
    border: 1px solid rgba(26, 92, 84, 0.14);
}
.pt-gallery-hover {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: rgba(12, 61, 56, 0.55);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.pt-gallery .pt-gallery-open:hover .pt-gallery-hover,
.pt-gallery .pt-gallery-open:focus-visible .pt-gallery-hover {
    opacity: 1;
}
.pt-gallery-hover-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    transform: scale(0.92);
    transition: transform 0.35s ease, background 0.35s ease;
}
.pt-gallery .pt-gallery-open:hover .pt-gallery-hover-icon,
.pt-gallery .pt-gallery-open:focus-visible .pt-gallery-hover-icon {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.22);
}
.pt-gallery-hover-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pt-gallery-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem 1.15rem;
}
.pt-gallery-body h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--pt-forest);
}
.pt-gallery-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pt-green);
    transition: color 0.25s ease, transform 0.25s ease;
}
.pt-gallery .pt-gallery-open:hover .pt-gallery-link,
.pt-gallery .pt-gallery-open:focus-visible .pt-gallery-link {
    color: var(--pt-forest);
    transform: translateX(2px);
}

/* ========== BLOG (home) ========== */
.pt-blog { background: #fff; }
.pt-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.pt-blog-card {
    background: #fff;
    border-radius: var(--pt-radius);
    overflow: hidden;
    border: 1px solid var(--pt-line);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s ease, transform .3s ease;
}
.pt-blog-card:hover {
    box-shadow: 0 12px 32px rgba(12, 61, 56, 0.08);
    transform: translateY(-4px);
}
.pt-blog-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--pt-cream);
}
.pt-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.pt-blog-card:hover .pt-blog-thumb img { transform: scale(1.05); }
.pt-blog-body {
    padding: 1.25rem 1.15rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pt-blog-meta {
    font-size: 0.75rem;
    color: var(--pt-muted);
    margin-bottom: 0.55rem;
}
.pt-blog-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.35;
    margin: 0 0 0.65rem;
}
.pt-blog-body h3 a {
    color: var(--pt-forest);
    text-decoration: none;
}
.pt-blog-body h3 a:hover { color: var(--pt-green); }
.pt-blog-tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pt-green);
    background: rgba(26, 92, 84, 0.08);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    margin-bottom: auto;
}
.pt-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pt-green);
    text-decoration: none;
}
.pt-blog-read:hover { color: var(--pt-forest); gap: 0.6rem; }

/* ========== TESTIMONIALS — Instagram marquee ========== */
.pt-testimonials-ig {
    background: var(--pt-cream);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
    overflow: hidden;
}

.ig-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    margin-top: 0.5rem;
}
.ig-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    padding: 0.5rem 0 1.25rem;
    animation: ig-marquee-scroll 45s linear infinite;
    will-change: transform;
}
.ig-marquee:hover .ig-marquee-track,
.ig-marquee:focus-within .ig-marquee-track {
    animation-play-state: paused;
}
@keyframes ig-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ig-testimonial-card {
    flex: 0 0 min(320px, 78vw);
    width: min(320px, 78vw);
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 12px 28px rgba(12, 61, 56, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ig-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(12, 61, 56, 0.12);
}

.pt-testimonials-ig .ig-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid #efefef;
}
.pt-testimonials-ig .ig-post-user {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}
.pt-testimonials-ig .ig-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
}
.pt-testimonials-ig .ig-post-avatar-letter {
    display: grid;
    place-items: center;
    background: var(--pt-green);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}
.pt-testimonials-ig .ig-post-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}
.pt-testimonials-ig .ig-post-meta strong {
    font-size: 0.78rem;
    color: #262626;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pt-testimonials-ig .ig-post-meta span {
    font-size: 0.68rem;
    color: #8e8e8e;
}
.pt-testimonials-ig .ig-post-more {
    color: #262626;
    font-size: 1rem;
    flex-shrink: 0;
}

.pt-testimonials-ig .ig-post-media {
    aspect-ratio: 1;
    background: #fafafa;
    overflow: hidden;
}
.pt-testimonials-ig .ig-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-testimonials-ig .ig-post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.85rem 0.15rem;
}
.pt-testimonials-ig .ig-post-actions-left {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}
.pt-testimonials-ig .ig-post-actions i {
    font-size: 1.25rem;
    color: var(--pt-forest);
    line-height: 1;
}
.pt-testimonials-ig .ig-post-actions-left .bi-heart-fill {
    color: #ed4956;
}

.pt-testimonials-ig .ig-post-body {
    padding: 0 0.85rem 1rem;
}
.pt-testimonials-ig .ig-post-stars {
    color: #c9893a;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}
.pt-testimonials-ig .ig-post-caption {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #262626;
    margin: 0;
}
.pt-testimonials-ig .ig-post-caption strong {
    font-weight: 700;
    margin-right: 0.35rem;
}
.pt-testimonials-ig .ig-post-tag {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8e8e8e;
}

@media (prefers-reduced-motion: reduce) {
    .ig-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        justify-content: center;
        padding-inline: 1rem;
    }
    .ig-testimonial-card.is-clone { display: none; }
}

/* Legacy testimonial grid (inner pages) */
.pt-testimonials { background: var(--pt-cream); }
.pt-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pt-testimonial-card {
    background: #fff;
    border-radius: var(--pt-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 16px rgba(12,61,56,0.05);
    height: 100%;
}
.pt-testimonial-quote {
    font-size: 2rem;
    color: var(--pt-sage);
    line-height: 1;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}
.pt-testimonial-stars {
    color: var(--pt-yellow);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.pt-testimonial-card p {
    font-size: 0.88rem;
    color: var(--pt-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.pt-testimonial-person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--pt-line);
    padding-top: 1rem;
}
.pt-testimonial-person img,
.pt-testimonial-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}
.pt-testimonial-initial {
    background: var(--pt-cream);
    color: var(--pt-green);
    display: grid;
    place-items: center;
    font-weight: 700;
}
.pt-testimonial-person strong {
    display: block;
    font-size: 0.88rem;
    color: var(--pt-forest);
}

/* ========== CONTACT STRIP ========== */
.pt-contact {
    background: var(--pt-forest);
    color: #fff;
    padding: clamp(2rem, 4vw, 2.75rem) 0;
}
.pt-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    text-decoration: none;
}
.pt-contact-item:hover { color: #fff; opacity: 0.9; }
.pt-contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pt-contact-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}
.pt-contact-item small {
    display: block;
    font-size: 0.78rem;
    opacity: 0.8;
}

/* ========== FOOTER ========== */
.footer-plantopia.site-footer {
    background: var(--pt-cream) !important;
    color: var(--pt-ink);
    border-radius: 0 !important;
    margin-top: 0 !important;
    padding-top: clamp(3rem, 5vw, 4rem);
    border-top: none;
}
.footer-plantopia.site-footer,
.footer-plantopia.site-footer p,
.footer-plantopia.site-footer li,
.footer-plantopia.site-footer h5 {
    color: var(--pt-ink) !important;
}
.footer-plantopia.site-footer a { color: var(--pt-muted) !important; }
.footer-plantopia.site-footer a:hover { color: var(--pt-green) !important; opacity: 1 !important; }
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pt-forest) !important;
}
.footer-desc {
    color: var(--pt-muted);
    font-size: 0.88rem;
    max-width: 22rem;
    line-height: 1.65;
}
.footer-col-title {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--pt-forest) !important;
    margin-bottom: 1rem;
}
.footer-links { display: grid; gap: 0.5rem; }
.footer-links a { font-size: 0.86rem; }
.footer-plantopia .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.footer-plantopia .social-links a {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid var(--pt-line);
    display: grid;
    place-items: center;
    color: var(--pt-forest);
    background: #fff;
}
.footer-plantopia .social-links a:hover {
    background: var(--pt-forest);
    border-color: var(--pt-forest);
    color: #fff;
}
.google-rating-card {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff;
    border: 1px solid var(--pt-line);
    border-radius: var(--pt-radius);
    padding: 0.65rem 0.9rem;
    margin-top: 0.75rem;
    color: var(--pt-ink);
}
.google-rating-card > i { color: #4285f4; font-size: 1.2rem; }
.google-rating-card strong { display: block; font-size: 0.82rem; }
.google-rating-card small { color: var(--pt-yellow); font-size: 0.7rem; }
.footer-plantopia .footer-bottom {
    margin-top: 2.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--pt-line);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--pt-muted);
}
.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}
.footer-payments i { font-size: 1.4rem; }

.floating-social { display: none !important; }
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Inner pages — Plantopia page hero (replaces agri banner look) */
.pt-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.75rem, 5vw, 4rem);
    text-align: center;
    color: #fff;
}
.pt-page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.pt-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(12, 61, 56, 0.88) 0%,
        rgba(12, 61, 56, 0.72) 55%,
        rgba(26, 92, 84, 0.65) 100%
    );
}
.pt-page-hero .container { position: relative; z-index: 2; }
.pt-page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
}
.pt-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}
.pt-page-breadcrumb a:hover { color: #fff; }
.pt-page-breadcrumb .current { color: #fff; font-weight: 600; }
.pt-page-hero-copy .pt-leaf-deco {
    color: var(--pt-yellow);
    margin-bottom: 0.65rem;
}
.pt-page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 0.65rem;
}
.pt-page-hero p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 36rem;
    margin: 0 auto;
    font-size: 0.98rem;
}

/* Legacy page-hero fallback */
.page-hero {
    background: linear-gradient(180deg, rgba(12,61,56,0.85), rgba(12,61,56,0.75)), var(--page-hero-image) center/cover;
    padding: clamp(3.5rem, 8vw, 5rem) 0 3rem;
    text-align: center;
    border-radius: 0;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.88); }

/* Inner page shared components — Plantopia look */
.section-pad {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #fff;
}
.section-tint {
    background: var(--pt-cream) !important;
}
.section-eyebrow,
.section-intro .section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pt-green) !important;
    margin-bottom: 0.45rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    color: var(--pt-forest) !important;
    margin-bottom: 0.5rem;
}
.section-sub {
    color: var(--pt-muted) !important;
    font-size: 0.95rem;
    max-width: 40rem;
}
.section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-card,
.admin-card,
.blog-card,
.testimonial-card,
.filter-panel,
.about-page-card {
    background: #fff !important;
    border: 1px solid var(--pt-line) !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.05) !important;
    padding: 1.35rem 1.25rem;
}
.why-card:hover,
.blog-card:hover,
.testimonial-card:hover {
    box-shadow: 0 14px 36px rgba(12, 61, 56, 0.1) !important;
    transform: translateY(-4px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.why-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--pt-cream);
    color: var(--pt-green);
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.blog-card {
    padding: 0 !important;
    overflow: hidden;
}
.blog-card .badge,
.badge.bg-success-subtle {
    background: rgba(26, 92, 84, 0.1) !important;
    color: var(--pt-green) !important;
}

.filter-panel {
    padding: 1.35rem 1.2rem !important;
    background: var(--pt-cream) !important;
}
.filter-panel .btn-primary,
.section-pad .btn-primary,
.admin-card .btn-primary,
body.site-body .btn-primary {
    background: var(--pt-forest) !important;
    border-color: var(--pt-forest) !important;
    border-radius: 999px !important;
    font-weight: 600;
}
body.site-body .btn-primary:hover {
    background: var(--pt-green) !important;
    border-color: var(--pt-green) !important;
}
body.site-body .btn-outline-primary {
    color: var(--pt-forest) !important;
    border-color: var(--pt-forest) !important;
    border-radius: 999px !important;
}
body.site-body .btn-outline-primary:hover {
    background: var(--pt-forest) !important;
    color: #fff !important;
}
body.site-body .text-success {
    color: var(--pt-green) !important;
}
body.site-body .bg-success {
    background-color: var(--pt-green) !important;
}

.gallery-type-tabs {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.35rem;
    background: var(--pt-cream);
    border-radius: 999px;
    border: 1px solid var(--pt-line);
}
.gallery-type-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--pt-forest);
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    background: transparent;
}
.gallery-type-tab.active,
.gallery-type-tab:hover {
    background: var(--pt-forest) !important;
    color: #fff !important;
}

/* Gallery page cards — match homepage */
.gallery-grid .gallery-item {
    background: #fff;
    border: 1px solid var(--pt-line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(12, 61, 56, 0.1);
}
.gallery-grid .gallery-open {
    aspect-ratio: 5 / 4 !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    background: var(--pt-cream) !important;
}
.gallery-grid .gallery-open > img {
    transform: none !important;
}
.gallery-grid .gallery-item:hover .gallery-open > img {
    transform: scale(1.05) !important;
}
.gallery-grid figcaption {
    padding: 0.85rem 1rem 0.35rem;
    font-family: var(--font-display);
    color: var(--pt-forest);
}
.gallery-grid .small.text-muted {
    padding: 0 1rem 1rem;
}

.testimonial-card {
    padding: 1.5rem 1.35rem !important;
}
.testimonial-quote-icon {
    color: var(--pt-sage);
    font-size: 1.75rem;
    opacity: 0.55;
}
.testimonial-card .stars {
    color: var(--pt-yellow);
}
.testimonial-avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pt-cream);
    color: var(--pt-green);
    display: grid;
    place-items: center;
    font-weight: 700;
}
.cta-strip {
    background: var(--pt-forest);
    color: #fff;
    border-radius: 14px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
}
.cta-strip h3 {
    color: #fff;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}
.cta-strip p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}
.cta-strip .btn-outline-light {
    border-radius: 999px;
}
.cta-strip .btn-light {
    border-radius: 999px;
    color: var(--pt-forest);
    font-weight: 600;
}

/* ========== ABOUT PAGE ========== */
.ab-story { background: #fff; }
.ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.ab-story-media {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 0.85rem;
    align-items: stretch;
}
.ab-story-main {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 18px 44px rgba(12, 61, 56, 0.12);
}
.ab-story-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ab-story-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
}
.ab-story-stack img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 10px 28px rgba(12, 61, 56, 0.08);
}
.ab-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pt-green);
    margin-bottom: 0.75rem;
}
.ab-story-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.55rem);
    line-height: 1.15;
    color: var(--pt-forest);
    margin-bottom: 1.25rem;
}
.ab-story-copy h2 em {
    font-style: italic;
    color: var(--pt-green);
}
.ab-story-text p {
    color: var(--pt-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.ab-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.ab-founder {
    background: var(--pt-forest);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.ab-founder-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}
.ab-founder-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pt-yellow);
    margin-bottom: 0.55rem;
}
.ab-founder-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: #fff;
    margin-bottom: 0.45rem;
}
.ab-founder-info > p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.25rem;
    max-width: 34rem;
}
.ab-founder-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.55rem;
}
.ab-founder-meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}
.ab-founder-meta i { color: var(--pt-yellow); margin-top: 0.15rem; }
.ab-founder-meta a {
    color: #fff;
    text-decoration: none;
}
.ab-founder-meta a:hover { color: var(--pt-yellow); }
.ab-founder-social {
    display: flex;
    gap: 0.55rem;
}
.ab-founder-social a {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}
.ab-founder-social a:hover {
    background: #fff;
    color: var(--pt-forest);
}
.ab-founder-quote {
    margin: 0;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}
.ab-founder-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-style: italic;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 1rem;
}
.ab-founder-quote cite {
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.ab-mv { background: var(--pt-cream); }
.ab-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.ab-mv-card {
    background: #fff;
    border: 1px solid var(--pt-line);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: 0 8px 28px rgba(12, 61, 56, 0.05);
    height: 100%;
}
.ab-mv-card--alt {
    background: var(--pt-forest);
    border-color: transparent;
    color: #fff;
}
.ab-mv-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--pt-cream);
    color: var(--pt-green);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.ab-mv-card--alt .ab-mv-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--pt-yellow);
}
.ab-mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--pt-forest);
    margin-bottom: 0.65rem;
}
.ab-mv-card--alt h3 { color: #fff; }
.ab-mv-card p {
    margin: 0;
    color: var(--pt-muted);
    line-height: 1.7;
}
.ab-mv-card--alt p { color: rgba(255, 255, 255, 0.85); }

.ab-values {
    background: #fff;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.ab-values-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.ab-value-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    background: var(--pt-cream);
    border: 1px solid var(--pt-line);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--pt-forest);
}

.ab-facilities { background: var(--pt-cream); }
.ab-facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}
.ab-facility-card {
    background: #fff;
    border: 1px solid var(--pt-line);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ab-facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(12, 61, 56, 0.1);
}
.ab-facility-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--pt-cream);
    color: var(--pt-green);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin: 0 auto 0.85rem;
}
.ab-facility-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--pt-forest);
    margin-bottom: 0.35rem;
}
.ab-facility-card p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--pt-muted);
}

.ab-timeline { background: #fff; }
.ab-timeline-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    position: relative;
}
.ab-timeline-list::before {
    content: '';
    position: absolute;
    left: 4.25rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--pt-line);
}
.ab-timeline-item {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.5rem;
    position: relative;
}
.ab-timeline-item:last-child { margin-bottom: 0; }
.ab-timeline-marker {
    position: relative;
    z-index: 1;
}
.ab-timeline-marker span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    padding: 0.45rem 0.7rem;
    background: var(--pt-forest);
    color: #fff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.ab-timeline-body {
    background: var(--pt-cream);
    border: 1px solid var(--pt-line);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
}
.ab-timeline-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--pt-forest);
    margin-bottom: 0.35rem;
}
.ab-timeline-body p {
    margin: 0;
    color: var(--pt-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.ab-cta {
    background: linear-gradient(135deg, var(--pt-forest) 0%, #134a44 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    text-align: center;
}
.ab-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    color: #fff;
    margin-bottom: 0.65rem;
}
.ab-cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}
.ab-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}
.ab-cta .btn-pt-primary {
    background: var(--pt-yellow);
    border-color: var(--pt-yellow);
    color: var(--pt-forest) !important;
}
.ab-cta .btn-pt-primary:hover {
    background: #fff;
    border-color: #fff;
}
.ab-cta .btn-pt-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff !important;
}
.ab-cta .btn-pt-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .ab-story-grid,
    .ab-founder-inner,
    .ab-mv-grid {
        grid-template-columns: 1fr;
    }
    .ab-facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ab-story-main { min-height: 320px; }
    .ab-timeline-list::before { left: 2.6rem; }
    .ab-timeline-item {
        grid-template-columns: 5.25rem 1fr;
        gap: 0.85rem;
    }
}
@media (max-width: 575.98px) {
    .ab-story-media { grid-template-columns: 1fr; }
    .ab-story-stack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .ab-facility-grid { grid-template-columns: 1fr; }
    .ab-timeline-list::before { display: none; }
    .ab-timeline-item { grid-template-columns: 1fr; }
}

/* Legacy about helpers kept for safety */
.about-page-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
.about-page-photo-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--pt-line);
}
.about-page-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}
.about-story p {
    color: var(--pt-muted);
    margin-bottom: 1rem;
}
.about-page-card h3 {
    font-family: var(--font-display);
    color: var(--pt-forest);
}
.about-page-card-role {
    color: var(--pt-muted);
    font-size: 0.88rem;
}
.about-page-card a {
    color: var(--pt-green);
    text-decoration: none;
}
.about-page-card a:hover { color: var(--pt-forest); }

.pt-product-meta {
    font-size: 0.78rem;
    color: var(--pt-muted);
    margin-bottom: 0.35rem;
}
.pt-product-price-old {
    font-size: 0.85rem;
    color: var(--pt-muted);
    text-decoration: line-through;
    margin-right: 0.35rem;
    font-weight: 500;
}
.pt-product-badge-sale {
    left: auto !important;
    right: 0.75rem;
    top: 0.75rem;
    background: #c0392b !important;
    color: #fff !important;
    border-color: transparent !important;
}

.pt-filter-panel {
    background: var(--pt-cream);
    border: 1px solid var(--pt-line);
    border-radius: 14px;
    padding: 1.35rem 1.2rem;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.04);
}
.pt-filter-panel .form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pt-forest);
}
.pt-filter-panel .form-control,
.pt-filter-panel .form-select {
    border-radius: 10px;
    border-color: var(--pt-line);
}
.pt-filter-panel .form-control:focus,
.pt-filter-panel .form-select:focus {
    border-color: var(--pt-green);
    box-shadow: 0 0 0 0.2rem rgba(26, 92, 84, 0.15);
}

.pt-inner-breadcrumb {
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
}
.pt-inner-breadcrumb .breadcrumb-item a {
    color: var(--pt-green);
    text-decoration: none;
}
.pt-inner-breadcrumb .breadcrumb-item.active {
    color: var(--pt-muted);
}

.pt-product-detail-media {
    background: #fff;
    border: 1px solid var(--pt-line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.05);
}
.pt-product-detail-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.pt-contact-form-card,
.pt-contact-info-card {
    background: #fff;
    border: 1px solid var(--pt-line);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.05);
    height: 100%;
}
.pt-contact-info-card h2,
.pt-contact-form-card h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--pt-forest);
    margin-bottom: 1.15rem;
}
.pt-contact-info-card p {
    color: var(--pt-muted);
}
.pt-contact-info-card i {
    color: var(--pt-green);
}
.pt-map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--pt-line);
    box-shadow: 0 4px 18px rgba(12, 61, 56, 0.05);
}

@media (max-width: 991.98px) {
    .about-page-intro {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1199.98px) {
    .pt-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .pt-product-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .col-lg-9 .pt-product-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 991.98px) {
    :root { --header-offset: 108px; }
    .pt-hero {
        min-height: clamp(480px, 85vh, 640px);
    }
    .pt-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .pt-hero-social {
        align-self: flex-start;
    }
    .pt-story-grid { grid-template-columns: 1fr; }
    .pt-features-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-feature-item:nth-child(odd) { border-left: 0; }
    .pt-feature-item:nth-child(n+3) { border-top: 1px solid var(--pt-line); padding-top: 1.25rem; }
    .pt-testimonial-grid { grid-template-columns: 1fr; }
    .top-announce-inner { justify-content: center; text-align: center; }

    .site-navbar .navbar-collapse {
        background: #fff;
        padding: 0.75rem 0 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid var(--pt-line);
    }
    .site-nav-links {
        margin: 0;
        width: 100%;
        padding: 0.25rem 0;
    }
    .site-navbar .nav-link {
        padding: 0.65rem 0.25rem !important;
        white-space: normal;
    }
    .site-navbar .nav-link.active::after { display: none; }
    .site-navbar .dropdown-menu {
        position: static !important;
        float: none;
        border: none;
        box-shadow: none;
        padding: 0 0 0 0.75rem;
        margin: 0;
        background: transparent;
    }
    .site-navbar .dropdown-item {
        padding: 0.5rem 0.25rem;
    }
    .nav-tools {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--pt-line);
        width: 100%;
        justify-content: flex-start;
    }
}
@media (max-width: 767.98px) {
    .pt-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pt-blog-grid { grid-template-columns: 1fr !important; }
    .pt-product-grid,
    .col-lg-9 .pt-product-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .pt-promo-inner { justify-content: center; text-align: center; }
    .pt-promo-plant { display: none; }
}
@media (max-width: 575.98px) {
    .pt-features-grid { grid-template-columns: 1fr; }
    .pt-feature-item { border-left: 0 !important; border-top: 1px solid var(--pt-line); padding-top: 1rem; }
    .pt-feature-item:first-child { border-top: 0; padding-top: 0; }
    .pt-product-grid,
    .col-lg-9 .pt-product-grid { grid-template-columns: 1fr !important; }
    .pt-gallery-grid { grid-template-columns: 1fr; }
}
