/*
Theme Name: Urban Oasis Blog
Theme URI: https://www.urbanoasis.org.in/blog/
Author: Honey Money Associates Ltd.
Author URI: https://www.urbanoasis.org.in/
Description: Blog theme for urbanoasis.org.in, matched to the main site's palette (#f3b35e / #526d4d), Poppins typography and 1400px container. Includes author byline and bio box for E-E-A-T, breadcrumbs, related posts, and persistent links back to the main site.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urban-oasis-blog
Tags: blog, real-estate, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   1. TOKENS — lifted from the main site's style.css
   ============================================================ */
:root {
  --uo-primary: #f3b35e;
  --uo-primary-dark: #ee9117;
  --uo-primary-darker: #ef9d2f;
  --uo-primary-soft: rgba(243, 179, 94, 0.12);
  --uo-primary-line: rgba(243, 179, 94, 0.35);

  --uo-secondary: #526d4d;
  --uo-secondary-dark: #3c4f38;
  --uo-secondary-soft: rgba(82, 109, 77, 0.12);
  --uo-secondary-line: rgba(82, 109, 77, 0.3);

  --uo-ink: #212529;
  --uo-muted: #6c757d;
  --uo-border: #dee2e6;
  --uo-cream: #fcf9ef;
  --uo-white: #fff;
  --uo-whatsapp: #25d366;

  --uo-radius-sm: 0.25rem;
  --uo-radius: 0.5rem;
  --uo-radius-lg: 1rem;

  --uo-shadow-sm: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0 0 1.25rem rgba(30, 34, 40, 0.04);
  --uo-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);

  --uo-wrap: 1400px;
  --uo-read: 760px;
  --uo-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--uo-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--uo-ink);
  background-color: var(--uo-white);
  text-align: left;
}

img, svg, video { max-width: 100%; height: auto; vertical-align: middle; }
img { border-style: none; }

a { color: var(--uo-secondary); text-decoration: none; transition: color 0.15s ease; }
a:hover, a:focus { color: var(--uo-primary-dark); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--uo-ink);
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.15rem; }
h5, h6 { font-size: 1rem; }

p { margin-top: 0; margin-bottom: 1.15rem; }
ul, ol { margin-top: 0; margin-bottom: 1.15rem; padding-left: 1.35rem; }
li { margin-bottom: 0.4rem; }

hr { border: 0; border-top: 1px solid var(--uo-border); margin: 2.5rem 0; }

:focus-visible { outline: 3px solid var(--uo-primary); outline-offset: 2px; }

.uo-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.uo-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--uo-secondary); color: #fff; padding: 0.75rem 1.25rem;
}
.uo-skip-link:focus { left: 0; color: #fff; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.uo-wrap { width: 100%; max-width: var(--uo-wrap); margin: 0 auto; padding: 0 1rem; }
.uo-wrap--narrow { max-width: 1140px; }

.uo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}
@media (max-width: 991px) {
  .uo-layout { grid-template-columns: 1fr; gap: 2.5rem; padding: 1.5rem 0 3rem; }
}

/* ============================================================
   4. HEADER
   ============================================================ */
.uo-header {
  background: var(--uo-white);
  border-bottom: 1px solid var(--uo-border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.uo-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.uo-header__brand { display: flex; align-items: center; flex-shrink: 0; }
.uo-header__brand img { height: 42px; width: auto; }
@media (max-width: 991px) { .uo-header__brand img { height: 30px; } }
.uo-header__brand-text { font-weight: 700; font-size: 1.15rem; color: var(--uo-ink); }

.uo-nav { display: flex; align-items: center; gap: 0.15rem; }
.uo-nav ul { list-style: none; display: flex; align-items: center; margin: 0; padding: 0; gap: 0.15rem; }
.uo-nav li { margin: 0; position: relative; }
.uo-nav a {
  display: block;
  padding: 0.65rem 0.9rem;
  color: var(--uo-ink);
  font-size: 0.95rem;
  border-radius: var(--uo-radius-sm);
}
.uo-nav a:hover,
.uo-nav .current-menu-item > a,
.uo-nav .current_page_item > a {
  background: var(--uo-primary);
  color: var(--uo-ink);
  text-decoration: none;
}
.uo-nav .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff; border: 1px solid var(--uo-border);
  border-radius: var(--uo-radius-sm); box-shadow: var(--uo-shadow); padding: 0.35rem;
  flex-direction: column; z-index: 30;
}
.uo-nav li:hover > .sub-menu,
.uo-nav li:focus-within > .sub-menu { display: flex; }

.uo-header__actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.uo-header__phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; color: var(--uo-secondary); font-size: 0.95rem; white-space: nowrap;
}
.uo-header__phone:hover { color: var(--uo-secondary-dark); text-decoration: none; }

