/*
Theme Name: The Pets Lover
Theme URI: https://thepetslover.com
Author: The Pets Lover Team
Description: Premium pet care blog theme — reference-driven design.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-pets-lover
Tags: blog, pet, animals, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, custom-logo
*/

/* ==========================================================================
   DESIGN TOKENS — STRICT: White #ffffff / Black #000000 / Yellow #ffc80c
   NO black backgrounds. White everywhere. Reference: petmania.vamtam.com
   ========================================================================== */
:root {
    --white: #ffffff;
    --black: #000000;
    --yellow: #ffc80c;
    --yellow-dark: #e6b400;
    --yellow-light: #ffd966;
    --yellow-soft: #fff9e6;
    --yellow-softer: #fffbf2;
    --gray-50: #fafafa;
    --gray-100: #f7f7f7;
    --gray-200: #f0f0f0;
    --gray-300: #e8e8e8;
    --gray-400: #d0d0d0;
    --gray-500: #a0a0a0;
    --gray-600: #707070;
    --gray-700: #505050;
    --gray-800: #333333;
    --gray-900: #1a1a1a;

    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1280px;
    --container-narrow: 760px;
    --container-wide: 1440px;
    --sidebar-w: 340px;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.10);
    --shadow-xl: 0 28px 70px rgba(0,0,0,0.14);
    --shadow-yellow: 0 8px 28px rgba(255,200,12,0.35);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur: 0.4s;
    --dur-fast: 0.2s;
    --dur-slow: 0.7s;

    --header-h: 96px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }
a { color: var(--black); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--yellow-dark); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style-position: inside; }

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
    clip: auto !important; clip-path: none; background: var(--white);
    border-radius: var(--r-sm); box-shadow: var(--shadow-md);
    color: var(--black); display: block; font-size: 1rem; font-weight: 700;
    height: auto; left: 1rem; padding: 1rem 1.5rem; position: absolute;
    top: 1rem; width: auto; z-index: 100000;
}
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 10000;
    background: var(--yellow); color: var(--black);
    padding: 0.75rem 1.5rem; border-radius: 0 0 var(--r-sm) 0;
    font-weight: 700; transition: left var(--dur-fast);
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-lg { padding: 6.5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.bg-soft { background: var(--gray-50); }
.bg-yellow-soft { background: var(--yellow-soft); }
.bg-white { background: var(--white); }

/* ==========================================================================
   BUTTONS — matching reference style
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 2rem; font-family: var(--font-heading); font-size: 0.88rem;
    font-weight: 600; border-radius: var(--r-full); cursor: pointer;
    border: 2px solid transparent; text-decoration: none; line-height: 1.2;
    transition: all var(--dur) var(--ease); position: relative; overflow: hidden;
    letter-spacing: 0.3px;
}
.btn::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    border-radius: 50%; background: rgba(255,255,255,0.25);
    transform: translate(-50%, -50%); transition: width 0.4s, height 0.4s;
}
.btn:hover::after { width: 350px; height: 350px; }
.btn-primary {
    background: var(--yellow); color: var(--black); border-color: var(--yellow);
    box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
    background: var(--yellow-dark); border-color: var(--yellow-dark);
    color: var(--black); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,200,12,0.45);
}
.btn-outline { background: transparent; color: var(--black); border-color: var(--gray-300); }
.btn-outline:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-3px); box-shadow: var(--shadow-yellow); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.98rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.8rem; }

/* Text link with arrow */
.text-link {
    display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-heading);
    font-size: 0.85rem; font-weight: 600; color: var(--black); text-decoration: none;
    transition: all var(--dur-fast);
}
.text-link i { transition: transform var(--dur-fast); font-size: 0.75rem; }
.text-link:hover { color: var(--yellow-dark); }
.text-link:hover i { transform: translateX(5px); }

/* ==========================================================================
   SECTION HEADERS — matching reference
   ========================================================================== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.text-left { text-align: left; }
.section-subtitle {
    display: inline-block; font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
    color: var(--yellow-dark); margin-bottom: 0.6rem; padding: 0.3rem 1.1rem;
    background: var(--yellow-soft); border-radius: var(--r-full);
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.6rem; }
.section-description { color: var(--black); max-width: 580px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.section-header.text-left .section-description { margin-left: 0; }

/* Section header with "View All" link — like reference */
.section-header-row {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem;
    flex-wrap: wrap; gap: 1rem;
}
.section-header-row h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0; }
.section-header-row h2::before {
    content: ''; display: inline-block; width: 5px; height: 28px; background: var(--yellow);
    border-radius: var(--r-full); margin-right: 0.7rem; vertical-align: middle;
}

/* ==========================================================================
   HEADER — matching reference: top bar + main nav with dropdowns
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white); transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.site-header.scrolled .header-main { padding: 0.25rem 0; }
.site-header.scrolled .header-main .container { height: 72px; }
.site-header.scrolled .custom-logo { max-height: 44px; }
.site-header.scrolled .nav-menu > li > a { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.site-header.scrolled .header-search-toggle, .site-header.scrolled .header-cart-toggle { width: 42px; height: 42px; }
/* Header main */
.header-main { padding: 0.5rem 0; transition: padding var(--dur) var(--ease); }
.header-main .container {
    display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
    height: var(--header-h); transition: height var(--dur) var(--ease);
}

/* Branding */
.site-branding { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.site-logo-link { display: block; line-height: 0; text-decoration: none; }
.site-logo-img { max-height: 68px; width: auto; transition: max-height var(--dur) var(--ease); }
.site-header.scrolled .site-logo-img { max-height: 56px; }
.custom-logo-link { display: block; line-height: 0; }
.custom-logo { max-height: 52px; width: auto; transition: max-height var(--dur) var(--ease); }
.site-title { font-size: 1.35rem; font-weight: 800; margin: 0; line-height: 1.2; letter-spacing: -0.03em; }
.site-title a { color: var(--black); text-decoration: none; transition: color var(--dur-fast); }
.site-title a:hover { color: var(--yellow-dark); }
.site-title i { color: var(--yellow); margin-right: 0.3rem; }
.site-description { font-size: 0.68rem; color: var(--black); margin: 0; }

/* Navigation — matching reference mega-menu style */
.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu {
    display: flex; align-items: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: 0.3rem; padding: 0.8rem 1.35rem;
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600;
    color: var(--black); border-radius: var(--r-sm);
    transition: all var(--dur-fast) var(--ease); text-decoration: none; position: relative;
}
.nav-menu > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px;
    background: var(--yellow); border-radius: 3px; transform: translateX(-50%);
    transition: width var(--dur) var(--ease);
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after { width: 60%; }
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { color: var(--yellow-dark); }
.nav-menu .sub-menu {
    position: absolute; top: 100%; left: 0; background: var(--white);
    box-shadow: var(--shadow-lg); border-radius: var(--r-md); padding: 0.5rem;
    min-width: 220px; list-style: none; opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: all var(--dur) var(--ease); z-index: 100;
    border: 1px solid var(--gray-200);
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu a {
    display: block; padding: 0.65rem 1rem; font-size: 0.84rem; color: var(--black);
    border-radius: var(--r-sm); transition: all var(--dur-fast);
}
.nav-menu .sub-menu a:hover { background: var(--yellow-soft); color: var(--black); padding-left: 1.2rem; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 0.85rem; }
.header-contact-btn { padding: 0.55rem 1.4rem; font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.header-search-toggle, .header-cart-toggle {
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-full); color: var(--black);
    transition: all var(--dur-fast), width var(--dur) var(--ease), height var(--dur) var(--ease); background: var(--gray-100);
}
.header-search-toggle:hover, .header-cart-toggle:hover { background: var(--yellow); color: var(--black); transform: scale(1.1); }

/* Search dropdown */
.header-search-form {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    padding: 1.5rem 0; box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--gray-200);
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: all var(--dur) var(--ease); z-index: 999;
}
.header-search-form.active { transform: translateY(0); opacity: 1; visibility: visible; }
.header-search-form .search-form {
    max-width: 600px; margin: 0 auto; display: flex; gap: 0.5rem; padding: 0 1.5rem;
}
.header-search-form .search-field {
    flex: 1; padding: 0.85rem 1.2rem; border: 2px solid var(--gray-200);
    border-radius: var(--r-full); font-size: 1rem; transition: border-color var(--dur-fast);
}
.header-search-form .search-field:focus { border-color: var(--yellow); outline: none; }
.header-search-form .search-submit {
    padding: 0.85rem 1.8rem; background: var(--yellow); color: var(--black);
    border-radius: var(--r-full); font-weight: 700; font-size: 0.88rem;
    transition: all var(--dur-fast);
}
.header-search-form .search-submit:hover { background: var(--yellow-dark); transform: scale(1.05); }

/* Mobile toggle */
.menu-toggle {
    display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
    align-items: center; justify-content: center; border-radius: var(--r-sm); background: var(--gray-100);
}
.menu-toggle span {
    display: block; width: 22px; height: 2.5px; background: var(--black);
    border-radius: 3px; transition: all var(--dur) var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO — matching reference: split layout, large heading, pet image
   ========================================================================== */
.hero {
    position: relative; min-height: calc(90vh - var(--header-h)); display: flex; align-items: center;
    overflow: hidden; background: var(--yellow-soft); margin-top: var(--header-h);
    padding: 3rem 0;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; width: 100%; }
.hero-content { position: relative; z-index: 3; }
.hero-image-wrap { position: relative; z-index: 2; height: 100%; min-height: 500px; }
.hero-image {
    width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    animation: heroZoom 0.6s var(--ease) 0.1s both;
}
@keyframes heroZoom { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1); } }

