/* ==========================================================================
   PetCareKZ — ЛапыДома Stylesheet
   Prefix: pc-
   Colors: Peach #FECBA1, Brown #78350F
   Font: Nunito
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */
:root {
  --pc-peach: #fecba1;
  --pc-peach-light: #fff0dc;
  --pc-peach-pale: #fff8ee;
  --pc-brown: #78350f;
  --pc-brown-dark: #5c2a0a;
  --pc-brown-light: #a0522d;
  --pc-cream: #fffbf5;
  --pc-white: #ffffff;
  --pc-text: #3d2b1f;
  --pc-text-light: #6b5344;
  --pc-gray: #f5ede6;
  --pc-border: #e8d5c4;
  --pc-shadow: rgba(120, 53, 15, 0.08);
  --pc-shadow-md: rgba(120, 53, 15, 0.12);
  --pc-radius: 12px;
  --pc-radius-lg: 20px;
  --pc-radius-full: 50px;
  --pc-transition: 0.25s ease;
  --pc-font: "Nunito", sans-serif;
  --pc-max-w: 1200px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--pc-font);
  color: var(--pc-text);
  background: var(--pc-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pc-brown);
  text-decoration: none;
  transition: color var(--pc-transition);
}

a:hover {
  color: var(--pc-brown-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--pc-brown);
}

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   2. LAYOUT UTILITIES
   ========================================================================== */
.pc-wrap {
  max-width: var(--pc-max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.pc-main {
  min-height: 60vh;
}

.pc-segment {
  padding: 60px 0;
}

.pc-segment--tinted {
  background: var(--pc-peach-pale);
}

.pc-segment--warm {
  background: linear-gradient(
    135deg,
    var(--pc-peach-light) 0%,
    var(--pc-cream) 100%
  );
}

.pc-segment--brown {
  background: var(--pc-brown);
  color: var(--pc-peach-light);
}

.pc-segment--brown h2,
.pc-segment--brown h3,
.pc-segment--brown h4 {
  color: var(--pc-peach);
}

.pc-segment--brown p {
  color: var(--pc-peach-light);
}

.pc-segment__heading {
  text-align: center;
  margin-bottom: 40px;
}

.pc-segment__heading h2 {
  margin-bottom: 12px;
}

.pc-segment__heading p {
  color: var(--pc-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   3. TOP NAVIGATION BAR
   ========================================================================== */
.pc-topbar {
  background: var(--pc-white);
  border-bottom: 2px solid var(--pc-peach);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--pc-shadow);
}

.pc-topbar .pc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.pc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pc-brown);
}

.pc-logo iconify-icon {
  color: var(--pc-brown-light);
}

.pc-logo--light {
  color: var(--pc-peach);
}

.pc-logo--light iconify-icon {
  color: var(--pc-peach);
}

.pc-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pc-brown);
  padding: 4px;
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-nav li a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--pc-radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pc-text);
  transition: all var(--pc-transition);
}

.pc-nav li a:hover {
  background: var(--pc-peach-light);
  color: var(--pc-brown);
}

.pc-nav li a.pc-nav--active {
  background: var(--pc-peach);
  color: var(--pc-brown);
}

/* ==========================================================================
   4. BREADCRUMBS
   ========================================================================== */
.pc-crumbs {
  background: var(--pc-peach-pale);
  padding: 12px 0;
  font-size: 0.9rem;
}

.pc-crumbs .pc-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-crumbs a {
  color: var(--pc-brown-light);
}

.pc-crumbs span {
  color: var(--pc-text-light);
}

/* ==========================================================================
   5. WELCOME BANNER (mainpage.php — replaces hero)
   ========================================================================== */
