/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* ── Hero ── */
.petz-hp-hero {
    background: linear-gradient(135deg, #f0fdf7 0%, #e8f5ff 50%, #f5f0ff 100%);
    padding: 0;
    overflow: hidden;
}
.petz-hp-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    min-height: 480px;
}
.petz-hp-hero__content {
    padding: 3rem 1rem 3rem 2rem;
}
.petz-hp-hero__badge {
    display: inline-block;
    background: rgba(21, 217, 149, 0.12);
    color: #0a8f5c;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}
.petz-hp-hero__content h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #1a192b;
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 800;
}
.petz-hp-hero__content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 520px;
}
.petz-hp-hero__cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.petz-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 0.01em;
}
.petz-btn--primary {
    background: linear-gradient(130deg, #15d995, #10c586);
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(21, 217, 149, 0.35);
}
.petz-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 217, 149, 0.45);
    color: #fff !important;
}
.petz-btn--outline {
    background: #fff;
    color: #0fb87e !important;
    border: 2px solid #15d995;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.petz-btn--outline:hover {
    background: #0fb87e;
    border-color: #0fb87e;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 184, 126, 0.3);
}
.petz-hp-hero__stats {
    display: flex;
    gap: 2.5rem;
}
.petz-hp-hero__stats > div {
    text-align: left;
}
.petz-hp-hero__stats strong {
    display: block;
    font-size: 1.6rem;
    color: #15d995;
    font-weight: 800;
    line-height: 1.2;
}
.petz-hp-hero__stats span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.petz-hp-hero__visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px 0 0 0;
    aspect-ratio: 4/3; /* Reserve space to prevent CLS */
}
.petz-hp-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
    max-height: 480px;
}

/* ── Section Headers ── */
.petz-hp-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.petz-hp-section-header h2 {
    font-size: 1.8rem;
    color: #1a192b;
    margin-bottom: 0.5rem;
    display: inline-block;
    border-bottom: none;
}
.petz-hp-section-header p {
    color: #777;
    font-size: 1.05rem;
}

