/*
Theme Name: Petova Integral
Theme URI: https://petova.com.tr
Author: Petova Team
Author URI: https://petova.com.tr
Description: Petova için mansetli haber-blog teması — Poppins font, sıcak turuncu palet, sticky header, dark mode, mansetli anasayfa, içindekiler tablosu, çok sütunlu footer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: petova-integral
*/

:root {
    --p-primary: #f2712a;
    --p-primary-2: #f27a3a;
    --p-primary-3: #faa733;
    --p-primary-4: #fceeee;
    --p-primary-rgb: 242, 113, 42;

    --p-bg: #f5f5f5;
    --p-bg-light: #f5f5f5;
    --p-bg-dark: #e6e6e6;
    --p-card: #ffffff;
    --p-text: #353535;
    --p-text-muted: #707070;
    --p-text-soft: #9b9b9b;
    --p-border: #e6e6e6;

    --p-header-bg: #ffffff;
    --p-header-link: #313131;
    --p-header-link-hover: #f2712a;

    --p-radius: 8px;
    --p-radius-sm: 5px;
    --p-radius-lg: 12px;
    --p-shadow-sm: 0 0 3px rgb(0 0 0 / 9%);
    --p-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --p-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);

    --p-container: 1320px;
    --p-gap: 24px;

    --p-font: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --p-font-size: 15px;
    --p-line-height: 1.7;

    --p-gradient: linear-gradient(135deg, var(--p-primary) 0%, var(--p-primary-3) 100%);

    /* Legacy aliases for mu-plugin compatibility (calculator, footer, etc.) */
    --primary: var(--p-primary);
    --primary-2: var(--p-primary-2);
    --primary-3: var(--p-primary-3);
    --primary-4: var(--p-primary-4);
    --white: var(--p-card);
    --dark: var(--p-text);
    --bg-light: var(--p-bg-light);
    --bg-dark: var(--p-bg-dark);
    --body: var(--p-bg);
    --border: var(--p-border);
    --text: var(--p-text);
    --text-muted: var(--p-text-muted);
    --border-radius: var(--p-radius);
    --border-radius-img: var(--p-radius-sm);
    --box-shadow: var(--p-shadow-sm);
}



* { box-sizing: border-box; margin: 0; padding: 0; }
.pp-skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--p-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    transition: top .2s;
}
.pp-skip-link:focus { top: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--p-font);
    font-size: var(--p-font-size);
    line-height: var(--p-line-height);
    color: var(--p-text);
    background: var(--p-card);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: var(--p-primary); text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a:hover { color: var(--p-primary-3); }
ul, ol { list-style: none; }

.pp-container {
    max-width: var(--p-container);
    margin: 0 auto;
    padding: 0 20px;
    
}

/* ============ TICKER (üst haber bandı) ============ */
.pp-ticker {
    background: linear-gradient(to right, var(--p-primary), var(--p-primary-3));
    color: #fff;
    position: relative;
    z-index: 5;
}
.pp-ticker-inner {
    display: flex;
    align-items: stretch;
    height: 44px;
    position: relative;
}
.pp-ticker-label {
    background: rgba(0,0,0,.18);
    color: #fff;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.pp-ticker-label::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    bottom: 0;
    width: 10px;
    background: linear-gradient(to right, rgba(0,0,0,.18), transparent);
    pointer-events: none;
}
.pp-ticker-list {
    flex: 1;
    
    margin-left: 18px;
    position: relative;
}
.pp-ticker-list ul {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    gap: 64px;
    animation: ppTicker 60s linear infinite;
    will-change: transform;
}
.pp-ticker-list a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pp-ticker-list a::before {
    content: "•";
    color: rgba(255,255,255,.7);
    font-size: 18px;
    line-height: 1;
}
.pp-ticker-list a:hover { text-decoration: underline; }
.pp-ticker-list:hover ul { animation-play-state: paused; }
@keyframes ppTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ HEADER ============ */
.pp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--p-header-bg);
    border-bottom: 1px solid var(--p-border);
    transition: background .2s;
}
.pp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 30px;
}
.pp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    color: var(--p-text);
    text-decoration: none;
    flex-shrink: 0;
}
.pp-logo img { height: 44px; width: auto; }
.pp-logo-text { color: var(--p-text); }
.pp-logo-dot { color: var(--p-primary); }