.hero-shape { position: absolute; border-radius: 50%; z-index: 1; }
.hero-shape-1 {
    width: 380px; height: 380px; background: rgba(255,200,12,0.08);
    top: -80px; right: -60px; animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-2 {
    width: 220px; height: 220px; background: rgba(255,200,12,0.06);
    bottom: -40px; left: -40px; animation: floatShape 10s ease-in-out infinite reverse;
}
@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

.hero-subtitle {
    display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
    color: var(--yellow-dark); margin-bottom: 1.1rem; padding: 0.35rem 1.1rem;
    background: var(--white); border-radius: var(--r-full); box-shadow: var(--shadow-sm);
    animation: fadeInDown 0.5s var(--ease) 0.1s both;
}
.hero-title {
    font-size: clamp(2.3rem, 5.5vw, 4rem); color: var(--black); margin-bottom: 1.25rem;
    line-height: 1.1; font-weight: 800; letter-spacing: -0.03em;
    animation: fadeInUp 0.5s var(--ease) 0.15s both;
}
.hero-title .highlight { color: var(--yellow-dark); position: relative; }
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 8px;
    background: var(--yellow); opacity: 0.35; border-radius: 4px; z-index: -1;
}
.hero-description {
    font-size: 1.1rem; color: var(--black); margin-bottom: 1.75rem;
    line-height: 1.65; max-width: 480px;
    animation: fadeInUp 0.5s var(--ease) 0.2s both;
}
.hero-buttons {
    display: flex; gap: 0.85rem; flex-wrap: wrap;
    animation: fadeInUp 0.5s var(--ease) 0.25s both;
}
.hero-notice {
    display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.85rem;
    color: var(--black); animation: fadeInUp 0.5s var(--ease) 0.3s both;
}
.hero-notice i { color: var(--yellow-dark); font-size: 1.1rem; }

.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 2.5rem;
    animation: fadeInUp 0.5s var(--ease) 0.35s both;
}
.hero-stat .stat-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--black); line-height: 1; }
.hero-stat .stat-num span { color: var(--yellow-dark); }
.hero-stat .stat-label { font-size: 0.78rem; color: var(--black); margin-top: 0.25rem; }

/* Hero entrance animations */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* ==========================================================================
   SCROLL REVEAL — see PREMIUM ANIMATION ENHANCEMENTS section below
   ========================================================================== */

/* ==========================================================================
   TRENDING CATEGORIES — 3 promo cards like reference
   ========================================================================== */
.trending-section { padding: 4rem 0; }
.trending-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.trending-card {
    position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
    background: var(--gray-100); text-decoration: none; color: var(--black);
    transition: all var(--dur) var(--ease); box-shadow: var(--shadow-sm);
}
.trending-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trending-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.trending-card:hover img { transform: scale(1.1); }
.trending-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
    background: linear-gradient(transparent, rgba(255,255,255,0.95));
    display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.trending-card-overlay h3 { font-size: 1.15rem; margin: 0; }
.trending-card-shop {
    display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-heading);
    font-size: 0.78rem; font-weight: 700; color: var(--black); background: var(--yellow);
    padding: 0.4rem 1rem; border-radius: var(--r-full); transition: all var(--dur-fast);
    white-space: nowrap;
}
.trending-card:hover .trending-card-shop { background: var(--black); color: var(--yellow); }

/* ==========================================================================
   SHOP BY PET — Category circles like reference
   ========================================================================== */
.shop-by-pet { padding: 4rem 0; background: var(--gray-50); }
.pet-circles {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem;
}
.pet-circle {
    text-align: center; text-decoration: none; color: var(--black);
    transition: all var(--dur) var(--ease);
}
.pet-circle:hover { transform: translateY(-6px); }
.pet-circle-icon {
    width: 110px; height: 110px; margin: 0 auto 0.75rem; background: var(--white);
    border-radius: var(--r-full); display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; transition: background var(--dur) var(--ease-spring), border-color var(--dur) var(--ease-spring), transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease-spring);
    box-shadow: var(--shadow-sm); border: 2px solid var(--gray-200);
}
.pet-circle:hover .pet-circle-icon {
    background: var(--yellow); border-color: var(--yellow); transform: scale(1.1);
    box-shadow: var(--shadow-yellow);
}
.pet-circle-icon i { font-size: 2.5rem; color: var(--black); }
.pet-circle:hover .pet-circle-icon i { color: var(--black); }
.pet-circle:hover .pet-svg-icon { color: var(--black); }
.pet-circle-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; margin: 0; }
.pet-circle-count { font-size: 0.75rem; color: var(--black); margin-top: 0.2rem; }

/* ==========================================================================
   POST CARDS — matching reference product/blog card style
   ========================================================================== */
.posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem;
}
.posts-grid.cols-2 { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }
.posts-grid.cols-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.post-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease);
    display: flex; flex-direction: column; height: 100%;
    border: 1px solid var(--gray-200);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }

.post-card-thumbnail {
    position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--gray-100);
}
.post-card-thumbnail img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.post-card:hover .post-card-thumbnail img { transform: scale(1.1); }

.post-card-thumbnail .post-category-badge {
    position: absolute; top: 0.85rem; left: 0.85rem; background: var(--yellow); color: var(--black);
    padding: 0.28rem 0.85rem; border-radius: var(--r-full); font-size: 0.7rem; font-weight: 700;
    font-family: var(--font-heading); text-decoration: none; z-index: 2;
    transition: all var(--dur-fast); text-transform: uppercase; letter-spacing: 0.5px;
}
.post-card-thumbnail .post-category-badge:hover { background: var(--black); color: var(--yellow); }

.post-card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.post-card-meta {
    display: flex; align-items: center; gap: 0.85rem; font-size: 0.76rem; color: var(--black); margin-bottom: 0.5rem;
}
.post-card-meta .meta-item { display: flex; align-items: center; gap: 0.3rem; }
.post-card-meta i { color: var(--yellow-dark); font-size: 0.72rem; }
.post-card-title {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.35;
}
.post-card-title a { color: var(--black); text-decoration: none; transition: color var(--dur-fast); }
.post-card-title a:hover { color: var(--yellow-dark); }
.post-card-excerpt {
    font-size: 0.88rem; color: var(--black); line-height: 1.65; margin-bottom: 0.85rem; flex: 1;
}
.post-card-footer {
    display: flex; align-items: center; justify-content: space-between; margin-top: auto;
    padding-top: 0.85rem; border-top: 1px solid var(--gray-100);
}
.post-card-readmore {
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; color: var(--black);
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem;
    transition: all var(--dur-fast);
}
.post-card-readmore i { transition: transform var(--dur-fast); }
.post-card-readmore:hover { color: var(--yellow-dark); }
.post-card-readmore:hover i { transform: translateX(5px); }
.post-card-author { display: flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; color: var(--black); }
.post-card-author img { width: 26px; height: 26px; border-radius: var(--r-full); object-fit: cover; }

/* ==========================================================================
   PROMO BANNER — like reference "Get your groom on!" / "Haircut + Bath"
   ========================================================================== */
.promo-banner {
    position: relative; border-radius: var(--r-xl); overflow: hidden; padding: 4rem 3rem;
    text-align: center; background: var(--yellow-soft); border: 1px solid rgba(255,200,12,0.2);
}
.promo-banner h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 0.75rem; }
.promo-banner p { font-size: 1.05rem; color: var(--black); margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.promo-banner::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 250px; height: 250px;
    background: rgba(255,200,12,0.08); border-radius: 50%;
}
.promo-banner::after {
    content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px;
    background: rgba(255,200,12,0.06); border-radius: 50%;
}
.promo-banner > * { position: relative; z-index: 2; }
.promo-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.no-posts-msg { grid-column: 1/-1; text-align: center; color: var(--black); padding: 2rem; font-size: 0.95rem; }

/* ==========================================================================
   SERVICES — 4 service cards like reference
   ========================================================================== */
.services-section { padding: 4rem 0; }
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
}
.service-card {
    text-align: center; padding: 2.5rem 2rem; border-radius: var(--r-lg);
    background: var(--white); border: 2px solid var(--gray-200);
    transition: all var(--dur) var(--ease); text-decoration: none; color: var(--black);
}
.service-card:hover {
    border-color: var(--yellow); transform: translateY(-6px); box-shadow: var(--shadow-md);
}
.service-icon {
    width: 72px; height: 72px; margin: 0 auto 1rem; background: var(--yellow-soft); color: var(--yellow-dark);
    border-radius: var(--r-full); display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; transition: all var(--dur) var(--ease-spring);
}
.service-card:hover .service-icon { background: var(--yellow); color: var(--black); transform: scale(1.15) rotate(-5deg); box-shadow: var(--shadow-yellow); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.85rem; }
.service-card p { font-size: 0.85rem; color: var(--black); margin: 0; line-height: 1.6; }