/* ── Category Grid ── */
.petz-hp-categories {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 480px; /* Reserve height to prevent CLS */
}
.petz-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    contain: layout style; /* Isolate layout shifts */
}
.petz-cat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 180px; /* Prevent CLS during emoji/font render */
}
.petz-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.petz-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--card-color);
}
.petz-cat-card:hover::before {
    opacity: 1;
}
.petz-cat-card__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}
.petz-cat-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.3rem;
    color: #1a192b;
}
.petz-cat-card p {
    font-size: 0.82rem;
    color: #888;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}
.petz-cat-card__count {
    font-size: 0.72rem;
    color: var(--card-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Reviews Grid ── */
.petz-hp-reviews {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}
.petz-review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.petz-review-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.petz-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.petz-review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.petz-review-card:hover img {
    transform: scale(1.05);
}
.petz-review-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    padding: 2rem 1rem 1.2rem;
}
.petz-review-card__label {
    display: inline-block;
    background: linear-gradient(130deg, #15d995, #17EBD2);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}
.petz-review-card__overlay h4 {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

/* ── Latest Posts Grid ── */
.petz-hp-latest {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.petz-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.petz-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.petz-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.petz-post-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: block;
}
.petz-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.petz-post-card:hover .petz-post-card__image img {
    transform: scale(1.05);
}
.petz-post-card__badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: rgba(255,255,255,0.95);
    color: #1a192b;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
}
.petz-post-card__body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.petz-post-card__body h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.petz-post-card__body h3 a {
    color: #1a192b;
    text-decoration: none;
}
.petz-post-card__body h3 a:hover {
    color: #15d995;
}
.petz-post-card__body p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    flex: 1;
    margin: 0 0 0.8rem;
}
.petz-post-card__date {
    font-size: 0.72rem;
    color: #aaa;
    font-weight: 500;
}

/* ── Trust Section ── */
.petz-hp-trust {
    background: #1a192b;
    padding: 3.5rem 2rem;
}
.petz-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.petz-trust-item {
    text-align: center;
}
.petz-trust-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}
.petz-trust-item h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.4rem;
}
.petz-trust-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ── Trending Articles Section (replaces old Guides Grid) ── */
.petz-hp-trending {
    padding: 3rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.petz-trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.petz-trending-grid .petz-post-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.petz-trending-grid .petz-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
    .petz-trending-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Header Search Icon ── */
.petz-header-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(21,217,149,0.1);
    color: #0fb87e;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    margin-left: 12px;
    vertical-align: middle;
}
.petz-header-search:hover {
    background: #0fb87e;
    color: #fff;
    transform: scale(1.1);
}

/* ── Homepage: hide page-header hero ── */
.page-id-65 .petz-hero,
.home .petz-hero {
    display: none !important;
}
.page-id-65 .entry-content {
    max-width: none;
}
.page-id-65 .entry-content h2 {
    border-bottom: none;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .petz-hp-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .petz-hp-hero__visual {
        max-height: 300px;
    }
    .petz-hp-hero__visual img {
        border-radius: 0;
        max-height: 300px;
    }
    .petz-hp-hero__content {
        padding: 2.5rem 1.5rem 1rem;
    }
    .petz-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .petz-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .petz-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .petz-trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .petz-hp-hero__content h1 { font-size: 1.7rem; }
    .petz-hp-hero__stats { gap: 1.5rem; }
    .petz-hp-hero__stats strong { font-size: 1.3rem; }
    .petz-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .petz-cat-card { padding: 1rem; min-height: 150px; }
    .petz-cat-card__icon { font-size: 2rem; }
    .petz-review-grid { grid-template-columns: 1fr 1fr; }
    .petz-posts-grid { grid-template-columns: 1fr; }
    .petz-guides-grid { grid-template-columns: 1fr; }
    .petz-trust-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .petz-hp-categories { min-height: 420px; }
    .petz-cat-featured-grid { grid-template-columns: 1fr; }
    .petz-cat-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   FLOATING SEARCH BUTTON + OVERLAY
   ============================================ */
.petz-search-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    background: #1a8a6a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26,138,106,0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.petz-search-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(26,138,106,0.5);
}
.petz-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.petz-search-overlay.active { display: flex; }
.petz-search-overlay form {
    width: 90%;
    max-width: 600px;
}
.petz-search-overlay input[type="search"] {
    width: 100%;
    padding: 20px 25px;
    font-size: 22px;
    border: none;
    border-radius: 50px;
    background: white;
    outline: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.petz-search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================
   CATEGORY LANDING PAGES
   ============================================ */

/* Hero fallback gradient */
.petz-hero__bg--gradient {
    opacity: 1 !important;
}

/* Category Landing Layout */
.petz-cat-landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}
.petz-cat-landing__header {
    text-align: center;
    padding: 2rem 0 1.5rem;
}
.petz-cat-landing__emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}
.petz-cat-landing__header h1 {
    font-size: 1.8rem;
    color: #1a192b;
    margin: 0 0 0.8rem;
    font-weight: 800;
    border-bottom: none;
    display: inline-block;
}
.petz-cat-landing__header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}
.petz-cat-landing__count {
    display: inline-block;
    margin-top: 0.8rem;
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Subcategory filter pills */
.petz-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}
.petz-cat-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: #555;
    background: #f0f0f0;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.petz-cat-pill:hover,
.petz-cat-pill--active {
    color: var(--pill-color, #15d995);
    background: rgba(21, 217, 149, 0.08);
    border-color: var(--pill-color, #15d995);
}

/* Featured articles (top 4, large) */
.petz-cat-featured {
    margin-bottom: 3rem;
}
.petz-cat-featured h2 {
    font-size: 1.4rem;
    color: #1a192b;
    margin-bottom: 1.2rem;
    border-bottom: none;
}
.petz-cat-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Category card (shared between featured + grid) */
.petz-cat-landing .petz-cat-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: auto;
    border: 2px solid transparent;
    padding: 0;
    text-align: left;
}
.petz-cat-landing .petz-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: #e8e8e8;
}
.petz-cat-card__img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}
.petz-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.petz-cat-landing .petz-cat-card:hover .petz-cat-card__img img {
    transform: scale(1.05);
}
.petz-cat-card__body {
    padding: 1rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.petz-cat-card__badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}