.pp-nav { flex: 1; }
.pp-nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
}
.pp-nav-menu > li { position: relative; }
.pp-nav-menu > li > a {
    display: block;
    padding: 10px 14px;
    color: var(--p-header-link);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all .2s;
}
.pp-nav-menu > li > a:hover,
.pp-nav-menu > li.current-menu-item > a {
    color: var(--p-primary);
    background: var(--p-primary-4);
}
.pp-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--p-card);
    box-shadow: var(--p-shadow);
    border-radius: var(--p-radius);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s;
    z-index: 10;
}
.pp-nav-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pp-nav-menu .sub-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--p-text);
    border-radius: 6px;
    font-size: 14px;
}
.pp-nav-menu .sub-menu a:hover {
    background: var(--p-primary-4);
    color: var(--p-primary);
}

.pp-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pp-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--p-border);
    color: var(--p-text);
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s;
    font-size: 16px;
}
.pp-icon-btn:hover {
    background: var(--p-primary);
    border-color: var(--p-primary);
    color: #fff;
}
.pp-icon-btn svg { width: 18px; height: 18px; }

/* Mobile menu toggle (hidden on desktop) */
.pp-menu-toggle { display: none; }

/* ============ DESCRIPTION BAR ============ */
.pp-desc-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--p-card);
    padding: 14px 22px;
    margin-bottom: 24px;
    border-radius: var(--p-radius);
    border-left: none;
    border-bottom: 1px solid var(--p-border);
    border-radius: 0;
    box-shadow: var(--p-shadow-sm);
    font-size: 14.5px;
    color: var(--p-text);
    font-weight: 500;
}
.pp-desc-bar-icon {
    width: 40px;
    height: 40px;
    background: var(--p-primary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ============ HERO SLIDER + SIDEBAR ============ */
.pp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin-bottom: 24px;
}
.pp-hero-slider {
    position: relative;
    border-radius: var(--p-radius-lg);
    
    background: var(--p-bg-dark);
    aspect-ratio: 16 / 9.5;
}
.pp-hero-slides { position: relative; width: 100%; height: 100%; }
.pp-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}
.pp-hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.pp-hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(3px);
    transform: scale(1.08);
}
.pp-hero-slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--p-primary), var(--p-primary-3));
}
.pp-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
}
.pp-hero-slide-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 32px;
    z-index: 2;
    color: #fff;
}
.pp-manset-cat {
    display: inline-block;
    background: var(--p-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(242,113,42,0.4);
}
.pp-hero-slide-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.32;
    margin-bottom: 12px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pp-hero-slide-meta {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: rgba(255,255,255,.9);
    align-items: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.pp-hero-slide-meta span { display: flex; align-items: center; gap: 5px; }

/* Slider pagination bar */
.pp-hero-pag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 5;
}
.pp-hero-pag-btn {
    flex: 1;
    padding: 13px 0;
    background: rgba(0,0,0,.55);
    color: rgba(255,255,255,.75);
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    border-right: 1px solid rgba(255,255,255,.08);
}
.pp-hero-pag-btn:last-child { border-right: none; }
.pp-hero-pag-btn:hover { background: rgba(242,113,42,.6); color: #fff; }
.pp-hero-pag-btn.active {
    background: var(--p-primary);
    color: #fff;
}

/* Hero sidebar list */
.pp-hero-list {
    background: var(--p-card);
    border-radius: var(--p-radius-lg);
    box-shadow: var(--p-shadow-sm);
    display: flex;
    flex-direction: column;
    
}
.pp-hero-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--p-border);
    text-decoration: none;
    transition: background .2s;
    flex: 1;
}
.pp-hero-list-item:last-child { border-bottom: none; }
.pp-hero-list-item:hover { background: var(--p-bg-light); }
.pp-hero-list-img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    
    flex-shrink: 0;
    border: 3px solid var(--p-primary);
    background: var(--p-bg-dark);
}
.pp-hero-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pp-hero-list-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--p-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
}
.pp-hero-list-item:hover .pp-hero-list-title { color: var(--p-primary); }

/* ============ STORY BAR (trending) ============ */
.pp-stories {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 16px 0 20px;
    margin-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    border-bottom: 1px solid var(--p-border);
    padding-bottom: 20px;
    margin-bottom: 28px;
}
.pp-stories::-webkit-scrollbar { display: none; }
.pp-story {
    flex-shrink: 0;
    text-align: center;
    width: 82px;
    min-width: 82px;
    text-decoration: none;
    scroll-snap-align: start;
}
.pp-story-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, var(--p-primary), #e91e63, var(--p-primary-3)) border-box;
    margin: 0 auto 6px;
    transition: transform .2s;
    padding: 3px;
}