/* ==========================================================================
   ABOUT STORE — like reference "Your favorite pet food & supplies store"
   ========================================================================== */
.about-store { padding: 5rem 0; background: var(--gray-50); }
.about-store-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.about-store-text h2 { margin-bottom: 1rem; }
.about-store-text p { font-size: 1.02rem; color: var(--black); margin-bottom: 1rem; line-height: 1.75; }
.about-store-image {
    border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3; position: relative;
}
.about-store-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.about-store-image:hover img { transform: scale(1.05); }

/* ==========================================================================
   FEATURED TOPICS — like reference "Featured Brands"
   ========================================================================== */
.featured-topics { padding: 4rem 0; }
.topics-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem;
}
.topic-card {
    text-align: center; padding: 1.75rem 1rem; border-radius: var(--r-md);
    background: var(--white); border: 1px solid var(--gray-200);
    transition: all var(--dur) var(--ease); text-decoration: none; color: var(--black);
}
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.topic-card .topic-icon {
    width: 56px; height: 56px; margin: 0 auto 0.6rem; background: var(--yellow-soft); color: var(--yellow-dark);
    border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    transition: all var(--dur) var(--ease-spring);
}
.topic-card:hover .topic-icon { background: var(--yellow); color: var(--black); transform: scale(1.1); }
.topic-card h4 { font-size: 0.92rem; margin: 0; }
.topic-card .topic-count { font-size: 0.75rem; color: var(--black); margin-top: 0.2rem; }

/* ==========================================================================
   TIPS & ADVICE — Blog cards like reference
   ========================================================================== */
.tips-advice { padding: 5rem 0; background: var(--gray-50); }

/* ==========================================================================
   INSTAGRAM / SOCIAL SECTION
   ========================================================================== */
.social-section { padding: 4rem 0; }
.social-header { text-align: center; margin-bottom: 2.5rem; }
.social-header h2 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.social-header .social-handle { color: var(--yellow-dark); font-family: var(--font-heading); font-weight: 600; }
.social-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem;
}
.social-card {
    aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; position: relative;
    background: var(--gray-100);
}
.social-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.social-card:hover img { transform: scale(1.1); }
.social-card::after {
    content: '\f16d'; font-family: 'Font Awesome 6 Brands'; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0); font-size: 1.8rem; color: var(--white);
    background: rgba(255,200,12,0.9); width: 52px; height: 52px; border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center; transition: transform var(--dur) var(--ease-spring);
    z-index: 2;
}
.social-card:hover::after { transform: translate(-50%, -50%) scale(1); }

/* ==========================================================================
   NEWSLETTER CTA — like reference "Sign-up!"
   ========================================================================== */
.newsletter-cta {
    background: var(--yellow); padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.newsletter-cta::before, .newsletter-cta::after {
    content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.15);
}
.newsletter-cta::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.newsletter-cta::after { width: 400px; height: 400px; bottom: -150px; right: -150px; }
.newsletter-cta .container { position: relative; z-index: 2; }
.newsletter-cta h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.newsletter-cta p { font-size: 1.05rem; color: var(--black); margin-bottom: 1.75rem; }
.newsletter-perks { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.newsletter-perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--black); }
.newsletter-perk i { color: var(--black); }
.newsletter-form {
    max-width: 500px; margin: 0 auto; display: flex; gap: 0.4rem;
    background: var(--white); border-radius: var(--r-full); padding: 0.35rem;
    box-shadow: var(--shadow-md);
}
.newsletter-form input[type="email"] {
    flex: 1; padding: 0.75rem 1.2rem; border: none; border-radius: var(--r-full);
    font-size: 0.95rem; background: transparent;
}
.newsletter-form input[type="email"]:focus { outline: none; }
.newsletter-form button {
    padding: 0.75rem 1.8rem; background: var(--black); color: var(--white);
    border-radius: var(--r-full); font-weight: 700; font-family: var(--font-heading);
    font-size: 0.88rem; transition: all var(--dur-fast); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gray-800); color: var(--yellow); transform: scale(1.05); }

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
    background: var(--gray-50); padding: 1.25rem 0 1.1rem; font-size: 0.8rem;
    border-bottom: 1px solid var(--gray-200); margin-top: var(--header-h);
}
.breadcrumbs .container { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--black); text-decoration: none; transition: color var(--dur-fast); }
.breadcrumbs a:hover { color: var(--yellow-dark); }
.breadcrumbs .separator { color: var(--black); font-size: 0.68rem; }
.breadcrumbs .current { color: var(--black); font-weight: 600; }

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */

/* Archive banner */
.archive-banner {
    position: relative; width: 100%;
    margin-top: var(--header-h);
    overflow: hidden;
    height: 500px;
}
.archive-banner-img {
    width: 100%; height: 100%; display: block; object-fit: cover; object-position: center;
}
.archive-banner-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}
.archive-banner-overlay .container { max-width: var(--container); }
.archive-banner-overlay h1 {
    color: #fff; font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.archive-banner-overlay .page-description { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin: 0; }
.archive-banner-overlay .page-header-count {
    display: inline-block; margin-top: 0.85rem; padding: 0.3rem 1rem; background: var(--yellow);
    border-radius: var(--r-full); font-size: 0.8rem; font-weight: 600; color: var(--black);
    font-family: var(--font-heading);
}

/* Plain archive banner (categories, tags) — no image */
.archive-banner-plain {
    height: 300px;
    background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow) 100%);
}
.archive-banner-plain .archive-banner-overlay {
    background: none;
}
.archive-banner-plain .archive-banner-overlay h1 {
    color: var(--black);
    text-shadow: none;
}

/* Write For Us banner */
.wfu-banner {
    position: relative; width: 100%; height: 420px;
    background-image: url('https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=1600&q=80');
    background-size: cover; background-position: center;
    margin-top: var(--header-h); display: flex; align-items: center;
}
.wfu-banner-overlay {
    width: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    padding: 3rem 0;
}
.wfu-banner-overlay .container { max-width: var(--container); text-align: center; }
.wfu-banner-overlay .section-subtitle {
    color: var(--yellow); font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem;
}
.wfu-banner-overlay h1 {
    color: #fff; font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.wfu-banner-overlay .page-description { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin: 0; }

/* About page banner */
.about-banner {
    position: relative; width: 100%; height: 420px;
    background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1600&q=80');
    background-size: cover; background-position: center;
    margin-top: var(--header-h); display: flex; align-items: center;
}
.about-banner-overlay {
    width: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    padding: 3rem 0;
}
.about-banner-overlay .container { max-width: var(--container); text-align: center; }
.about-banner-overlay .section-subtitle {
    color: var(--yellow); font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem;
}
.about-banner-overlay h1 {
    color: #fff; font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.about-banner-overlay .page-description { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin: 0; }

/* Contact page banner */
.contact-banner {
    position: relative; width: 100%; height: 420px;
    background-image: url('https://images.unsplash.com/photo-1583511655826-05700d52f4d9?w=1600&q=80');
    background-size: cover; background-position: center;
    margin-top: var(--header-h); display: flex; align-items: center;
}
.contact-banner-overlay {
    width: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    padding: 3rem 0;
}
.contact-banner-overlay .container { max-width: var(--container); text-align: center; }
.contact-banner-overlay .section-subtitle {
    color: var(--yellow); font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem;
}
.contact-banner-overlay h1 {
    color: #fff; font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.contact-banner-overlay .page-description { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin: 0; }

.page-header {
    background: var(--yellow-soft); color: var(--black); padding: 3.5rem 0 3rem; text-align: center;
    position: relative; overflow: hidden; margin-top: 0;
}
.page-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,200,12,0.12) 0%, transparent 50%);
}
.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--yellow);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--black); font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 0.4rem; }
.page-header .page-description { color: var(--black); font-size: 1.05rem; margin: 0; }
.page-header-count {
    display: inline-block; margin-top: 0.85rem; padding: 0.3rem 1rem; background: var(--white);
    border-radius: var(--r-full); font-size: 0.8rem; font-weight: 600; color: var(--black);
    box-shadow: var(--shadow-sm); font-family: var(--font-heading);
}

/* ==========================================================================
   BLOG LAYOUT
   ========================================================================== */