.pc-welcome {
  background: linear-gradient(
    160deg,
    var(--pc-brown) 0%,
    var(--pc-brown-dark) 60%,
    #4a1e06 100%
  );
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.pc-welcome::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(254, 203, 161, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.pc-welcome__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pc-welcome__text h1 {
  color: var(--pc-peach);
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pc-welcome__text p {
  color: var(--pc-peach-light);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 480px;
}

.pc-welcome__stats {
  display: flex;
  gap: 32px;
}

.pc-welcome__stat {
  text-align: center;
}

.pc-welcome__stat strong {
  display: block;
  font-size: 2rem;
  color: var(--pc-peach);
  font-weight: 800;
}

.pc-welcome__stat span {
  font-size: 0.85rem;
  color: var(--pc-peach-light);
  opacity: 0.8;
}

.pc-welcome__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-welcome__icon-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(254, 203, 161, 0.1);
  border: 2px solid rgba(254, 203, 161, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pc-welcome__icon-ring iconify-icon {
  font-size: 100px;
  color: var(--pc-peach);
  opacity: 0.7;
}

/* ==========================================================================
   6. SERVICE PILLARS (mainpage.php)
   ========================================================================== */
.pc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.pc-pillar {
  background: var(--pc-white);
  border-radius: var(--pc-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 30px var(--pc-shadow-md);
  transition:
    transform var(--pc-transition),
    box-shadow var(--pc-transition);
  border: 1px solid var(--pc-border);
}

.pc-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--pc-shadow-md);
}

.pc-pillar__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pc-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pc-pillar__icon iconify-icon {
  font-size: 28px;
  color: var(--pc-brown);
}

.pc-pillar h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.pc-pillar p {
  color: var(--pc-text-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   7. MOSAIC LAYOUT (about.php — team)
   ========================================================================== */
.pc-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pc-mosaic__tile {
  background: var(--pc-white);
  border-radius: var(--pc-radius);
  padding: 28px 20px;
  border: 1px solid var(--pc-border);
  text-align: center;
  transition: box-shadow var(--pc-transition);
}

.pc-mosaic__tile:hover {
  box-shadow: 0 6px 24px var(--pc-shadow);
}

.pc-mosaic__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pc-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.pc-mosaic__avatar iconify-icon {
  font-size: 36px;
  color: var(--pc-brown);
}

.pc-mosaic__tile h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pc-mosaic__tile .pc-mosaic__role {
  color: var(--pc-brown-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pc-mosaic__tile p:last-child {
  color: var(--pc-text-light);
  font-size: 0.9rem;
}

/* ==========================================================================
   8. TIMELINE LAYOUT (care.php)
   ========================================================================== */
.pc-timeline {
  position: relative;
  padding-left: 40px;
}

.pc-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pc-peach);
  border-radius: 2px;
}

.pc-timeline__step {
  position: relative;
  margin-bottom: 36px;
  background: var(--pc-white);
  border-radius: var(--pc-radius);
  padding: 24px;
  border: 1px solid var(--pc-border);
}

.pc-timeline__step::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pc-brown);
  border: 3px solid var(--pc-peach);
}

.pc-timeline__step h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pc-timeline__step h3 iconify-icon {
  color: var(--pc-brown-light);
}

.pc-timeline__step p {
  color: var(--pc-text-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   9. CARD STACK (training.php)
   ========================================================================== */
.pc-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pc-stack__card {
  background: var(--pc-white);
  border-radius: var(--pc-radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--pc-border);
  transition: box-shadow var(--pc-transition);
}

.pc-stack__card:hover {
  box-shadow: 0 6px 24px var(--pc-shadow);
}

.pc-stack__badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--pc-radius);
  background: var(--pc-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-stack__badge iconify-icon {
  font-size: 24px;
  color: var(--pc-brown);
}

.pc-stack__card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.pc-stack__card p {
  color: var(--pc-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   10. PRICING TIERS (training.php)
   ========================================================================== */
.pc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pc-tier {
  background: var(--pc-white);
  border-radius: var(--pc-radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--pc-border);
  text-align: center;
  transition: all var(--pc-transition);
  position: relative;
}

.pc-tier--featured {
  border-color: var(--pc-peach);
  box-shadow: 0 8px 30px var(--pc-shadow-md);
  transform: scale(1.03);
}

.pc-tier--featured::before {
  content: "Популярный";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pc-brown);
  color: var(--pc-peach);
  padding: 4px 16px;
  border-radius: var(--pc-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.pc-tier__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pc-brown);
  margin-bottom: 8px;
}

.pc-tier__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pc-brown);
  margin-bottom: 4px;
}

.pc-tier__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--pc-text-light);
}

.pc-tier__desc {
  color: var(--pc-text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pc-tier__features {
  text-align: left;
  margin-bottom: 24px;
}

.pc-tier__features li {
  padding: 6px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pc-text);
}

.pc-tier__features iconify-icon {
  color: var(--pc-brown-light);
  flex-shrink: 0;
}

/* ==========================================================================
   11. BUTTONS
   ========================================================================== */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--pc-radius-full);
  font-family: var(--pc-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--pc-transition);
  text-decoration: none;
}

.pc-btn--primary {
  background: var(--pc-peach);
  color: var(--pc-brown);
}

.pc-btn--primary:hover {
  background: var(--pc-brown);
  color: var(--pc-peach);
}

.pc-btn--outline {
  background: transparent;
  color: var(--pc-peach);
  border: 2px solid var(--pc-peach);
}

.pc-btn--outline:hover {
  background: var(--pc-peach);
  color: var(--pc-brown);
}

.pc-btn--brown {
  background: var(--pc-brown);
  color: var(--pc-peach);
}

.pc-btn--brown:hover {
  background: var(--pc-brown-dark);
}

.pc-btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   12. ACCORDION (FAQ)
   ========================================================================== */
.pc-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.pc-accordion__item {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.pc-accordion__trigger {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--pc-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pc-brown);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--pc-transition);
}