.pp-story:hover .pp-story-img { transform: scale(1.08); }
.pp-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.pp-story:hover .pp-story-img {
    transform: scale(1.08);
}
.pp-story-title {
    font-size: 10px;
    color: var(--p-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
    display: block;
}

/* ============ FEATURED HORIZONTAL SLIDER ============ */
.pp-featured-row {
    position: relative;
    margin-bottom: 40px;
}
.pp-featured-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}
.pp-featured-scroll::-webkit-scrollbar { display: none; }
.pp-featured-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 260px;
    aspect-ratio: 4 / 3.2;
    position: relative;
    border-radius: var(--p-radius);
    
    scroll-snap-align: start;
    display: block;
    text-decoration: none;
    background: var(--p-bg-dark);
}
.pp-featured-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.pp-featured-card:hover img { transform: scale(1.06); }
.pp-featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
    pointer-events: none;
}
.pp-featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    color: #fff;
}
.pp-featured-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
}
.pp-featured-card-date {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pp-featured-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s;
    backdrop-filter: blur(4px);
}
.pp-featured-nav:hover { background: var(--p-primary); }
.pp-featured-prev { left: -16px; }
.pp-featured-next { right: -16px; }
@media (max-width: 991px) {
    .pp-featured-card { flex: 0 0 calc(33.33% - 11px); min-width: 220px; }
    .pp-featured-prev { left: 6px; }
    .pp-featured-next { right: 6px; }
}
@media (max-width: 600px) {
    .pp-featured-card { flex: 0 0 calc(80%); min-width: 260px; }
}

/* ============ MAIN LAYOUT ============ */
.pp-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    margin-bottom: 50px;
}
.pp-main.no-sidebar { grid-template-columns: 1fr; }
.pp-content { min-width: 0; }

/* Section heading */
.pp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--p-border);
    position: relative;
}
.pp-section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 3px;
    background: var(--p-primary);
    border-radius: 2px;
}
.pp-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--p-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pp-section-title-icon {
    width: 32px;
    height: 32px;
    background: var(--p-primary);
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.pp-section-link {
    font-size: 13px;
    color: var(--p-primary);
    font-weight: 500;
}

/* ============ POST GRID + CARDS ============ */
.pp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.pp-grid-3 { grid-template-columns: repeat(3, 1fr); }

.pp-card {
    background: var(--p-card);
    border-radius: var(--p-radius);
    
    box-shadow: var(--p-shadow-sm);
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.pp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
}
.pp-card-img {
    position: relative;
    aspect-ratio: 16/10;
    
    background: var(--p-bg-dark);
}
.pp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.pp-card:hover .pp-card-img img {
    transform: scale(1.06);
}
.pp-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--p-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}
.pp-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pp-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}
.pp-card-title a { color: var(--p-text); }
.pp-card-title a:hover { color: var(--p-primary); }
.pp-card-excerpt {
    font-size: 14px;
    color: var(--p-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
}
.pp-card-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--p-text-soft);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--p-border);
    align-items: center;
}
.pp-card-meta span { display: flex; align-items: center; gap: 5px; }

/* ============ SIDEBAR ============ */
.pp-sidebar {
    min-width: 0;
}
.pp-widget {
    background: var(--p-card);
    border-radius: var(--p-radius);
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: var(--p-shadow-sm);
}
.pp-widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--p-border);
    position: relative;
    color: var(--p-text);
}
.pp-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--p-primary);
}
.pp-widget ul li {
    padding: 9px 0;
    border-bottom: 1px solid var(--p-border);
    font-size: 14px;
}
.pp-widget ul li:last-child { border-bottom: none; }
.pp-widget ul li a {
    color: var(--p-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pp-widget ul li a:hover { color: var(--p-primary); }
.pp-widget .post-count {
    background: var(--p-primary-4);
    color: var(--p-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 10px;
}

/* Popular posts in sidebar */
.pp-pop-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--p-border);
}
.pp-pop-post:last-child { border-bottom: none; }
.pp-pop-post-img {
    width: 78px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    
    background: var(--p-bg-dark);
}
.pp-pop-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pp-pop-post-content {
    flex: 1;
    min-width: 0;
}
.pp-pop-post-title {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
}
.pp-pop-post-title a { color: var(--p-text); }
.pp-pop-post-title a:hover { color: var(--p-primary); }
.pp-pop-post-date {
    font-size: 11px;
    color: var(--p-text-soft);
}

/* CTA widget */
.pp-widget-cta {
    background: linear-gradient(135deg, var(--p-primary), var(--p-primary-3)) !important;
    text-align: center;
    border: none;
    color: #fff;
    padding: 28px 22px !important;
}
.pp-cta-emoji { font-size: 40px; margin-bottom: 10px; }
.pp-cta-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.pp-cta-desc {
    font-size: 14px;
    color: rgba(255,255,255,.88);
    margin-bottom: 16px;
    line-height: 1.5;
}
.pp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: var(--p-primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
    text-decoration: none;
}
.pp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--p-primary);
}