.content-area {
    display: grid; grid-template-columns: 1fr var(--sidebar-w); gap: 2.5rem; padding: 3rem 0;
}
.blog-content-wrap { padding-top: 2.5rem; }
.content-area.no-sidebar { grid-template-columns: 1fr; max-width: var(--container); }
.main-content { min-width: 0; }

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.widget {
    background: var(--white); border-radius: var(--r-lg); padding: 1.5rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.widget-title {
    font-size: 1.05rem; margin-bottom: 1rem; padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--gray-100); position: relative;
}
.widget-title::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 44px; height: 2px;
    background: var(--yellow); border-radius: 2px;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 0.6rem 0; border-bottom: 1px solid var(--gray-100); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--black); text-decoration: none; transition: all var(--dur-fast); display: flex; align-items: center; gap: 0.5rem; }
.widget ul li a:hover { color: var(--yellow-dark); padding-left: 0.35rem; }
.widget ul.children, .widget ul.sub-menu { padding-left: 1rem; margin-top: 0.4rem; }

.widget_search .search-form { display: flex; gap: 0.4rem; }
.widget_search .search-field {
    flex: 1; padding: 0.65rem 0.9rem; border: 2px solid var(--gray-200); border-radius: var(--r-sm); font-size: 0.88rem;
}
.widget_search .search-field:focus { border-color: var(--yellow); outline: none; }
.widget_search .search-submit {
    padding: 0.65rem 0.9rem; background: var(--yellow); color: var(--black); border-radius: var(--r-sm);
    font-weight: 700; font-size: 0.82rem; transition: all var(--dur-fast);
}
.widget_search .search-submit:hover { background: var(--yellow-dark); }
.widget_recent_entries .post-date { display: block; font-size: 0.7rem; color: var(--black); margin-top: 0.15rem; }
.tagcloud { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tagcloud a {
    padding: 0.3rem 0.85rem; background: var(--gray-100); border-radius: var(--r-full);
    font-size: 0.76rem !important; color: var(--black); text-decoration: none; transition: all var(--dur-fast);
}
.tagcloud a:hover { background: var(--yellow); color: var(--black); }
.widget_categories .cat-item a { justify-content: space-between; }
.widget_categories .cat-item .cat-item-count {
    background: var(--yellow-soft); padding: 0.1rem 0.45rem; border-radius: var(--r-full);
    font-size: 0.7rem; color: var(--yellow-dark); font-weight: 600;
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */
.single-post-layout { padding-top: var(--header-h); }
.single-post-header {
    max-width: var(--container-narrow); margin: 0 auto 1.5rem; text-align: center; padding: 2.5rem 1.5rem 1rem;
}
.single-post-categories { display: flex; justify-content: center; gap: 0.4rem; margin-bottom: 0.85rem; flex-wrap: wrap; }
.single-post-category {
    display: inline-block; padding: 0.28rem 0.9rem; background: var(--yellow); color: var(--black);
    border-radius: var(--r-full); font-size: 0.7rem; font-weight: 700; font-family: var(--font-heading);
    text-decoration: none; transition: all var(--dur-fast); text-transform: uppercase; letter-spacing: 0.5px;
}
.single-post-category:hover { background: var(--black); color: var(--yellow); }
.single-post-title { font-size: clamp(1.7rem, 5vw, 2.8rem); margin-bottom: 0.85rem; line-height: 1.2; }
.single-post-meta {
    display: flex; align-items: center; justify-content: center; gap: 1.5rem; font-size: 0.82rem;
    color: var(--black); flex-wrap: wrap;
}
.single-post-meta .meta-item { display: flex; align-items: center; gap: 0.35rem; }
.single-post-meta .meta-item i { color: var(--yellow-dark); }
.single-post-meta .meta-item a { color: var(--black); text-decoration: none; }
.single-post-meta .meta-item a:hover { color: var(--yellow-dark); }
.single-post-meta .meta-author {
    display: flex; align-items: center; gap: 0.65rem; padding: 0.4rem 0.85rem;
    background: var(--white); border-radius: var(--r-full); box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.single-post-meta .meta-avatar { width: 40px; height: 40px; border-radius: var(--r-full); border: 2px solid var(--yellow); }
.single-post-meta .meta-author-info { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.single-post-meta .meta-author-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.86rem; color: var(--black); }
.single-post-meta .meta-author-sub { font-size: 0.72rem; color: var(--black); }

/* Single post tags */
.single-post-tags {
    display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
    padding: 1.25rem 0; border-top: 1px solid var(--gray-200); margin-top: 1.5rem;
}
.single-post-tags .tags-label { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--black); display: flex; align-items: center; gap: 0.35rem; }
.single-post-tags .tags-label i { color: var(--yellow-dark); }
.single-post-tags a {
    padding: 0.3rem 0.85rem; background: var(--gray-100); border-radius: var(--r-full);
    font-size: 0.78rem; color: var(--black); text-decoration: none; transition: all var(--dur-fast);
}
.single-post-tags a:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

.single-post-thumbnail {
    max-width: var(--container); margin: 0 auto 2.5rem; border-radius: var(--r-lg);
    overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/7;
}
.single-post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.single-post-content { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.post-content { font-size: 1.02rem; line-height: 1.85; color: var(--black); }
.post-content h2 { font-size: 1.55rem; margin: 2rem 0 0.85rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gray-100); }
.post-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.65rem; }
.post-content h4 { font-size: 1.1rem; margin: 1.25rem 0 0.5rem; }
.post-content p { margin-bottom: 1.1rem; color: var(--black); }
.post-content img { border-radius: var(--r-md); margin: 1.25rem 0; }
.post-content blockquote {
    border-left: 4px solid var(--yellow); padding: 1.25rem 1.65rem; margin: 1.5rem 0;
    background: var(--yellow-soft); border-radius: 0 var(--r-md) var(--r-md) 0;
    font-style: italic; color: var(--black); position: relative; box-shadow: var(--shadow-sm);
}
.post-content blockquote::before {
    content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute;
    top: 0.85rem; right: 1.25rem; font-size: 1.5rem; color: var(--yellow); opacity: 0.3;
}
.post-content blockquote p { margin: 0; }
.post-content ul, .post-content ol { margin-bottom: 1.1rem; padding-left: 1.5rem; list-style-position: outside; }
.post-content li { margin-bottom: 0.5rem; color: var(--black); }
.post-content li::marker { color: var(--yellow-dark); }
.post-content a { color: var(--yellow-dark); text-decoration: underline; text-decoration-color: rgba(255,200,12,0.4); transition: text-decoration-color var(--dur-fast); }
.post-content a:hover { text-decoration-color: var(--yellow-dark); }
.post-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; }
.post-content table th, .post-content table td { padding: 0.7rem 0.9rem; border: 1px solid var(--gray-200); text-align: left; }
.post-content table th { background: var(--gray-50); font-weight: 700; }
.post-content pre { background: var(--gray-100); color: var(--black); padding: 1.1rem; border-radius: var(--r-sm); overflow-x: auto; margin: 1.25rem 0; }
.post-content code { font-family: 'Courier New', monospace; font-size: 0.9em; }
.post-content .wp-caption-text { text-align: center; font-size: 0.82rem; color: var(--black); margin-top: 0.4rem; }