.uo-burger {
  display: none; background: none; border: 0; padding: 0.5rem;
  cursor: pointer; color: var(--uo-ink); line-height: 0;
}
@media (max-width: 991px) {
  .uo-burger { display: block; order: 3; }
  .uo-nav {
    display: none; order: 4; width: 100%;
    border-top: 1px solid var(--uo-border); padding: 0.5rem 0 0.75rem;
  }
  .uo-nav.is-open { display: block; }
  .uo-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .uo-nav a { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--uo-border); border-radius: 0; }
  .uo-nav .sub-menu { display: flex; position: static; border: 0; box-shadow: none; padding-left: 1rem; }
  .uo-header__bar { flex-wrap: wrap; }
  .uo-header__phone span { display: none; }
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.uo-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; line-height: 1.2;
  border: 1px solid transparent; border-radius: var(--uo-radius-sm);
  cursor: pointer; text-align: center; transition: all 0.15s ease;
}
.uo-btn:hover, .uo-btn:focus { text-decoration: none; }
.uo-btn--primary { background: var(--uo-primary); border-color: var(--uo-primary); color: #fff; }
.uo-btn--primary:hover { background: var(--uo-primary-darker); border-color: var(--uo-primary-darker); color: #fff; }
.uo-btn--secondary { background: var(--uo-secondary); border-color: var(--uo-secondary); color: #fff; }
.uo-btn--secondary:hover { background: var(--uo-secondary-dark); border-color: var(--uo-secondary-dark); color: #fff; }
.uo-btn--ghost { background: transparent; border-color: var(--uo-secondary); color: var(--uo-secondary); }
.uo-btn--ghost:hover { background: var(--uo-secondary); color: #fff; }
.uo-btn--sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
.uo-btn--block { display: flex; width: 100%; }

/* ============================================================
   6. PAGE HEAD / BREADCRUMB
   ============================================================ */
.uo-pagehead {
  background: linear-gradient(to bottom, var(--uo-secondary-soft) 0%, var(--uo-white) 100%);
  padding: 2.25rem 0 1.75rem;
  border-bottom: 1px solid var(--uo-border);
}
.uo-pagehead h1 { margin-bottom: 0.4rem; }
.uo-pagehead__sub { color: var(--uo-muted); margin-bottom: 0; }

.uo-crumbs { font-size: 0.85rem; color: var(--uo-muted); margin-bottom: 0.85rem; }
.uo-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.uo-crumbs li { margin: 0; display: flex; align-items: center; gap: 0.4rem; }
.uo-crumbs li::after { content: "/"; color: var(--uo-border); }
.uo-crumbs li:last-child::after { content: ""; }
.uo-crumbs a { color: var(--uo-secondary); }

/* ============================================================
   7. POST CARDS (archive / index)
   ============================================================ */
.uo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
@media (max-width: 575px) { .uo-grid { grid-template-columns: 1fr; } }

.uo-card {
  display: flex; flex-direction: column;
  background: var(--uo-white);
  border: 1px solid var(--uo-border);
  border-radius: var(--uo-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.uo-card:hover { box-shadow: var(--uo-shadow); border-color: var(--uo-primary-line); transform: translateY(-2px); }

.uo-card__media { display: block; position: relative; background: var(--uo-cream); aspect-ratio: 16 / 10; overflow: hidden; }
.uo-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.uo-card:hover .uo-card__media img { transform: scale(1.04); }
.uo-card__cat {
  position: absolute; left: 0.85rem; bottom: 0.85rem; z-index: 2;
  background: var(--uo-secondary); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 50rem;
}
.uo-card__cat:hover { background: var(--uo-secondary-dark); color: #fff; text-decoration: none; }

.uo-card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.uo-card__title { font-size: 1.12rem; line-height: 1.4; margin-bottom: 0.6rem; }
.uo-card__title a { color: var(--uo-ink); }
.uo-card__title a:hover { color: var(--uo-secondary); text-decoration: none; }
.uo-card__excerpt { font-size: 0.92rem; color: var(--uo-muted); margin-bottom: 1rem; flex: 1 1 auto; }
.uo-card__meta {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--uo-muted);
  border-top: 1px solid var(--uo-border); padding-top: 0.85rem;
}
.uo-card__avatar { border-radius: 50%; flex-shrink: 0; }
.uo-card__meta a { color: var(--uo-secondary); font-weight: 600; }
.uo-card__dot { color: var(--uo-border); }

/* Featured / first card */
.uo-card--wide { grid-column: 1 / -1; flex-direction: row; }
.uo-card--wide .uo-card__media { width: 46%; aspect-ratio: auto; flex-shrink: 0; }
.uo-card--wide .uo-card__body { padding: 2rem 2.25rem; justify-content: center; }
.uo-card--wide .uo-card__title { font-size: 1.7rem; }
.uo-card--wide .uo-card__excerpt { font-size: 1rem; }
@media (max-width: 767px) {
  .uo-card--wide { flex-direction: column; }
  .uo-card--wide .uo-card__media { width: 100%; aspect-ratio: 16 / 10; }
  .uo-card--wide .uo-card__body { padding: 1.15rem 1.25rem 1.35rem; }
  .uo-card--wide .uo-card__title { font-size: 1.25rem; }
}

/* ============================================================
   8. SINGLE POST
   ============================================================ */
.uo-single__header { margin-bottom: 1.75rem; }
.uo-single__title { font-size: 2.35rem; margin-bottom: 1rem; }
@media (max-width: 767px) { .uo-single__title { font-size: 1.7rem; } }

.uo-single__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.25rem;
  font-size: 0.88rem; color: var(--uo-muted);
  padding: 0.9rem 0; border-top: 1px solid var(--uo-border); border-bottom: 1px solid var(--uo-border);
}
.uo-single__meta-item { display: inline-flex; align-items: center; gap: 0.45rem; }
.uo-single__meta img { border-radius: 50%; }
.uo-single__meta strong { color: var(--uo-ink); }
.uo-single__meta a { color: var(--uo-secondary); font-weight: 600; }

.uo-single__thumb { margin: 1.75rem 0; border-radius: var(--uo-radius-lg); overflow: hidden; }
.uo-single__thumb img { width: 100%; }

/* Article body typography */
.uo-content { font-size: 1.05rem; line-height: 1.75; }
.uo-content > * + * { margin-top: 1.15rem; }
.uo-content h2 {
  font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 0.85rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--uo-primary-line);
}
.uo-content h3 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.7rem; color: var(--uo-secondary); }
.uo-content h4 { font-size: 1.1rem; margin-top: 1.6rem; }
.uo-content ul, .uo-content ol { padding-left: 1.5rem; }
.uo-content li { margin-bottom: 0.55rem; }
.uo-content a { color: var(--uo-secondary); text-decoration: underline; text-underline-offset: 2px; }
.uo-content a:hover { color: var(--uo-primary-dark); }
.uo-content img { border-radius: var(--uo-radius); height: auto; }
.uo-content figure { margin: 1.75rem 0; }
.uo-content figcaption { font-size: 0.85rem; color: var(--uo-muted); text-align: center; margin-top: 0.6rem; }

.uo-content blockquote {
  margin: 1.75rem 0; padding: 1.15rem 1.5rem;
  background: var(--uo-cream);
  border-left: 4px solid var(--uo-primary);
  border-radius: 0 var(--uo-radius) var(--uo-radius) 0;
  font-size: 1.05rem;
}
.uo-content blockquote p:last-child { margin-bottom: 0; }

.uo-content table {
  width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: 0.95rem;
  display: block; overflow-x: auto; white-space: nowrap;
}
@media (min-width: 768px) { .uo-content table { display: table; white-space: normal; } }
.uo-content th, .uo-content td { padding: 0.75rem 1rem; border: 1px solid var(--uo-border); text-align: left; }
.uo-content thead th { background: var(--uo-secondary); color: #fff; font-weight: 600; border-color: var(--uo-secondary); }
.uo-content tbody tr:nth-child(even) { background: var(--uo-cream); }

.uo-content code {
  background: var(--uo-cream); padding: 0.15rem 0.4rem;
  border-radius: var(--uo-radius-sm); font-size: 0.9em;
}
.uo-content pre { background: var(--uo-ink); color: #f8f9fa; padding: 1.15rem; border-radius: var(--uo-radius); overflow-x: auto; }
.uo-content pre code { background: none; color: inherit; padding: 0; }

.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0.5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignwide { margin-left: -3rem; margin-right: -3rem; max-width: calc(100% + 6rem); }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
@media (max-width: 991px) { .alignwide { margin-left: 0; margin-right: 0; max-width: 100%; } }

/* Tags */
.uo-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0 0; }
.uo-tags__label { font-weight: 600; font-size: 0.88rem; align-self: center; margin-right: 0.25rem; }
.uo-tags a {
  font-size: 0.82rem; padding: 0.35rem 0.8rem;
  background: var(--uo-cream); border: 1px solid var(--uo-border);
  border-radius: 50rem; color: var(--uo-muted);
}
.uo-tags a:hover { background: var(--uo-primary); border-color: var(--uo-primary); color: #fff; text-decoration: none; }

/* ============================================================
   9. AUTHOR BOX — visible byline backing the schema
   ============================================================ */
.uo-author {
  display: flex; gap: 1.25rem; align-items: flex-start;
  margin-top: 2.75rem; padding: 1.5rem;
  background: var(--uo-cream);
  border: 1px solid var(--uo-primary-line);
  border-radius: var(--uo-radius-lg);
}
@media (max-width: 575px) { .uo-author { flex-direction: column; } }
.uo-author__avatar { border-radius: 50%; flex-shrink: 0; }
.uo-author__label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--uo-primary-dark); margin-bottom: 0.3rem;
}
.uo-author__name { font-size: 1.15rem; margin-bottom: 0.15rem; }
.uo-author__name a { color: var(--uo-ink); }
.uo-author__role { font-size: 0.88rem; color: var(--uo-muted); margin-bottom: 0.6rem; }
.uo-author__bio { font-size: 0.92rem; margin-bottom: 0.6rem; }
.uo-author__bio p:last-child { margin-bottom: 0; }
.uo-author__more { font-size: 0.88rem; font-weight: 600; }

/* Reviewer strip — for posts vetted by a second person */
.uo-reviewed {
  margin-top: 1rem; padding: 0.85rem 1.15rem;
  background: var(--uo-secondary-soft); border-left: 3px solid var(--uo-secondary);
  border-radius: 0 var(--uo-radius-sm) var(--uo-radius-sm) 0;
  font-size: 0.88rem;
}
.uo-reviewed strong { color: var(--uo-secondary); }

/* ============================================================
   10. CTA BLOCK — routes readers back to the main site
   ============================================================ */
.uo-cta {
  margin-top: 2.75rem; padding: 2.25rem 2rem;
  background: rgba(243, 179, 94, 0.5);
  border-radius: var(--uo-radius-lg);
  text-align: center;
}
.uo-cta__title { font-size: 1.45rem; margin-bottom: 0.5rem; }
.uo-cta__text { color: var(--uo-ink); margin-bottom: 1.35rem; }
.uo-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ============================================================
   11. RELATED POSTS / POST NAV
   ============================================================ */
.uo-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--uo-border); }
.uo-related__title { font-size: 1.45rem; margin-bottom: 1.5rem; }
.uo-related .uo-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }

.uo-postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
@media (max-width: 575px) { .uo-postnav { grid-template-columns: 1fr; } }
.uo-postnav a {
  display: block; padding: 1rem 1.25rem;
  border: 1px solid var(--uo-border); border-radius: var(--uo-radius);
  color: var(--uo-ink);
}
.uo-postnav a:hover { border-color: var(--uo-primary); text-decoration: none; }
.uo-postnav span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--uo-muted); margin-bottom: 0.25rem; }
.uo-postnav .uo-postnav__next { text-align: right; }