/* Tag cloud */
.pp-tagcloud { display: flex; flex-wrap: wrap; gap: 6px; }
.pp-tagcloud a {
    font-size: 12px !important;
    background: var(--p-bg-light);
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--p-text-muted);
    transition: all .2s;
}
.pp-tagcloud a:hover {
    background: var(--p-primary);
    color: #fff;
}

/* ============ SINGLE POST ============ */
.pp-single {
    background: var(--p-card);
    border-radius: var(--p-radius-lg);
    padding: 36px;
    box-shadow: var(--p-shadow-sm);
}
.pp-breadcrumb {
    font-size: 13px;
    color: var(--p-text-muted);
    margin-bottom: 18px;
}
.pp-breadcrumb a { color: var(--p-text-muted); }
.pp-breadcrumb a:hover { color: var(--p-primary); }
.pp-breadcrumb .sep { margin: 0 6px; opacity: .5; }

.pp-single-cat {
    display: inline-block;
    background: var(--p-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.pp-single-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--p-text);
}
.pp-single-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--p-border);
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--p-text-muted);
    flex-wrap: wrap;
}
.pp-single-meta-item { display: flex; align-items: center; gap: 6px; }
.pp-single-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--p-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}
.pp-single-feat-img {
    margin: 0 -36px 28px;
    
}
.pp-single-feat-img img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
}
.pp-single-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--p-text);
}
.pp-single-content p { margin-bottom: 18px; }
.pp-single-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 32px 0 18px;
    padding-left: 14px;
    border-left: none;
    border-bottom: 1px solid var(--p-border);
    border-radius: 0;
    color: var(--p-text);
}
.pp-single-content h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 26px 0 14px;
    color: var(--p-text);
}
.pp-single-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 22px 0 12px;
    color: var(--p-text);
}
.pp-single-content ul, .pp-single-content ol {
    margin: 0 0 20px 22px;
    list-style: disc;
}
.pp-single-content ol { list-style: decimal; }
.pp-single-content li { margin-bottom: 8px; }
.pp-single-content a {
    color: var(--p-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.pp-single-content blockquote {
    border-left: none;
    border-bottom: 1px solid var(--p-border);
    border-radius: 0;
    padding: 14px 22px;
    margin: 22px 0;
    background: var(--p-bg-light);
    border-radius: 0 var(--p-radius) var(--p-radius) 0;
    font-style: italic;
    color: var(--p-text-muted);
}
.pp-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    font-size: 14.5px;
    box-shadow: var(--p-shadow-sm);
    border-radius: var(--p-radius);
    
}
.pp-single-content th {
    background: var(--p-primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.pp-single-content td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--p-border);
}
.pp-single-content tr:nth-child(even) { background: var(--p-bg-light); }
.pp-single-content img {
    border-radius: var(--p-radius);
    margin: 18px 0;
}

/* TOC (içindekiler) */
.pp-toc {
    background: var(--p-bg-light);
    border-radius: var(--p-radius);
    padding: 18px 22px;
    margin-bottom: 28px;
    border-left: none;
    border-bottom: 1px solid var(--p-border);
    border-radius: 0;
}
.pp-toc-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--p-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pp-toc-list { counter-reset: toc-c; padding-left: 0; }
.pp-toc-list li {
    counter-increment: toc-c;
    padding: 4px 0 4px 28px;
    position: relative;
    list-style: none;
    font-size: 14px;
}
.pp-toc-list li::before {
    content: counter(toc-c);
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: var(--p-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pp-toc-list a { color: var(--p-text); }
.pp-toc-list a:hover { color: var(--p-primary); }

/* Author box */
.pp-author-box {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--p-bg-light);
    border-radius: var(--p-radius);
    margin: 36px 0 28px;
    align-items: flex-start;
}
.pp-author-avatar-lg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--p-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    flex-shrink: 0;
}
.pp-author-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--p-text);
}
.pp-author-bio {
    font-size: 14px;
    color: var(--p-text-muted);
    line-height: 1.6;
}