/* Single post banner */
.single-post-banner {
    position: relative; width: 100%; height: 420px;
    background-size: cover; background-position: center;
    margin-top: var(--header-h); display: flex; align-items: flex-end;
}
.single-post-banner-noimg {
    background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
}
.single-post-banner-overlay {
    width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    padding: 2.5rem 0 2rem;
}
.single-post-banner-overlay .container { max-width: var(--container); }
.single-post-banner .single-post-categories { justify-content: flex-start; }
.single-post-banner .single-post-category {
    background: var(--yellow); color: var(--black);
}
.single-post-banner .single-post-title {
    color: #fff; text-align: left; font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    margin-bottom: 1rem; max-width: 800px; text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.single-post-banner .single-post-meta {
    justify-content: flex-start; color: rgba(255,255,255,0.9);
}
.single-post-banner .single-post-meta .meta-item { color: rgba(255,255,255,0.9); }
.single-post-banner .single-post-meta .meta-item i { color: var(--yellow); }
.single-post-banner .single-post-meta .meta-item a { color: rgba(255,255,255,0.9); }
.single-post-banner .single-post-meta .meta-author {
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}
.single-post-banner .single-post-meta .meta-author-name { color: #fff; }
.single-post-banner .single-post-meta .meta-author-sub { color: rgba(255,255,255,0.8); }
.single-post-banner .single-post-meta .meta-avatar { border-color: var(--yellow); }

/* Single post two-column body */
.single-post-body {
    display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem;
    max-width: var(--container); margin: 0 auto; padding: 2.5rem 1.5rem;
    align-items: start;
}
.single-post-main { min-width: 0; }
.single-post-body .single-post-content { max-width: none; padding: 0; }

/* Table of Contents sidebar */
.single-post-sidebar {
    position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.toc-widget {
    background: var(--white); border-radius: var(--r-lg); padding: 1.5rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.toc-title {
    font-size: 1rem; font-family: var(--font-heading); font-weight: 700;
    margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray-100);
    display: flex; align-items: center; gap: 0.5rem; color: var(--black);
}
.toc-title i { color: var(--yellow-dark); }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-item { margin-bottom: 0.5rem; }
.toc-item a {
    display: block; padding: 0.4rem 0.6rem; font-size: 0.85rem; color: var(--black);
    text-decoration: none; border-radius: var(--r-sm); transition: all var(--dur-fast);
    line-height: 1.4;
}
.toc-item a:hover { background: var(--yellow-soft); color: var(--yellow-dark); }
.toc-item a.active { background: var(--yellow); color: var(--black); font-weight: 600; }
.toc-item.toc-level-3 { padding-left: 1rem; }
.toc-item.toc-level-3 a { font-size: 0.8rem; color: var(--black); }

/* Reading progress */
.reading-progress {
    position: fixed; top: 0; left: 0; height: 4px; background: var(--yellow);
    width: 0%; z-index: 9999; transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(255,200,12,0.5);
}

/* Share buttons */
.share-buttons {
    display: flex; align-items: center; gap: 0.85rem; padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); margin: 2rem 0;
}
.share-buttons-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--black); }
.share-buttons-list { display: flex; gap: 0.5rem; }
.share-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-full); color: var(--white); transition: all 0.3s var(--ease); text-decoration: none;
}
.share-btn:hover { transform: translateY(-5px) scale(1.1); color: var(--white); box-shadow: var(--shadow-md); }
.share-btn-facebook { background: #1877F2; }
.share-btn-facebook:hover { background: #0d5fb8; }
.share-btn-twitter { background: #000000; }
.share-btn-twitter:hover { background: #333333; }
.share-btn-linkedin { background: #0A66C2; }
.share-btn-linkedin:hover { background: #084d94; }
.share-btn-pinterest { background: #E60023; }
.share-btn-pinterest:hover { background: #b3001c; }
.share-btn-email { background: var(--gray-600); }
.share-btn-email:hover { background: var(--gray-800); }

/* Author box */
.author-box {
    display: flex; gap: 1.5rem; padding: 2rem; background: var(--gray-50);
    border-radius: var(--r-lg); margin: 2rem 0; border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s var(--ease);
}
.author-box:hover { box-shadow: var(--shadow-md); }
.author-box .author-avatar img {
    width: 90px; height: 90px; border-radius: var(--r-full); object-fit: cover;
    border: 3px solid var(--yellow); box-shadow: var(--shadow-sm);
}
.author-box .author-info .author-role {
    font-size: 0.7rem; color: var(--yellow-dark); font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 0.25rem;
}
.author-box .author-info h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.author-box .author-info p { font-size: 0.88rem; color: var(--black); margin: 0; line-height: 1.65; }

/* Related posts */
.related-posts { max-width: var(--container); margin: 0 auto; padding: 3rem 1.5rem; }
.related-posts h2 { text-align: center; margin-bottom: 2rem; font-size: 1.7rem; position: relative; }
.related-posts h2::after {
    content: ''; display: block; width: 60px; height: 4px; background: var(--yellow);
    border-radius: 2px; margin: 0.65rem auto 0;
}
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Post navigation */
.post-navigation {
    max-width: var(--container-narrow); margin: 0 auto; padding: 2rem 1.5rem;
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.post-navigation a {
    display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 1.5rem; background: var(--white);
    border-radius: var(--r-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease); text-decoration: none; max-width: 48%;
}
.post-navigation a:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--yellow); }
.post-navigation .nav-label { font-size: 0.7rem; color: var(--black); text-transform: uppercase; letter-spacing: 1px; }
.post-navigation .nav-title { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--black); }
.post-navigation .nav-next { text-align: right; margin-left: auto; }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 0.35rem; padding: 2rem 0; }
.pagination .page-numbers {
    display: flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
    padding: 0 0.7rem; border-radius: var(--r-sm); font-family: var(--font-heading);
    font-size: 0.86rem; font-weight: 600; color: var(--black); text-decoration: none;
    background: var(--white); box-shadow: var(--shadow-xs); border: 1px solid var(--gray-200);
    transition: all var(--dur-fast);
}
.pagination .page-numbers:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: translateY(-2px); }
.pagination .page-numbers.current { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.pagination .page-numbers.dots { background: transparent; box-shadow: none; border: none; color: var(--black); }

/* Load More button */
.load-more-wrap { text-align: center; padding: 2.5rem 0 1rem; }
.load-more-btn {
    padding: 0.85rem 2.5rem; font-size: 0.95rem; font-weight: 600;
    border-radius: var(--r-full); border: 2px solid var(--yellow);
    background: var(--white); color: var(--black); cursor: pointer;
    transition: all var(--dur) var(--ease); display: inline-flex; align-items: center; gap: 0.5rem;
}
.load-more-btn:hover { background: var(--yellow); transform: translateY(-3px); box-shadow: var(--shadow-yellow); }
.load-more-btn:disabled { opacity: 0.7; cursor: wait; }
.load-more-btn.loading { background: var(--gray-100); border-color: var(--gray-300); }

/* ==========================================================================
   FOOTER — matching reference: multi-column, light background
   ========================================================================== */
.site-footer {
    background: var(--gray-50); color: var(--black); padding: 3.5rem 0 0;
    border-top: 1px solid var(--gray-200);
}
.footer-widgets {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem;
}
.footer-widget .widget-title, .footer-widget h3 {
    color: var(--black); font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--gray-200); position: relative;
}
.footer-widget .widget-title::after, .footer-widget h3::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 44px; height: 2px;
    background: var(--yellow); border-radius: 2px;
}
.footer-widget p { font-size: 0.86rem; line-height: 1.75; margin-bottom: 0.85rem; color: var(--black); }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { padding: 0.4rem 0; }
.footer-widget ul li a {
    color: var(--black); text-decoration: none; font-size: 0.86rem;
    transition: all var(--dur-fast); display: flex; align-items: center; gap: 0.45rem;
}
.footer-widget ul li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--yellow-dark); font-size: 0.78rem; }
.footer-widget ul li a:hover { color: var(--black); padding-left: 0.35rem; }

.footer-social { display: flex; gap: 0.45rem; margin-top: 0.85rem; }
.footer-social a {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-full); background: var(--white); color: var(--black);
    transition: all var(--dur-fast); text-decoration: none; border: 1px solid var(--gray-200);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); transform: translateY(-4px); border-color: var(--yellow); }

.footer-brand .footer-logo-link { display: block; line-height: 0; margin-bottom: 0.65rem; }
.footer-brand .footer-logo-img { max-height: 80px; width: auto; }
.footer-brand .site-title { color: var(--black); font-size: 1.25rem; margin-bottom: 0.65rem; }
.footer-brand .site-title a { color: var(--black); }
.footer-brand .site-title a:hover { color: var(--yellow-dark); }

.footer-bottom { border-top: 1px solid var(--gray-200); padding: 1.25rem 0; background: var(--white); }
.footer-bottom .container { display: flex; justify-content: center; align-items: center; gap: 0.85rem; flex-wrap: wrap; text-align: center; }
.footer-copyright { font-size: 0.83rem; color: var(--black); text-align: center; }
.footer-copyright a { color: var(--yellow-dark); text-decoration: none; }
.footer-copyright a:hover { color: var(--black); }
.footer-bottom-links { display: flex; gap: 1.25rem; font-size: 0.83rem; }
.footer-bottom-links a { color: var(--black); text-decoration: none; transition: color var(--dur-fast); }
.footer-bottom-links a:hover { color: var(--yellow-dark); }

/* ==========================================================================
   404
   ========================================================================== */
.error-404 { text-align: center; padding: 5rem 0; }
.error-404 h1 { font-size: 6rem; color: var(--yellow); margin-bottom: 0.4rem; line-height: 1; font-weight: 800; }
.error-404 h2 { font-size: 1.5rem; margin-bottom: 0.85rem; }
.error-404 p { font-size: 1rem; color: var(--black); margin-bottom: 1.25rem; }
.error-404 .search-form { max-width: 400px; margin: 0 auto 1.25rem; display: flex; gap: 0.4rem; }
.error-404 .search-field { flex: 1; padding: 0.75rem 1.1rem; border: 2px solid var(--gray-200); border-radius: var(--r-full); }
.error-404 .search-field:focus { border-color: var(--yellow); outline: none; }
.error-404 .search-submit { padding: 0.75rem 1.4rem; background: var(--yellow); color: var(--black); border-radius: var(--r-full); font-weight: 700; }
.error-404-padding { padding: 3rem 0; }
.error-404-cats { margin-top: 2rem; }
.error-404-cats-label { margin-bottom: 1rem; font-weight: 700; }
.cat-tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

/* Page template helpers */
.page-content-wrap { padding: 3rem 1.5rem; }
.page-thumbnail { margin-bottom: 2rem; }
.page-post-content { max-width: 760px; margin: 0 auto; }

/* Author page helpers */
.author-page-wrap { padding: 2rem 1.5rem; }
.author-box-centered { max-width: 700px; margin: 0 auto 2rem; }

/* Footer newsletter form */
.footer-newsletter-form { margin-top: 0.85rem; }

/* Related post card small title */
.post-card-title-sm { font-size: 1rem; }