/* ============================================================
   12. SIDEBAR
   ============================================================ */
.uo-sidebar { align-self: start; position: sticky; top: 92px; }
@media (max-width: 991px) { .uo-sidebar { position: static; } }

.uo-widget {
  background: var(--uo-white);
  border: 1px solid var(--uo-border);
  border-radius: var(--uo-radius-lg);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.5rem;
}
.uo-widget__title {
  font-size: 1.05rem; margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--uo-primary);
}
.uo-widget ul { list-style: none; margin: 0; padding: 0; }
.uo-widget li { margin-bottom: 0.6rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--uo-border); font-size: 0.92rem; }
.uo-widget li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.uo-widget a { color: var(--uo-ink); }
.uo-widget a:hover { color: var(--uo-secondary); }

/* Enquiry widget — mirrors the main site's right_form */
.uo-enquire {
  background: var(--uo-white);
  border: 1px solid var(--uo-primary-line);
  border-radius: var(--uo-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--uo-shadow-sm);
  text-align: center;
  margin-bottom: 1.5rem;
}
.uo-enquire__title { font-size: 1.15rem; margin-bottom: 0.4rem; }
.uo-enquire__text { font-size: 0.9rem; color: var(--uo-muted); margin-bottom: 1.15rem; }
.uo-enquire__actions { display: flex; flex-direction: column; gap: 0.6rem; }
.uo-enquire__note { font-size: 0.75rem; color: var(--uo-muted); margin: 0.9rem 0 0; }