/* Related posts */
.pp-related {
    margin-top: 36px;
}
.pp-related .pp-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pp-related .pp-card-title { font-size: 15px; }
.pp-related .pp-card-img { aspect-ratio: 16/10; }
.pp-related .pp-card-body { padding: 14px 16px 16px; }

/* Share buttons */
.pp-share {
    display: flex;
    gap: 8px;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--p-border);
    border-bottom: 1px solid var(--p-border);
    align-items: center;
    flex-wrap: wrap;
}
.pp-share-label {
    font-weight: 600;
    color: var(--p-text);
    font-size: 13px;
    margin-right: 8px;
}
.pp-share a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--p-bg-light);
    color: var(--p-text-muted);
    font-size: 14px;
    transition: all .2s;
}
.pp-share a:hover {
    background: var(--p-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ============ ARCHIVE / CATEGORY ============ */
.pp-archive-head {
    text-align: center;
    padding: 50px 20px;
    background: var(--p-card);
    border-radius: var(--p-radius-lg);
    margin: 30px 0;
    border-bottom: 4px solid var(--p-primary);
}
.pp-archive-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 10px;
}
.pp-archive-desc {
    color: var(--p-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

/* Pagination */
.pp-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 36px 0;
}
.pp-pagination a, .pp-pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--p-card);
    border: 1px solid var(--p-border);
    border-radius: 8px;
    color: var(--p-text);
    font-weight: 500;
    font-size: 14px;
    transition: all .2s;
    padding: 0 12px;
}
.pp-pagination a:hover, .pp-pagination .current {
    background: var(--p-primary);
    border-color: var(--p-primary);
    color: #fff;
}

/* ============ FOOTER ============ */
.pp-footer {
    background: #181818;
    color: #c0c0c0;
    margin-top: 60px;
    padding: 50px 0 0;
}

.pp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 36px;
}
.pp-footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}
.pp-footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--p-primary);
}
.pp-footer-col ul li {
    padding: 6px 0;
    font-size: 14px;
}
.pp-footer-col ul li a {
    color: #c0c0c0;
    transition: color .2s;
}
.pp-footer-col ul li a:hover {
    color: var(--p-primary);
}
.pp-footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 16px;
}
.pp-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.pp-footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 14px;
    transition: all .2s;
}
.pp-footer-social a:hover {
    background: var(--p-primary);
    transform: translateY(-2px);
}
.pp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* ============ SEARCH MODAL ============ */
.pp-search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}
.pp-search-modal.show { display: flex; }
.pp-search-form {
    width: 90%;
    max-width: 700px;
    background: var(--p-card);
    border-radius: var(--p-radius);
    padding: 8px;
    display: flex;
    align-items: center;
    box-shadow: var(--p-shadow-lg);
}
.pp-search-form input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    background: transparent;
    color: var(--p-text);
    font-size: 17px;
    outline: none;
    font-family: var(--p-font);
}
.pp-search-form button {
    padding: 14px 26px;
    background: var(--p-primary);
    color: #fff;
    border: none;
    border-radius: var(--p-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--p-font);
}
.pp-search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

/* ============ SCROLL TO TOP ============ */
.pp-go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--p-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--p-shadow);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 99;
    font-size: 18px;
}
.pp-go-top.show {
    opacity: 1;
    visibility: visible;
}
.pp-go-top:hover { background: var(--p-primary-3); }

/* ============ SIDEBAR SEARCH WIDGET ============ */
.pp-widget-search {
    background: linear-gradient(135deg, var(--p-primary-4) 0%, rgba(252,238,238,0.5) 100%);
    padding: 16px;
    border: 1px solid rgba(242,113,42,0.15);
}