/* ==========================================================================
   COMMENTS
   ========================================================================== */
.comments-area { max-width: var(--container-narrow); margin: 0 auto; padding: 1.75rem 1.5rem; }
.comments-title { font-size: 1.25rem; margin-bottom: 1.25rem; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list .comment-body {
    padding: 1.1rem; background: var(--white); border-radius: var(--r-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-bottom: 0.65rem;
}
.comment-list .comment-meta { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.65rem; }
.comment-list .comment-author img { width: 42px; height: 42px; border-radius: var(--r-full); }
.comment-list .comment-author-name { font-weight: 700; color: var(--black); }
.comment-list .comment-date { font-size: 0.76rem; color: var(--black); }
.comment-list .comment-content { font-size: 0.88rem; color: var(--black); }
.comment-list .children { list-style: none; padding-left: 1.75rem; margin-top: 0.65rem; }
.comment-respond {
    margin-top: 1.25rem; padding: 1.5rem; background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.comment-respond h3 { font-size: 1.1rem; margin-bottom: 0.85rem; }
.comment-form { display: grid; gap: 0.65rem; }
.comment-form p { margin: 0; }
.comment-form label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.2rem; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
    width: 100%; padding: 0.65rem 0.9rem; border: 2px solid var(--gray-200); border-radius: var(--r-sm);
    font-size: 0.88rem; transition: border-color var(--dur-fast);
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--yellow); outline: none; }
.comment-form textarea { min-height: 110px; resize: vertical; }
.comment-form .submit {
    padding: 0.75rem 1.75rem; background: var(--yellow); color: var(--black); border-radius: var(--r-full);
    font-weight: 700; font-family: var(--font-heading); font-size: 0.86rem; transition: all var(--dur-fast);
    cursor: pointer; border: none;
}
.comment-form .submit:hover { background: var(--yellow-dark); transform: translateY(-2px); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-page-section { padding: 3rem 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.contact-info {
    background: var(--yellow-soft); border-radius: var(--r-lg); padding: 2.5rem;
    border: 1px solid rgba(255,200,12,0.2);
}
.contact-info h2 { margin-bottom: 0.85rem; font-size: 1.6rem; }
.contact-info p { color: var(--black); margin-bottom: 1.5rem; line-height: 1.75; font-size: 0.95rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,200,12,0.15); }
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item .icon {
    width: 48px; height: 48px; background: var(--yellow); border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--black); font-size: 1.1rem;
    transition: transform var(--dur-fast);
}
.contact-info-item:hover .icon { transform: scale(1.1) rotate(5deg); }
.contact-info-item .info h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.contact-info-item .info p, .contact-info-item .info a { color: var(--black); font-size: 0.88rem; margin: 0; }
.contact-info-item .info a:hover { color: var(--yellow-dark); }
.contact-social-inline { margin-top: 0.5rem; display: flex; gap: 0.5rem; }
.contact-social-inline a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-full); background: var(--yellow); color: var(--black) !important; font-size: 1rem;
    transition: all var(--dur); border: 1px solid transparent;
}
.contact-social-inline a:hover { background: var(--yellow-dark); transform: translateY(-3px); color: var(--black) !important; }

.contact-form-wrap {
    background: var(--white); border-radius: var(--r-lg); padding: 2.5rem;
    box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}

/* Forminator form styling */
.contact-form-wrap .forminator-custom-form { width: 100% !important; max-width: 100% !important; }
.contact-form-wrap .forminator-field {
    margin-bottom: 1.2rem !important;
}
.contact-form-wrap .forminator-field label {
    font-family: var(--font-heading) !important; font-weight: 600 !important; font-size: 0.9rem !important;
    color: var(--gray-800) !important; margin-bottom: 0.4rem !important; display: block !important;
}
.contact-form-wrap .forminator-field input[type="text"],
.contact-form-wrap .forminator-field input[type="email"],
.contact-form-wrap .forminator-field input[type="text"],
.contact-form-wrap .forminator-field textarea,
.contact-form-wrap .forminator-field select {
    width: 100% !important; padding: 0.85rem 1.1rem !important;
    border: 2px solid var(--gray-200) !important; border-radius: var(--r-sm) !important;
    font-size: 0.95rem !important; font-family: var(--font-body) !important;
    transition: border-color var(--dur-fast) !important; background: var(--white) !important;
    color: var(--black) !important;
}
.contact-form-wrap .forminator-field input:focus,
.contact-form-wrap .forminator-field textarea:focus,
.contact-form-wrap .forminator-field select:focus {
    border-color: var(--yellow) !important; outline: none !important;
    box-shadow: 0 0 0 3px rgba(255,200,12,0.12) !important;
}
.contact-form-wrap .forminator-button,
.contact-form-wrap .forminator-submit {
    background: var(--yellow) !important; color: var(--black) !important;
    border: none !important; border-radius: var(--r-full) !important;
    padding: 0.85rem 2.5rem !important; font-size: 1rem !important; font-weight: 600 !important;
    font-family: var(--font-heading) !important; cursor: pointer !important;
    transition: all var(--dur) !important; width: 100% !important;
}
.contact-form-wrap .forminator-button:hover,
.contact-form-wrap .forminator-submit:hover {
    background: var(--yellow-dark) !important; transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}
.contact-form-wrap .forminator-field .forminator-error-message { display: none !important; }

/* Contact social section */
.contact-social-section { padding: 2.5rem 0 4rem; }
.contact-social-box {
    background: var(--gray-50); border-radius: var(--r-lg); padding: 3rem 2.5rem; text-align: left;
    border: 1px solid var(--gray-200); position: relative; overflow: hidden;
}
.contact-social-box::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
    background: rgba(255,200,12,0.08); border-radius: 50%;
}
.contact-social-box h3 { font-size: 1.5rem; margin-bottom: 1rem; position: relative; }
.contact-social-links { display: flex; justify-content: flex-start; gap: 0.65rem; position: relative; }
.contact-social-links a {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-full); background: var(--white); color: var(--black); font-size: 1.1rem;
    box-shadow: var(--shadow-sm); transition: all var(--dur); border: 1px solid var(--gray-200);
}
.contact-social-links a:hover { background: var(--yellow); transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-page { padding: 2.5rem 0; }
.about-hero-section { padding: 3rem 0; }
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-hero-text .section-subtitle { margin-bottom: 0.75rem; display: inline-block; }
.about-hero-text h2 { font-size: 2rem; margin-bottom: 1rem; line-height: 1.3; }
.about-hero-text p { font-size: 1rem; color: var(--black); margin-bottom: 1rem; line-height: 1.8; }
.about-hero-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.about-hero-image { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-badge {
    position: absolute; bottom: 1rem; left: 1rem; background: var(--white); border-radius: var(--r-full);
    padding: 0.5rem 1.1rem; display: flex; align-items: center; gap: 0.5rem; box-shadow: var(--shadow-md);
    font-size: 0.82rem; font-weight: 600; color: var(--black);
}
.about-hero-badge i { color: var(--yellow-dark); }

/* About stats */
.about-stats-section { padding: 1.5rem 0; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.about-stat {
    text-align: center; padding: 2rem 1.5rem; background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--dur);
}
.about-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.about-stat .stat-icon {
    width: 52px; height: 52px; margin: 0 auto 0.85rem; background: var(--yellow-soft); border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center; color: var(--yellow-dark); font-size: 1.3rem;
}
.about-stat .stat-number { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--yellow-dark); line-height: 1; }
.about-stat .stat-label { font-size: 0.82rem; color: var(--black); margin-top: 0.35rem; }

/* About features */
.about-features-section { padding: 3rem 0; }
.about-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.about-feature-card {
    padding: 2rem 1.5rem; background: var(--white); border-radius: var(--r-lg); text-align: center;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--dur);
}
.about-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.feature-card-icon {
    width: 60px; height: 60px; margin: 0 auto 1rem; background: var(--yellow); border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 1.4rem;
    transition: transform var(--dur);
}
.about-feature-card:hover .feature-card-icon { transform: scale(1.1) rotate(5deg); }
.about-feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.about-feature-card p { font-size: 0.88rem; color: var(--black); margin: 0; }

/* About content section */
.about-content-section { padding: 3rem 0 3rem; }
.about-content-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; }
.about-content-text .section-subtitle { color: var(--yellow-dark); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: inline-block; margin-bottom: 0.5rem; padding: 0.25rem 0.7rem; background: var(--yellow-soft); border-radius: var(--r-sm); }
.about-content-text .section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.2rem; }
.about-main-content { font-size: 1rem; line-height: 1.85; color: var(--black); }
.about-main-content p { margin-bottom: 1.1rem; }
.about-main-content .toc-widget,
.about-main-content .toc-nav,
.about-main-content .share-buttons,
.about-main-content .single-post-sidebar,
.about-main-content .single-post-tags,
.about-main-content .post-navigation,
.about-main-content .related-posts { display: none !important; }
.about-main-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.about-main-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.8rem; }
.about-content-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3 / 4; }
.about-content-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur) var(--ease); }
.about-content-image:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
    .about-content-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* About team */