/* Search form */
.uo-search { display: flex; gap: 0.5rem; }
.uo-search input[type="search"] {
  flex: 1 1 auto; min-width: 0;
  padding: 0.6rem 0.85rem;
  font-family: inherit; font-size: 0.95rem;
  border: 1px solid var(--uo-border); border-radius: var(--uo-radius-sm);
}
.uo-search input[type="search"]:focus {
  outline: 0; border-color: var(--uo-primary);
  box-shadow: 0 0 0 0.2rem rgba(243, 179, 94, 0.25);
}

/* ============================================================
   13. PAGINATION
   ============================================================ */
.uo-pagination { margin-top: 3rem; }
.uo-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.uo-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 0.75rem;
  border: 1px solid var(--uo-border); border-radius: var(--uo-radius-sm);
  color: var(--uo-ink); font-weight: 600; font-size: 0.92rem;
}
.uo-pagination .page-numbers:hover { border-color: var(--uo-primary); background: var(--uo-primary-soft); text-decoration: none; }
.uo-pagination .page-numbers.current { background: var(--uo-primary); border-color: var(--uo-primary); color: #fff; }
.uo-pagination .page-numbers.dots { border-color: transparent; }

/* ============================================================
   14. COMMENTS
   ============================================================ */
.uo-comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--uo-border); }
.uo-comments__title { font-size: 1.35rem; margin-bottom: 1.5rem; }
.uo-comments .comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.uo-comments .comment-list li { margin-bottom: 1.5rem; }
.uo-comments .comment-body {
  padding: 1.15rem; background: var(--uo-cream);
  border-radius: var(--uo-radius); border: 1px solid var(--uo-border);
}
.uo-comments .children { list-style: none; margin-top: 1.15rem; padding-left: 1.5rem; border-left: 2px solid var(--uo-border); }
.uo-comments .comment-author { font-weight: 600; margin-bottom: 0.25rem; }
.uo-comments .comment-metadata { font-size: 0.8rem; color: var(--uo-muted); margin-bottom: 0.6rem; }
.uo-comments input[type="text"],
.uo-comments input[type="email"],
.uo-comments input[type="url"],
.uo-comments textarea {
  width: 100%; padding: 0.65rem 0.85rem; font-family: inherit; font-size: 0.95rem;
  border: 1px solid var(--uo-border); border-radius: var(--uo-radius-sm);
}
.uo-comments input:focus, .uo-comments textarea:focus {
  outline: 0; border-color: var(--uo-primary); box-shadow: 0 0 0 0.2rem rgba(243, 179, 94, 0.25);
}
.uo-comments .submit {
  background: var(--uo-primary); border: 1px solid var(--uo-primary); color: #fff;
  font-family: inherit; font-weight: 700; padding: 0.7rem 1.5rem;
  border-radius: var(--uo-radius-sm); cursor: pointer;
}
.uo-comments .submit:hover { background: var(--uo-primary-darker); }