.pp-sidebar-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--p-card);
    border-radius: 40px;
    padding: 4px 4px 4px 42px;
    box-shadow: var(--p-shadow-sm);
    border: 1px solid var(--p-border);
    transition: all .2s;
}
.pp-sidebar-search:focus-within {
    border-color: var(--p-primary);
    box-shadow: 0 0 0 3px rgba(242,113,42,0.15);
}
.pp-sidebar-search-icon {
    position: absolute;
    left: 16px;
    color: var(--p-text-muted);
    font-size: 14px;
}
.pp-sidebar-search input {
    flex: 1;
    padding: 10px 4px;
    border: none;
    background: transparent;
    color: var(--p-text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    min-width: 0;
}
.pp-sidebar-search input::placeholder { color: var(--p-text-soft); }
.pp-sidebar-search button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--p-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.pp-sidebar-search button:hover {
    background: var(--p-primary-3);
    transform: translateX(2px);
}

/* ============ CALCULATOR HUB (mu-plugin integration) ============ */
/* Fix wpautop injecting <p> and <br> into calc grid */
.petova-calc-grid > p,
.petova-calc-hub > p,
.petova-calc-hub > div > p {
    display: contents !important;
}
.petova-calc-grid br,
.petova-calc-hub br,
.petova-calc-card br {
    display: none !important;
}
.petova-calc-hub { max-width: none !important; }
.petova-calc-hero {
    background: linear-gradient(135deg, var(--p-primary) 0%, var(--p-primary-3) 100%) !important;
    color: #fff !important;
    border-radius: var(--p-radius-lg) !important;
    padding: 50px 40px !important;
    margin-bottom: 40px !important;
    text-align: center;
    box-shadow: var(--p-shadow) !important;
}
.petova-calc-hero h1,
.petova-calc-hero-title {
    color: #fff !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
}
.petova-calc-hero p,
.petova-calc-hero-desc {
    color: rgba(255,255,255,0.92) !important;
    font-size: 16px !important;
    max-width: 700px;
    margin: 0 auto !important;
}
.petova-calc-hero-emoji {
    display: inline-block;
    font-size: 34px;
    margin: 0 6px;
    animation: ppBounce 2s ease-in-out infinite;
}
.petova-calc-hero-emoji:nth-child(2) { animation-delay: 0.2s; }
.petova-calc-hero-emoji:nth-child(3) { animation-delay: 0.4s; }
.petova-calc-hero-emoji:nth-child(4) { animation-delay: 0.6s; }
.petova-calc-hero-emoji:nth-child(5) { animation-delay: 0.8s; }
@keyframes ppBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.petova-calc-hero-stats {
    display: flex !important;
    justify-content: center;
    gap: 40px !important;
    margin-top: 24px !important;
    flex-wrap: wrap;
}
.petova-calc-hero-stat {
    text-align: center;
}
.petova-calc-hero-stat strong {
    display: block;
    font-size: 28px !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.petova-calc-hero-stat span {
    font-size: 13px !important;
    color: rgba(255,255,255,0.85) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.petova-calc-grid,
.petova-calc-cards,
.petova-calc-hub .petova-calc-grid,
div.petova-calc-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
}
.petova-calc-card .ico,
.petova-calc-card > .ico {
    font-size: 40px !important;
    margin-bottom: 14px !important;
    line-height: 1;
}
.petova-calc-card h3,
.petova-calc-card h2 {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 0 8px !important;
    color: var(--p-text) !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1.35;
}
.petova-calc-card p {
    font-size: 14px !important;
    color: var(--p-text-muted) !important;
    line-height: 1.6 !important;
    margin: 0 0 14px !important;
    flex: 1 1 auto;
}
.petova-calc-card .cta {
    color: var(--p-primary) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-top: auto !important;
}
.petova-calc-card .cat-badge {
    display: inline-block !important;
    padding: 4px 11px !important;
    border-radius: 20px !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    align-self: flex-start;
}
.petova-calc-card {
    background: var(--p-card) !important;
    border-radius: var(--p-radius) !important;
    padding: 26px 24px !important;
    box-shadow: var(--p-shadow-sm) !important;
    border: 1px solid var(--p-border) !important;
    transition: all .25s !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 220px;
}
.petova-calc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--p-shadow) !important;
    border-color: var(--p-primary) !important;
}
.petova-calc-card-icon,
.petova-calc-card > .emoji {
    font-size: 34px !important;
    margin-bottom: 14px !important;
    display: inline-block;
}
.petova-calc-card h2,
.petova-calc-card h3,
.petova-calc-card-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 10px !important;
    color: var(--p-text) !important;
    border: none !important;
    padding: 0 !important;
}
.petova-calc-card p,
.petova-calc-card-desc {
    color: var(--p-text-muted) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 0 16px !important;
    flex: 1;
}
.petova-calc-card-cta,
.petova-calc-card .btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 9px 18px !important;
    background: var(--p-primary-4) !important;
    color: var(--p-primary) !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    margin-top: auto;
    align-self: flex-start;
    transition: all .2s;
}
.petova-calc-card:hover .petova-calc-card-cta,
.petova-calc-card:hover .btn {
    background: var(--p-primary) !important;
    color: #fff !important;
}
.petova-calc-featured {
    background: linear-gradient(135deg, var(--p-primary-4), var(--p-card)) !important;
    border: 2px solid var(--p-primary) !important;
    position: relative;
}
.petova-calc-featured::before {
    content: "ÖNE ÇIKAN";
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--p-primary);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.petova-calc-featured-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 20px !important;
    background: var(--p-primary) !important;
    color: #fff !important;
    border-radius: var(--p-radius-sm) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