.about-team-section { padding: 3rem 0; background: var(--gray-50); }
.about-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
    text-align: center; background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--dur);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.team-card-avatar {
    width: 120px; height: 120px; margin: 0 auto 1rem; border-radius: var(--r-full); overflow: hidden;
    border: 4px solid var(--yellow); box-shadow: var(--shadow-sm);
}
.team-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.82rem; color: var(--yellow-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* About CTA */
.about-cta-section { padding: 3rem 0; }
.about-cta {
    text-align: center; padding: 3.5rem 2rem; background: var(--yellow-soft); border-radius: var(--r-xl);
    border: 1px solid rgba(255,200,12,0.2); position: relative; overflow: hidden;
}
.about-cta::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
    background: rgba(255,200,12,0.1); border-radius: 50%;
}
.about-cta::after {
    content: ''; position: absolute; bottom: -40px; left: -40px; width: 150px; height: 150px;
    background: rgba(255,200,12,0.08); border-radius: 50%;
}
.about-cta h2 { font-size: 1.8rem; margin-bottom: 0.65rem; position: relative; }
.about-cta p { color: var(--black); margin-bottom: 1.5rem; font-size: 1.05rem; position: relative; }
.about-cta-actions { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; position: relative; }

/* ==========================================================================
   WRITE FOR US — Clean, professional, modern layout
   ========================================================================== */
.wfu-content { max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem; }
.wfu-intro { margin-bottom: 2.5rem; font-size: 1.05rem; line-height: 1.85; color: var(--black); }
.wfu-intro p { margin-bottom: 1rem; }
.wfu-intro h2, .wfu-intro h3 { margin: 1.5rem 0 0.75rem; }

.wfu-section { margin-bottom: 3rem; }
.wfu-section-header { margin-bottom: 1.5rem; }
.wfu-section-header .section-subtitle { margin-bottom: 0.5rem; }
.wfu-section-header h2 { font-size: clamp(1.4rem, 3vw, 1.75rem); margin-bottom: 0.5rem; }
.wfu-section-desc { font-size: 0.95rem; color: var(--black); line-height: 1.7; margin-top: 0.5rem; }
.wfu-lead-text { font-size: 0.95rem; color: var(--black); margin-bottom: 1.25rem; line-height: 1.7; }

.wfu-topics { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin: 0; }
.wfu-topic {
    padding: 1.75rem 1.5rem; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
    transition: all var(--dur); border: 1px solid var(--gray-200); border-left: 4px solid var(--yellow);
}
.wfu-topic:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.wfu-topic h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.wfu-topic h4 i { color: var(--yellow-dark); margin-right: 0.4rem; }
.wfu-topic p { font-size: 0.88rem; color: var(--black); margin: 0; line-height: 1.7; }
.wfu-topic ul { list-style: none; padding: 0; margin: 0; }
.wfu-topic ul li { font-size: 0.88rem; color: var(--black); line-height: 1.7; padding-left: 1.25rem; position: relative; margin-bottom: 0.35rem; }
.wfu-topic ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.7rem; color: var(--yellow-dark); position: absolute; left: 0; top: 0.15rem; }

/* WFU topics interested list */
.wfu-topics-interested {
    padding: 2rem; background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); border-left: 4px solid var(--yellow);
}
.wfu-topics-interested h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.wfu-topics-interested-intro { margin-bottom: 1.25rem; color: var(--black); font-size: 0.92rem; line-height: 1.7; }
.wfu-topics-note { margin-top: 1.25rem; color: var(--black); font-size: 0.92rem; font-style: italic; }
.wfu-topics-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.wfu-topic-item {
    display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.75rem 1rem;
    background: var(--gray-50); border-radius: var(--r-md); transition: all var(--dur-fast);
    border: 1px solid transparent;
}
.wfu-topic-item:hover { border-color: var(--yellow); background: var(--white); box-shadow: var(--shadow-xs); }
.wfu-topic-item i { color: var(--yellow-dark); font-size: 0.95rem; flex-shrink: 0; margin-top: 0.15rem; }
.wfu-topic-item span { color: var(--black); font-size: 0.82rem; line-height: 1.6; }
.wfu-topic-item span strong { font-weight: 700; }

/* WFU benefits list */
.wfu-benefits-list { display: flex; flex-direction: column; gap: 0.85rem; }
.wfu-benefit-item {
    display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem;
    background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-xs); border: 1px solid var(--gray-200);
    transition: all var(--dur-fast);
}
.wfu-benefit-item:hover { border-color: var(--yellow); transform: translateX(4px); }
.wfu-benefit-item i { color: var(--yellow-dark); font-size: 1.15rem; flex-shrink: 0; margin-top: 0.1rem; }
.wfu-benefit-item span { color: var(--black); font-size: 0.92rem; line-height: 1.65; }

/* WFU guidelines box */
.wfu-guidelines-box { display: flex; flex-direction: column; gap: 1rem; }
.wfu-guideline-item {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; background: var(--white);
    border-radius: var(--r-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    transition: all var(--dur-fast);
}
.wfu-guideline-item:hover { border-color: var(--yellow); transform: translateX(4px); }
.wfu-guideline-icon {
    width: 48px; height: 48px; background: var(--yellow-soft); border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center; color: var(--yellow-dark); font-size: 1.2rem; flex-shrink: 0;
}
.wfu-guideline-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.wfu-guideline-item p { font-size: 0.88rem; color: var(--black); margin: 0; line-height: 1.65; }

/* WFU submit list */
.wfu-submit-section {
    padding: 1.75rem 1.5rem; background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); border-left: 4px solid var(--yellow);
}
.wfu-submit-section h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.wfu-submit-intro { color: var(--black); line-height: 1.7; margin-bottom: 1rem; }
.wfu-submit-section p { color: var(--black); line-height: 1.7; }
.wfu-submit-list { list-style: none; padding: 0; }
.wfu-submit-list li {
    padding: 0.5rem 0; padding-left: 1.75rem; position: relative; font-size: 0.92rem; color: var(--black);
}
.wfu-submit-list li::before {
    content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0;
    top: 0.5rem; color: var(--yellow-dark); font-size: 0.9rem;
}

/* WFU review box */
.wfu-review-box {
    padding: 1.75rem 1.5rem; background: var(--yellow-soft); border-radius: var(--r-lg);
    border: 1px solid rgba(255,200,12,0.2); border-left: 4px solid var(--yellow);
}
.wfu-review-box h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.wfu-review-box h3 i { color: var(--yellow-dark); margin-right: 0.4rem; }
.wfu-review-box p { color: var(--black); line-height: 1.7; margin: 0; }

/* WFU benefits grid */
.wfu-benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.85rem; }
.wfu-benefit-card {
    display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.85rem 1rem; background: var(--white);
    border-radius: var(--r-md); box-shadow: var(--shadow-xs); border: 1px solid var(--gray-200);
    transition: all var(--dur-fast);
}
.wfu-benefit-card:hover { border-color: var(--yellow); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.wfu-benefit-card i { color: var(--yellow-dark); font-size: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.wfu-benefit-card span { color: var(--black); font-size: 0.85rem; line-height: 1.6; }

/* WFU extra sections */
.wfu-extra-sections { display: flex; flex-direction: column; gap: 1rem; }
.wfu-extra-card {
    padding: 1.5rem 1.75rem; background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); border-left: 4px solid var(--yellow);
    transition: all var(--dur-fast);
}
.wfu-extra-card:hover { border-color: var(--yellow); transform: translateX(4px); }
.wfu-extra-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.wfu-extra-card p { color: var(--black); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* WFU FAQ */
.wfu-faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.wfu-faq-item {
    background: var(--white); border-radius: var(--r-md); border: 1px solid var(--gray-200);
    overflow: hidden; transition: all var(--dur-fast);
}
.wfu-faq-item[open] { border-color: var(--yellow); box-shadow: var(--shadow-sm); }
.wfu-faq-item summary {
    padding: 1rem 1.25rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem;
    color: var(--black); cursor: pointer; list-style: none; display: flex; align-items: center;
    justify-content: space-between; gap: 0.5rem;
}
.wfu-faq-item summary::-webkit-details-marker { display: none; }
.wfu-faq-item summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.75rem;
    color: var(--yellow-dark); transition: transform var(--dur-fast);
}
.wfu-faq-item[open] summary::after { transform: rotate(180deg); }
.wfu-faq-item p { padding: 0 1.25rem 1rem; color: var(--black); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* WFU CTA */
.wfu-cta {
    text-align: center; padding: 3rem 2rem; background: var(--yellow-soft); border-radius: var(--r-xl);
    margin: 2rem 0; position: relative; overflow: hidden; border: 1px solid rgba(255,200,12,0.2);
}
.wfu-cta::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 180px; height: 180px;
    background: rgba(255,200,12,0.1); border-radius: 50%;
}
.wfu-cta::after {
    content: ''; position: absolute; bottom: -40px; left: -40px; width: 140px; height: 140px;
    background: rgba(255,200,12,0.08); border-radius: 50%;
}
.wfu-cta h2 { margin-bottom: 0.5rem; position: relative; font-size: 1.8rem; }
.wfu-cta-message { color: var(--black); margin-bottom: 1.5rem; font-size: 1.05rem; position: relative; line-height: 1.7; }
.wfu-cta-signoff { position: relative; margin-bottom: 1.5rem; }
.wfu-cta-line { margin-bottom: 0.25rem; position: relative; font-size: 1rem; }
.wfu-cta-name { margin-bottom: 0.25rem; position: relative; font-weight: 600; font-size: 1rem; }
.wfu-cta-email { margin-bottom: 0; position: relative; font-size: 0.95rem; color: var(--black); }
.wfu-cta p { color: var(--black); margin-bottom: 1.5rem; font-size: 1.1rem; position: relative; }

/* Pet SVG icon */
.pet-svg-icon { width: 52px; height: 52px; display: inline-block; color: var(--black); }
.pet-circle:hover .pet-svg-icon { color: var(--black); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed; bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px;
    background: var(--yellow); color: var(--black); border-radius: var(--r-full);
    display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden;
    transition: all var(--dur) var(--ease); z-index: 999; box-shadow: var(--shadow-md); cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--yellow-dark); transform: translateY(-4px) scale(1.1); box-shadow: var(--shadow-yellow); }