.petz-cat-card__body h3 {
    font-size: 1rem;
    color: #1a192b;
    margin: 0 0 0.4rem;
    line-height: 1.35;
    font-weight: 600;
}
.petz-cat-card__body p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin: 0 0 0.6rem;
    flex: 1;
}
.petz-cat-card__meta {
    font-size: 0.72rem;
    color: #aaa;
    font-weight: 500;
}

/* Compact card (subcategory grids) */
.petz-cat-card--compact .petz-cat-card__body {
    padding: 0.8rem 1rem;
}
.petz-cat-card--compact .petz-cat-card__body h3 {
    font-size: 0.92rem;
}

/* Subcategory sections */
.petz-cat-section {
    margin-bottom: 2.5rem;
}
.petz-cat-section h2 {
    font-size: 1.3rem;
    color: #1a192b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #15d995;
}

/* Article grid (3-column) */
.petz-cat-landing .petz-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    contain: initial;
}

/* Responsive for category landing */
@media (max-width: 992px) {
    .petz-cat-featured-grid { grid-template-columns: 1fr 1fr; }
    .petz-cat-landing .petz-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .petz-cat-featured-grid { grid-template-columns: 1fr; }
    .petz-cat-landing .petz-cat-grid { grid-template-columns: 1fr 1fr; }
    .petz-cat-landing__header h1 { font-size: 1.4rem; }
    .petz-cat-pills { gap: 0.3rem; }
    .petz-cat-pill { font-size: 0.75rem; padding: 5px 12px; }
}

/* ============================================
   P2 #10: MOBILE LOGO PADDING
   ============================================ */
@media (max-width: 768px) {
    .ast-container,
    .site-header .ast-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .ast-header-custom-item .custom-logo-link img,
    .site-logo-img .custom-logo {
        max-width: 90% !important;
    }
}

/* ============================================
   P2 #11: STICKY HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* ============================================
   P2 #12: SOCIAL ICONS WITH LABELS
   ============================================ */
.petz-footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.petz-footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: #ccc !important;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.petz-footer-social a:hover {
    background: rgba(21,217,149,0.15);
    color: #15d995 !important;
    border-color: rgba(21,217,149,0.3);
    transform: translateY(-2px);
}
.petz-footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ============================================
   P2 #13: NEWSLETTER CAPTURE
   ============================================ */
.petz-newsletter {
    background: linear-gradient(135deg, #0a8f5c 0%, #15d995 50%, #17EBD2 100%);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.petz-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.petz-newsletter__inner {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.petz-newsletter h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}
.petz-newsletter p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}
.petz-newsletter__form {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
    margin: 0 auto;
}
.petz-newsletter__form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    outline: none;
    background: #fff;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.petz-newsletter__form input[type="email"]::placeholder {
    color: #aaa;
}
.petz-newsletter__form button {
    padding: 14px 28px;
    background: #1a192b;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.petz-newsletter__form button:hover {
    background: #2d2c3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.petz-newsletter__success {
    display: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem;
}
.petz-newsletter__success.show {
    display: block;
}
@media (max-width: 600px) {
    .petz-newsletter__form {
        flex-direction: column;
    }
    .petz-newsletter__form button {
        width: 100%;
    }
    .petz-newsletter h3 { font-size: 1.3rem; }
}

/* ============================================
   P2 #14: LOAD MORE BUTTON
   ============================================ */
.petz-load-more-wrap {
    text-align: center;
    margin: 2rem 0 1rem;
}
.petz-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #fff;
    color: #0fb87e;
    border: 2px solid #0fb87e;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.petz-load-more:hover {
    background: #0fb87e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15,184,126,0.25);
}
.petz-load-more.loading {
    opacity: 0.6;
    pointer-events: none;
}
.petz-load-more .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
.petz-load-more.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