/* Inside individual calculator pages */
.petova-calc-page,
.petova-calc-wrapper {
    background: var(--p-card);
    border-radius: var(--p-radius-lg);
    padding: 30px;
    box-shadow: var(--p-shadow-sm);
    margin: 20px 0;
}
.petova-calc-page input[type=number],
.petova-calc-page input[type=text],
.petova-calc-page select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-sm);
    background: var(--p-bg-light);
    color: var(--p-text);
    font-size: 15px;
    font-family: inherit;
    transition: all .2s;
    margin-bottom: 14px;
}
.petova-calc-page input:focus,
.petova-calc-page select:focus {
    outline: none;
    border-color: var(--p-primary);
    box-shadow: 0 0 0 3px rgba(242,113,42,0.15);
}
.petova-calc-page button,
.petova-calc-page .btn-submit {
    padding: 12px 28px;
    background: var(--p-primary);
    color: #fff;
    border: none;
    border-radius: var(--p-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    transition: all .2s;
}
.petova-calc-page button:hover { background: var(--p-primary-3); }
.petova-calc-result {
    background: linear-gradient(135deg, var(--p-primary-4), rgba(252,238,238,0.3));
    border-left: none;
    border-bottom: 1px solid var(--p-border);
    border-radius: 0;
    padding: 20px;
    border-radius: var(--p-radius);
    margin-top: 20px;
}

@media (max-width: 991px) {
    .petova-calc-grid,
    .petova-calc-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .petova-calc-hero { padding: 40px 24px !important; }
    .petova-calc-hero h1,
    .petova-calc-hero-title { font-size: 28px !important; }
}
@media (max-width: 768px) {
    .petova-calc-grid,
    .petova-calc-cards,
    .petova-calc-hub .petova-calc-grid,
    div.petova-calc-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .petova-calc-hero { padding: 30px 20px !important; }
    .petova-calc-hero h1,
    .petova-calc-hero-title { font-size: 22px !important; }
    .petova-calc-hero-stats { gap: 16px !important; }
    .petova-calc-card { min-height: auto !important; padding: 18px !important; }
}
@media (max-width: 600px) {
    .petova-calc-hero-stats { flex-direction: column !important; gap: 12px !important; }
}

/* ============ PETOVA CONTENT COMPONENTS (callouts, procons, faq) ============ */
.petova-callout {
    background: var(--p-bg-light);
    border-left: none;
    border-bottom: 1px solid var(--p-border);
    border-radius: 0;
    border-radius: var(--p-radius);
    padding: 18px 22px;
    margin: 22px 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--p-text);
}
.petova-callout strong { font-weight: 600; color: var(--p-text); }
.petova-callout.tldr {
    background: linear-gradient(135deg, var(--p-primary-4), rgba(252,238,238,0.4));
    border-left-color: var(--p-primary);
}

.petova-callout.warn {
    background: #fff7e6;
    border-left-color: #f59e0b;
}

.petova-callout.info {
    background: #e8f4fd;
    border-left-color: #3b82f6;
}


.petova-procons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 26px 0;
}
.petova-pros, .petova-cons {
    background: var(--p-card);
    border-radius: var(--p-radius);
    padding: 20px 22px;
    border: 1px solid var(--p-border);
    box-shadow: var(--p-shadow-sm);
}
.petova-pros { border-top: 4px solid #16a34a; }
.petova-cons { border-top: 4px solid #dc2626; }
.petova-pros h4, .petova-cons h4 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    border: none;
}
.petova-pros h4 { color: #16a34a; }
.petova-cons h4 { color: #dc2626; }
.petova-pros ul, .petova-cons ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.petova-pros ul li, .petova-cons ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 14.5px;
    margin: 0;
    border: none;
}
.petova-pros ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    color: #16a34a;
    font-weight: 700;
}
.petova-cons ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 6px;
    color: #dc2626;
    font-weight: 700;
}