/* ==========================================================================
   MOBILE OVERLAY
   ========================================================================== */
.mobile-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); z-index: 1000; opacity: 0; transition: opacity var(--dur);
}
.mobile-overlay.active { display: block; opacity: 1; }

/* ==========================================================================
   PREMIUM ANIMATION ENHANCEMENTS
   ========================================================================== */

/* Scroll reveal disabled for instant content visibility */
.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal.fade-up, .reveal.fade-left, .reveal.fade-right, .reveal.scale-in { transform: none !important; opacity: 1 !important; }
.reveal.active { opacity: 1 !important; transform: none !important; }
.reveal-d1, .reveal-d2, .reveal-d3, .reveal-d4, .reveal-d5 { transition-delay: 0s !important; }
.reveal:not(.active) { opacity: 1 !important; transform: none !important; }

/* Card hover elevation — premium lift */
.post-card { transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s; }
.post-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--yellow); }

/* Image zoom on hover — smooth and subtle */
.post-card-thumbnail img { transition: transform 0.4s var(--ease); }
.post-card:hover .post-card-thumbnail img { transform: scale(1.08); }

/* Trending card enhanced hover */
.trending-card { transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.trending-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-xl); }
.trending-card img { transition: transform 0.4s var(--ease); }
.trending-card:hover img { transform: scale(1.12); }

/* Service card enhanced hover */
.service-card { transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Topic card enhanced hover */
.topic-card { transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s var(--ease); }
.topic-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: var(--shadow-md); }

/* Pet circle enhanced hover */
.pet-circle { transition: transform 0.4s var(--ease-spring); }
.pet-circle:hover { transform: translateY(-8px) scale(1.05); }
.pet-circle-icon { transition: background 0.5s var(--ease-spring), border-color 0.5s var(--ease-spring), transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring); }

/* Button ripple effect enhancement */
.btn { transition: all 0.4s var(--ease), box-shadow 0.3s; }
.btn::after { transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.btn:hover::after { width: 400px; height: 400px; }

/* Nav underline expansion — smoother */
.nav-menu > li > a::after { transition: width 0.4s var(--ease); }
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after { width: 70%; }

/* Social card enhanced hover */
.social-card img { transition: transform 0.4s var(--ease); }
.social-card::after { transition: transform 0.4s var(--ease-spring); }

/* About store image parallax-like effect */
.about-store-image img { transition: transform 0.4s var(--ease); }
.about-store-image:hover img { transform: scale(1.08); }

/* Pagination hover enhancement */
.pagination .page-numbers { transition: all 0.3s var(--ease); }
.pagination .page-numbers:hover { transform: translateY(-3px) scale(1.05); }

/* Back to top smooth */
.back-to-top { transition: all 0.4s var(--ease-spring); }

/* Comment body hover */
.comment-list .comment-body { transition: box-shadow 0.3s var(--ease); }
.comment-list .comment-body:hover { box-shadow: var(--shadow-md); }

/* ==========================================================================
   FALLBACK IMAGE STYLES — for posts without thumbnails
   ========================================================================== */
.post-card-thumbnail.no-thumb {
    background: linear-gradient(135deg, var(--yellow-soft), var(--gray-100));
    display: flex; align-items: center; justify-content: center;
}
.post-card-thumbnail.no-thumb .no-thumb-icon {
    font-size: 3rem; color: var(--yellow-dark); opacity: 0.5;
}
.single-post-thumbnail.no-thumb {
    background: linear-gradient(135deg, var(--yellow-soft), var(--gray-100));
    display: flex; align-items: center; justify-content: center;
}
.single-post-thumbnail.no-thumb .no-thumb-icon {
    font-size: 5rem; color: var(--yellow-dark); opacity: 0.4;
}
.related-post-thumbnail.no-thumb {
    background: linear-gradient(135deg, var(--yellow-soft), var(--gray-100));
    display: flex; align-items: center; justify-content: center;
}
.related-post-thumbnail.no-thumb .no-thumb-icon {
    font-size: 2.5rem; color: var(--yellow-dark); opacity: 0.5;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .footer-widgets { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .content-area { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
    .about-store-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-store-image { order: -1; max-width: 500px; margin: 0 auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image-wrap { min-height: 350px; max-width: 500px; margin: 0 auto; }
    .trending-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pet-circles { grid-template-columns: repeat(3, 1fr); }
    .about-features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .menu-toggle { display: flex; }
    .main-navigation {
        position: fixed; top: 0; right: -100%; width: 320px; max-width: 85vw; height: 100vh;
        background: var(--white); box-shadow: var(--shadow-xl); flex-direction: column;
        justify-content: flex-start; padding: 5.5rem 1.5rem 2rem; transition: right var(--dur) var(--ease);
        overflow-y: auto; z-index: 1001;
    }
    .main-navigation.active { right: 0; }
    .nav-menu { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
    .nav-menu > li > a { padding: 0.75rem 1rem; border-radius: var(--r-sm); font-size: 1rem; color: var(--black); }
    .nav-menu > li > a::after { display: none; }
    .nav-menu .sub-menu {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        padding-left: 1rem; min-width: auto; display: none; border: none;
    }
    .nav-menu li.open > .sub-menu { display: block; }
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-image { max-width: 500px; margin: 0 auto; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 2.5rem 0 3rem; }
}

@media (max-width: 900px) {
    .single-post-body { grid-template-columns: 1fr; }
    .single-post-sidebar { position: static; }
    .toc-widget { max-width: 400px; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .section-lg { padding: 4.5rem 0; }
    .posts-grid, .posts-grid.cols-2, .posts-grid.cols-4 { grid-template-columns: 1fr; }
    .footer-widgets { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .single-post-title { font-size: 1.4rem; }
    .single-post-meta { flex-direction: column; gap: 0.4rem; }
    .single-post-banner { height: 320px; }
    .single-post-banner .single-post-meta { flex-direction: row; flex-wrap: wrap; }
    .author-box { flex-direction: column; text-align: center; }
    .author-box .author-avatar { margin: 0 auto; }
    .about-features-grid { grid-template-columns: 1fr; }
    .about-team-grid { grid-template-columns: 1fr; }
    .about-hero-actions { justify-content: center; }
    .about-cta-actions { flex-direction: column; }
    .wfu-benefits-grid { grid-template-columns: 1fr; }
    .wfu-topics-list { grid-template-columns: 1fr; }
    .share-buttons { flex-direction: column; gap: 0.65rem; align-items: center; }
    .post-navigation { flex-direction: column; }
    .post-navigation a { max-width: 100%; }
    .post-navigation .nav-next { text-align: left; margin-left: 0; }
    .newsletter-form { flex-direction: column; border-radius: var(--r-lg); }
    .newsletter-form button { width: 100%; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .related-posts-grid { grid-template-columns: 1fr; }
    .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .trending-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .pet-circles { grid-template-columns: repeat(2, 1fr); }
    .single-post-thumbnail { aspect-ratio: 16/10; }
    .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
    .promo-banner { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
    .container, .container-narrow, .container-wide { padding: 0 1rem; }
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .about-stats { grid-template-columns: 1fr; }
    .error-404 h1 { font-size: 4rem; }
    .section-header .section-title { font-size: 1.4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .pet-circles { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 1rem; }
    .hero-stat .stat-num { font-size: 1.4rem; }
    .wfu-topics-list { grid-template-columns: 1fr; }
    .wfu-content { padding: 2rem 1rem; }
    .related-posts-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
    .site-header, .site-footer, .sidebar, .breadcrumbs, .share-buttons, .back-to-top, .reading-progress, .newsletter-cta, .hero-shape { display: none !important; }
    body { color: #000; background: #fff; }
    .single-post-content { max-width: 100%; }
}