.pc-accordion__trigger:hover {
  background: var(--pc-peach-pale);
}

.pc-accordion__trigger iconify-icon {
  transition: transform var(--pc-transition);
  flex-shrink: 0;
}

.pc-accordion__trigger.pc-accordion--open iconify-icon {
  transform: rotate(180deg);
}

.pc-accordion__body {
  display: none;
  padding: 0 20px 18px;
  color: var(--pc-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pc-accordion__body.pc-accordion--visible {
  display: block;
}

/* ==========================================================================
   13. CONTACT FORM
   ========================================================================== */
.pc-form-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pc-form {
  background: var(--pc-white);
  border-radius: var(--pc-radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px var(--pc-shadow);
  border: 1px solid var(--pc-border);
}

.pc-form__group {
  margin-bottom: 18px;
}

.pc-form__group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--pc-brown);
}

.pc-form__group input,
.pc-form__group textarea,
.pc-form__group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--pc-border);
  border-radius: var(--pc-radius);
  font-family: var(--pc-font);
  font-size: 0.95rem;
  color: var(--pc-text);
  background: var(--pc-cream);
  transition: border-color var(--pc-transition);
}

.pc-form__group input:focus,
.pc-form__group textarea:focus,
.pc-form__group select:focus {
  outline: none;
  border-color: var(--pc-peach);
}

.pc-form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.pc-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--pc-text-light);
}

.pc-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--pc-brown);
}