/* ============================================================
   15. FOOTER
   ============================================================ */
.uo-footer {
  background: var(--uo-white);
  border-top: 1px solid var(--uo-border);
  padding: 2.5rem 0 2rem;
  text-align: center;
}
.uo-footer__brand { margin-bottom: 1rem; }
.uo-footer__brand img { height: 40px; width: auto; }
.uo-footer__links { list-style: none; margin: 0 0 1rem; padding: 0; }
.uo-footer__links li { display: inline-block; margin: 0; border-left: 1px solid var(--uo-ink); }
.uo-footer__links li:first-child { border-left: 0; }
.uo-footer__links a { display: block; padding: 0 0.65rem; font-size: 0.92rem; color: var(--uo-ink); }
.uo-footer__links a:hover { color: var(--uo-secondary); }
.uo-footer__legal {
  display: inline-block; margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px dotted var(--uo-muted);
  color: var(--uo-muted); font-size: 0.85rem;
}
.uo-footer__disclaimer {
  max-width: 900px; margin: 1.25rem auto 0;
  font-size: 0.75rem; line-height: 1.6; color: var(--uo-muted);
}

/* ============================================================
   16. FLOATING WHATSAPP + MOBILE ACTION BAR
   ============================================================ */
.uo-whatsapp-float {
  position: fixed; left: 1.4rem; bottom: 1.75rem; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  background: var(--uo-whatsapp); border-radius: 50rem;
  box-shadow: var(--uo-shadow);
}
.uo-whatsapp-float svg { width: 2rem; height: 2rem; fill: #fff; }
.uo-whatsapp-float:hover { transform: scale(1.06); }
@media (max-width: 991px) { .uo-whatsapp-float { display: none; } }

.uo-actionbar {
  display: none;
  position: fixed; left: 0; bottom: 0; width: 100%; z-index: 150;
  background: #fff; border-top: 1px solid var(--uo-border);
  padding: 0.7rem 1rem;
  gap: 0.6rem; align-items: center;
}
@media (max-width: 991px) {
  .uo-actionbar { display: flex; }
  .uo-footer { padding-bottom: 5.5rem; }
}
.uo-actionbar__wa {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; flex-shrink: 0;
  background: var(--uo-whatsapp); border-radius: 50rem;
}
.uo-actionbar__wa svg { width: 1.75rem; height: 1.75rem; fill: #fff; }
.uo-actionbar .uo-btn { flex: 1 1 auto; }

/* ============================================================
   17. 404 / SEARCH EMPTY
   ============================================================ */
.uo-empty { text-align: center; padding: 4rem 1rem; }
.uo-empty__code { font-size: 5rem; font-weight: 700; line-height: 1; color: var(--uo-primary); margin-bottom: 0.5rem; }
.uo-empty__title { font-size: 1.75rem; margin-bottom: 0.75rem; }
.uo-empty__text { color: var(--uo-muted); max-width: 520px; margin: 0 auto 1.75rem; }
.uo-empty .uo-search { max-width: 420px; margin: 0 auto 1.5rem; }

/* ============================================================
   18. PRINT & MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .uo-header, .uo-sidebar, .uo-footer, .uo-actionbar,
  .uo-whatsapp-float, .uo-cta, .uo-related, .uo-comments { display: none !important; }
  .uo-layout { grid-template-columns: 1fr; }
  body { font-size: 12pt; }
}