.petova-faq { margin: 24px 0; }
.petova-faq details {
    background: var(--p-card);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: var(--p-shadow-sm);
    transition: all .2s;
}
.petova-faq details[open] {
    border-color: var(--p-primary);
    box-shadow: var(--p-shadow);
}
.petova-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--p-text);
    font-size: 15.5px;
    list-style: none;
    position: relative;
    padding-right: 30px;
    user-select: none;
}
.petova-faq summary::-webkit-details-marker { display: none; }
.petova-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -3px;
    color: var(--p-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s;
}
.petova-faq details[open] summary::after { content: "−"; }
.petova-faq-body {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--p-border);
    font-size: 14.5px;
    color: var(--p-text-muted);
    line-height: 1.7;
}
.petova-faq-body p { margin-bottom: 0 !important; }

.petova-disclaimer {
    background: var(--p-bg-light);
    border-radius: var(--p-radius);
    padding: 14px 20px;
    margin: 28px 0 0;
    font-size: 13px;
    color: var(--p-text-muted);
    border-left: 3px solid var(--p-text-soft);
}
.petova-disclaimer strong { color: var(--p-text); }

/* ============ ACCESSIBILITY ============ */
:focus-visible {
    outline: 3px solid var(--p-primary);
    outline-offset: 2px;
    border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline-offset: 3px; }
.pp-nav-menu > li > a:focus-visible { background: var(--p-primary-4); }
.pp-icon-btn:focus-visible { box-shadow: 0 0 0 3px rgba(242,113,42,0.4); }
.pp-card:focus-within { box-shadow: var(--p-shadow), 0 0 0 3px rgba(242,113,42,0.25); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============ MOBILE ============ */
@media (max-width: 991px) {
    .pp-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .pp-hero-slider { aspect-ratio: 16 / 10 !important; }
    .pp-hero-slide-title { font-size: 20px !important; }
    .pp-hero-slide-content { padding: 0 24px !important; bottom: 54px !important; }
    .pp-hero-pag-btn { font-size: 13px !important; padding: 11px 0 !important; }
    .pp-hero-list {
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 0 !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .pp-hero-list::-webkit-scrollbar { display: none; }
    .pp-hero-list-item {
        flex-direction: column !important;
        text-align: center !important;
        min-width: 130px !important;
        border-bottom: none !important;
        border-right: 1px solid var(--p-border) !important;
        padding: 14px !important;
    }
    .pp-hero-list-item:last-child { border-right: none !important; }
    .pp-hero-list-img { width: 52px !important; height: 52px !important; }
    .pp-hero-list-title { font-size: 12px !important; }
    .pp-desc-bar { font-size: 13px !important; padding: 12px 16px !important; }
    .pp-stories { gap: 10px !important; padding: 8px 0 16px !important; }
    .pp-story { width: 70px !important; }
    .pp-story-img { width: 64px !important; height: 64px !important; }
    .pp-story-title { font-size: 10px !important; }
    .pp-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pp-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .pp-related .pp-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-footer-grid { grid-template-columns: 1fr 1fr; }
    .pp-single-title { font-size: 28px; }
    .pp-single { padding: 24px; }
    .pp-single-feat-img { margin: 0 -24px 22px; }
    .pp-single-content h2 { font-size: 22px; }
    .pp-menu-toggle {
        display: inline-flex !important;
    }
    .pp-nav { display: none; }
    .pp-nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--p-header-bg);
        box-shadow: var(--p-shadow);
        padding: 16px;
        border-top: 1px solid var(--p-border);
    }
    .pp-nav.is-open .pp-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .pp-nav.is-open .pp-nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--p-bg-light);
        margin-top: 4px;
    }
}
@media (max-width: 600px) {
    .pp-grid, .pp-grid-3, .pp-related .pp-grid { grid-template-columns: 1fr; }
    .pp-footer-grid { grid-template-columns: 1fr; }
    .pp-archive-title { font-size: 26px; }
    .pp-single-title { font-size: 23px; }
    .pp-hero-slider { aspect-ratio: 16 / 12; }
    .pp-hero-slide-title { font-size: 18px; }
    .pp-hero-pag-btn { font-size: 12px; padding: 10px 0; }
    .pp-stories { gap: 10px; }
    .pp-story { width: 68px; }
    .pp-story-img { width: 60px; height: 60px; }
    .pp-header-inner { height: 64px; }
    .pp-logo { font-size: 20px; }
    .pp-logo img { height: 36px; }
    .petova-procons { grid-template-columns: 1fr; }
}