.pc-consent iconify-icon {
  color: var(--pc-brown-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.pc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pc-contact-info__card {
  background: var(--pc-white);
  border-radius: var(--pc-radius);
  padding: 24px;
  border: 1px solid var(--pc-border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pc-contact-info__card iconify-icon {
  font-size: 24px;
  color: var(--pc-brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.pc-contact-info__card h4 {
  margin-bottom: 4px;
}

.pc-contact-info__card p {
  color: var(--pc-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   14. REVIEWS RIBBON
   ========================================================================== */
.pc-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pc-ribbon__item {
  background: var(--pc-white);
  border-radius: var(--pc-radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--pc-border);
  position: relative;
}

.pc-ribbon__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pc-peach);
  border-radius: var(--pc-radius-lg) var(--pc-radius-lg) 0 0;
}

.pc-ribbon__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.pc-ribbon__stars iconify-icon {
  color: var(--pc-peach);
  font-size: 18px;
}

.pc-ribbon__item blockquote {
  font-style: italic;
  color: var(--pc-text-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.pc-ribbon__author {
  font-weight: 700;
  color: var(--pc-brown);
  font-size: 0.9rem;
}

/* ==========================================================================
   15. CALL-TO-ACTION STRIP
   ========================================================================== */
.pc-strip {
  background: var(--pc-brown);
  padding: 50px 0;
  text-align: center;
}

.pc-strip h2 {
  color: var(--pc-peach);
  margin-bottom: 14px;
}

.pc-strip p {
  color: var(--pc-peach-light);
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.pc-footer {
  background: var(--pc-brown-dark);
  color: var(--pc-peach-light);
  padding: 50px 0 0;
}

.pc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 36px;
}

.pc-footer__brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  opacity: 0.85;
  line-height: 1.6;
}

.pc-footer__links h4,
.pc-footer__contact h4 {
  color: var(--pc-peach);
  margin-bottom: 14px;
  font-size: 1rem;
}

.pc-footer__links ul li {
  margin-bottom: 8px;
}

.pc-footer__links ul li a {
  color: var(--pc-peach-light);
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity var(--pc-transition);
}

.pc-footer__links ul li a:hover {
  opacity: 1;
  color: var(--pc-peach);
}

.pc-footer__contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.85;
}

.pc-footer__contact iconify-icon {
  color: var(--pc-peach);
  flex-shrink: 0;
}

.pc-footer__bottom {
  border-top: 1px solid rgba(254, 203, 161, 0.15);
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ==========================================================================
   17. COOKIE BANNER
   ========================================================================== */
.pc-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--pc-brown);
  padding: 16px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.pc-cookie__body {
  max-width: var(--pc-max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pc-cookie__body p {
  color: var(--pc-peach-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.pc-cookie__body a {
  color: var(--pc-peach);
}

.pc-cookie__btn {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: var(--pc-radius-full);
  background: var(--pc-peach);
  color: var(--pc-brown);
  border: none;
  font-family: var(--pc-font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--pc-transition);
}

.pc-cookie__btn:hover {
  background: var(--pc-peach-light);
}

/* ==========================================================================
   18. PAGE-SPECIFIC: THANK YOU
   ========================================================================== */
.pc-thankyou {
  text-align: center;
  padding: 80px 0;
}

.pc-thankyou__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--pc-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pc-thankyou__icon iconify-icon {
  font-size: 48px;
  color: var(--pc-brown);
}

.pc-thankyou h1 {
  margin-bottom: 12px;
}

.pc-thankyou p {
  color: var(--pc-text-light);
  max-width: 500px;
  margin: 0 auto 24px;
}

/* ==========================================================================
   19. PAGE-SPECIFIC: 404
   ========================================================================== */
.pc-lost {
  text-align: center;
  padding: 80px 0;
}

.pc-lost__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--pc-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pc-lost__icon iconify-icon {
  font-size: 56px;
  color: var(--pc-brown);
}

.pc-lost h1 {
  font-size: 4rem;
  margin-bottom: 8px;
}

.pc-lost h2 {
  margin-bottom: 12px;
}

.pc-lost p {
  color: var(--pc-text-light);
  margin-bottom: 24px;
}

/* ==========================================================================
   20. LEGAL PAGES
   ========================================================================== */
.pc-legal {
  padding: 40px 0 60px;
}

.pc-legal h1 {
  margin-bottom: 24px;
}

.pc-legal h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.pc-legal h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.pc-legal p,
.pc-legal li {
  color: var(--pc-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.pc-legal ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.pc-legal ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.pc-legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pc-peach);
}

/* ==========================================================================
   21. ABOUT PAGE — INTRO PANEL
   ========================================================================== */
.pc-intro-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pc-intro-panel__visual {
  background: var(--pc-peach-light);
  border-radius: var(--pc-radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-intro-panel__visual iconify-icon {
  font-size: 80px;
  color: var(--pc-brown);
  opacity: 0.5;
}

.pc-intro-panel h2 {
  margin-bottom: 14px;
}

.pc-intro-panel p {
  color: var(--pc-text-light);
  font-size: 1rem;
}

/* ==========================================================================
   22. FEATURE BLOCKS (mainpage.php — why us)
   ========================================================================== */
.pc-features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pc-feature-block {
  background: var(--pc-white);
  border-radius: var(--pc-radius);
  padding: 28px 24px;
  border-left: 4px solid var(--pc-peach);
  transition: box-shadow var(--pc-transition);
}

.pc-feature-block:hover {
  box-shadow: 0 4px 16px var(--pc-shadow);
}

.pc-feature-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pc-feature-block h3 iconify-icon {
  color: var(--pc-brown-light);
}

.pc-feature-block p {
  color: var(--pc-text-light);
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* ==========================================================================
   23. ANIMAL TYPE TABS (care.php)
   ========================================================================== */
.pc-animal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.pc-animal-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--pc-radius-full);
  border: 2px solid var(--pc-border);
  background: var(--pc-white);
  font-family: var(--pc-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pc-text);
  cursor: pointer;
  transition: all var(--pc-transition);
}

.pc-animal-tab:hover,
.pc-animal-tab.pc-animal-tab--active {
  border-color: var(--pc-peach);
  background: var(--pc-peach-light);
  color: var(--pc-brown);
}

.pc-animal-tab iconify-icon {
  font-size: 18px;
}

/* ==========================================================================
   24. CARE GRID
   ========================================================================== */
.pc-care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pc-care-card {
  background: var(--pc-white);
  border-radius: var(--pc-radius);
  padding: 24px;
  border: 1px solid var(--pc-border);
  transition: box-shadow var(--pc-transition);
}

.pc-care-card:hover {
  box-shadow: 0 4px 16px var(--pc-shadow);
}

.pc-care-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pc-care-card__head iconify-icon {
  font-size: 28px;
  color: var(--pc-brown-light);
}

.pc-care-card h3 {
  font-size: 1.05rem;
}

.pc-care-card p {
  color: var(--pc-text-light);
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* ==========================================================================
   25. HIGHLIGHT BOX (tips callout)
   ========================================================================== */
.pc-highlight {
  background: linear-gradient(
    135deg,
    var(--pc-peach-light) 0%,
    var(--pc-cream) 100%
  );
  border-radius: var(--pc-radius-lg);
  padding: 36px;
  border: 2px solid var(--pc-peach);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pc-highlight iconify-icon {
  font-size: 40px;
  color: var(--pc-brown);
  flex-shrink: 0;
}

.pc-highlight h3 {
  margin-bottom: 8px;
}

.pc-highlight p {
  color: var(--pc-text-light);
  margin-bottom: 0;
}

/* ==========================================================================
   26. STATS BAR
   ========================================================================== */
.pc-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.pc-stats-bar__item {
  padding: 24px 12px;
}

.pc-stats-bar__item iconify-icon {
  font-size: 32px;
  color: var(--pc-peach);
  margin-bottom: 8px;
}

.pc-stats-bar__item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--pc-peach);
  font-weight: 800;
}

.pc-stats-bar__item span {
  font-size: 0.9rem;
  color: var(--pc-peach-light);
  opacity: 0.85;
}

/* ==========================================================================
   27. MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .pc-welcome__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pc-welcome__text p {
    margin-left: auto;
    margin-right: auto;
  }

  .pc-welcome__stats {
    justify-content: center;
  }

  .pc-welcome__visual {
    display: none;
  }

  .pc-pillars {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .pc-mosaic {
    grid-template-columns: 1fr;
  }

  .pc-tiers {
    grid-template-columns: 1fr;
  }

  .pc-tier--featured {
    transform: none;
  }

  .pc-form-zone {
    grid-template-columns: 1fr;
  }

  .pc-ribbon {
    grid-template-columns: 1fr;
  }

  .pc-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pc-intro-panel {
    grid-template-columns: 1fr;
  }

  .pc-features-row {
    grid-template-columns: 1fr;
  }

  .pc-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-care-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .pc-burger {
    display: block;
  }

  .pc-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--pc-white);
    flex-direction: column;
    padding: 12px 20px;
    box-shadow: 0 8px 20px var(--pc-shadow);
    border-bottom: 2px solid var(--pc-peach);
  }

  .pc-nav.pc-nav--open {
    display: flex;
  }

  .pc-nav li a {
    padding: 12px 16px;
    border-radius: var(--pc-radius);
  }

  .pc-segment {
    padding: 40px 0;
  }

  .pc-welcome {
    padding: 50px 0 40px;
  }

  .pc-welcome__text h1 {
    font-size: 1.9rem;
  }

  .pc-welcome__stats {
    flex-direction: column;
    gap: 16px;
  }

  .pc-form {
    padding: 24px;
  }

  .pc-cookie__body {
    flex-direction: column;
    text-align: center;
  }

  .pc-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pc-stack__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pc-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pc-animal-tabs {
    gap: 6px;
  }

  .pc-animal-tab {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .pc-timeline {
    padding-left: 30px;
  }

  .pc-timeline::before {
    left: 10px;
  }

  .pc-timeline__step::before {
    left: -28px;
    width: 12px;
    height: 12px;
  }

  .pc-lost h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .pc-wrap {
    padding: 0 14px;
  }

  .pc-topbar .pc-wrap {
    height: 58px;
  }

  .pc-logo {
    font-size: 1.15rem;
  }

  .pc-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .pc-pillar {
    padding: 24px 18px;
  }

  .pc-tier {
    padding: 28px 20px;
  }

  .pc-form {
    padding: 18px;
  }

  .pc-stats-bar__item strong {
    font-size: 1.5rem;
  }

  .pc-welcome__text h1 {
    font-size: 1.6rem;
  }
}

[class*="photo"] img,
[class*="avatar"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
[class*="visual"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* === PetCare Gallery === */
.pc-gallery-section {
  padding: 60px 0;
  background: #fff8f0;
}
.pc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 2rem;
}
.pc-gallery-item {
  border-radius: 12px;
  overflow: hidden;
}
.pc-gallery-item--wide {
  grid-column: span 2;
}
.pc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .pc-gallery-grid {
    grid-template-columns: 1fr;
  }
  .pc-gallery-item--wide {
    grid-column: span 1;
  }
}
/* === PetCare FAQ === */
.pc-faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}
.pc-faq-item {
  border: 1px solid #e5d5c0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
}
.pc-faq-item summary {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #3d2b1f;
  list-style: none;
}
.pc-faq-item summary::-webkit-details-marker {
  display: none;
}
.pc-faq-item summary iconify-icon {
  color: #c87533;
  font-size: 1.25rem;
}
.pc-faq-item[open] {
  border-color: #c87533;
}
.pc-faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: #666;
  line-height: 1.6;
}
