:root {
  --primary: #ff7a8a;
  --primary-dark: #ef6174;

  --secondary: #7c6ff0;

  --accent: #ffc857;

  --background: #fff9f5;

  --surface: #ffffff;

  --text: #303038;

  --muted: #777780;

  --border: #eeeeee;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  --radius: 18px;

  --font-main: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;

  --bs-body-font-family: var(--font-main);
}

/* ==========================================================
   RESET
========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--background);

  color: var(--text);

  font-family: var(--font-main);
  font-weight: 400;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button,
.btn {
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  letter-spacing: -0.025em;
}

h1 {
  font-weight: 800;
}

h2,
h3 {
  font-weight: 700;
}

/* ==========================================================
   TOP BAR
========================================================== */

.top-bar {
  background: var(--text);

  color: #ffffff;

  padding: 8px 0;

  font-size: 14px;
}

.top-bar a {
  color: #ffffff;
}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar {
  min-height: 72px;
}

.navbar-brand {
  color: var(--text);

  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.navbar-brand:hover {
  color: var(--primary);
}

.brand-icon {
  margin-right: 4px;
}

.navbar-nav {
  gap: 12px;
}

.nav-link {
  font-weight: 500;
  letter-spacing: -0.01em;

  color: var(--text);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-action {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  color: var(--text);

  background: #f8f8f8;

  font-size: 18px;
}

.nav-action:hover {
  background: var(--primary);

  color: #ffffff;
}

.account-button {
  border: none;

  background: transparent;
}

/* ==========================================================
   MOBILE MENU
========================================================== */

.mobile-nav {
  display: flex;

  flex-direction: column;

  gap: 6px;
}

.mobile-nav a {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 14px;

  border-radius: 12px;

  color: var(--text);

  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--primary);

  background: #fff1f3;
}

/* ==========================================================
   COMMON SECTION
========================================================== */

.section {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 10px;

  font-weight: 700;
}

.section-description {
  color: var(--muted);

  margin-bottom: 32px;
}

/* ==========================================================
   BUTTON
========================================================== */

.btn-primary {
  background: var(--primary);

  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);

  border-color: var(--primary-dark);
}

/* ==========================================================
   CARD
========================================================== */

.pet-card {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: var(--shadow);
}

/* ==========================================================
   AUTH / CONTACT / PUBLIC CONTENT
========================================================== */

/* ==========================================================
   AUTH
========================================================== */

.auth-section {
  min-height: 75vh;

  display: flex;

  align-items: center;

  padding: 60px 0;
}

.auth-card {
  max-width: 520px;

  padding: 38px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 24px;

  box-shadow: var(--shadow);
}

.auth-icon {
  margin-bottom: 8px;

  font-size: 45px;
}

.auth-title {
  margin-bottom: 10px;

  font-size: 30px;

  font-weight: 700;
}

.password-field {
  position: relative;
}

.password-field .form-control {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;

  top: 50%;

  right: 12px;

  transform: translateY(-50%);

  width: 36px;

  height: 36px;

  border: none;

  border-radius: 50%;

  background: transparent;

  color: var(--muted);
}

.password-toggle:hover {
  background: #f5f5f5;

  color: var(--text);
}

.auth-divider {
  position: relative;

  margin: 28px 0;

  text-align: center;
}

.auth-divider::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 0;

  width: 100%;

  height: 1px;

  background: var(--border);
}

.auth-divider span {
  position: relative;

  padding: 0 14px;

  background: #ffffff;

  color: var(--muted);
}
.mobile-nav-button {
  width: 100%;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 14px;

  border: none;

  border-radius: 12px;

  background: transparent;

  text-align: left;
}

.mobile-nav-button:hover {
  background: #fff1f3;
}
/* ==========================================================
   CONTACT PUBLIC
========================================================== */

.contact-card {
  padding: 30px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}
/* ==========================================================
   SHOP LOGO
========================================================== */

.navbar-shop-logo {
  width: 42px;
  height: 42px;

  object-fit: contain;

  border-radius: 10px;
}

/* ==========================================================
   FOOTER SOCIAL
========================================================== */

.footer-social-link {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  color: inherit;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);

  background: var(--primary);

  color: #ffffff;
}

/* ==========================================================
   CONTACT MAP
========================================================== */

.contact-map {
  overflow: hidden;

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 420px;

  display: block;

  border: 0;
}
/* ==========================================================
   PUBLIC POSTS
========================================================== */

.post-page-hero,
.gallery-public-hero {
  padding: 70px 0;

  background: linear-gradient(135deg, #fff1f3, #f3f0ff);
}

.post-page-hero span,
.gallery-public-hero span {
  color: var(--primary-dark);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

.post-page-hero h1,
.gallery-public-hero h1 {
  margin: 10px 0 12px;

  font-size: 42px;

  font-weight: 800;
}

.post-page-hero p,
.gallery-public-hero p {
  max-width: 700px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 17px;
}

.post-filter-card {
  margin-bottom: 35px;

  padding: 20px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: var(--radius);
}

.public-post-card {
  height: 100%;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.public-post-card:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow);
}

.public-post-image {
  display: block;

  height: 220px;

  overflow: hidden;

  background: #f6f6f6;
}

.public-post-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.public-post-card:hover .public-post-image img {
  transform: scale(1.04);
}

.public-post-placeholder {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 50px;
}

.public-post-body {
  padding: 20px;
}

.public-post-category {
  display: inline-block;

  margin-bottom: 10px;

  padding: 5px 9px;

  border-radius: 999px;

  background: #fff1f3;

  color: var(--primary-dark);

  font-size: 12px;

  font-weight: 700;
}

.public-post-body h2 {
  margin-bottom: 10px;

  font-size: 20px;

  line-height: 1.4;
}

.public-post-body h2 a {
  color: var(--text);

  text-decoration: none;
}

.public-post-body h2 a:hover {
  color: var(--primary-dark);
}

.public-post-body p {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.6;
}

.public-post-meta,
.public-post-detail-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  color: var(--muted);

  font-size: 13px;
}

.post-empty {
  padding: 70px 20px;

  text-align: center;
}

.post-empty i {
  display: block;

  margin-bottom: 15px;

  color: var(--muted);

  font-size: 55px;
}

/* POST DETAIL */

.public-post-detail {
  padding: 45px 0 70px;
}

.public-post-detail-title {
  margin: 12px 0 18px;

  font-size: 44px;

  font-weight: 800;

  line-height: 1.2;
}

.public-post-detail-excerpt {
  margin: 28px 0;

  padding: 20px 24px;

  border-left: 4px solid var(--primary);

  background: #fff7f8;

  font-size: 18px;

  font-weight: 500;

  line-height: 1.7;
}

/* ==========================================================
   POST DETAIL - FEATURED IMAGE
========================================================== */

.public-post-detail-image {
  width: 100%;
  max-width: 950px;

  aspect-ratio: 16 / 9;

  margin: 30px auto;

  overflow: hidden;

  border-radius: 20px;

  background: #f5f5f5;
}

.public-post-detail-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

/* TABLET */

@media (max-width: 991.98px) {
  .public-post-detail-image {
    max-width: 100%;
    border-radius: 16px;
  }
}

/* MOBILE */

@media (max-width: 575.98px) {
  .public-post-detail-image {
    margin: 20px auto;

    aspect-ratio: 16 / 10;

    border-radius: 12px;
  }
}

.public-post-content {
  color: #444;

  font-size: 17px;

  line-height: 1.9;

  word-break: break-word;
}

/* ==========================================================
   PUBLIC GALLERY
========================================================== */

.gallery-category-filter {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 10px;

  margin-bottom: 35px;
}

.gallery-category-filter a {
  padding: 8px 15px;

  border: 1px solid var(--border);

  border-radius: 999px;

  background: #ffffff;

  color: var(--text);

  text-decoration: none;
}

.gallery-category-filter a.active,
.gallery-category-filter a:hover {
  border-color: var(--primary);

  background: var(--primary);

  color: #ffffff;
}

.public-gallery-grid {
  columns: 4 250px;

  column-gap: 18px;
}

.public-gallery-item {
  position: relative;

  overflow: hidden;

  margin-bottom: 18px;

  break-inside: avoid;

  border-radius: 16px;

  background: #f6f6f6;
}

.public-gallery-image img {
  width: 100%;

  display: block;

  transition: transform 0.3s ease;
}

.public-gallery-item:hover .public-gallery-image img {
  transform: scale(1.035);
}

.public-gallery-overlay {
  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  padding: 45px 17px 17px;

  color: #ffffff;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.public-gallery-overlay h2 {
  margin-bottom: 4px;

  font-size: 17px;
}

.public-gallery-overlay p {
  margin: 0;

  font-size: 13px;
}

/* ==========================================================
   OWNER / NAVBAR BRAND
========================================================== */

/* =========================
   OWNER ACCOUNT DROPDOWN
   ========================= */

.owner-account-dropdown {
  display: flex;
  align-items: center;
}

.owner-account-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 6px 12px 6px 8px;

  border: 1px solid #e6e6ea;
  border-radius: 999px;

  background: #ffffff;
  color: #222;

  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.owner-account-toggle:hover,
.owner-account-toggle:focus {
  background: #fff8fa;
  border-color: #f0a8bb;
  color: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.owner-account-toggle::after {
  margin-left: 4px;
}

.owner-account-avatar {
  width: 38px;
  height: 38px;

  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ff6b6b;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #e8e8ee;
}

.owner-account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.owner-account-avatar-text {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.owner-account-name {
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.owner-account-menu {
  min-width: 200px;
  border: 1px solid #ececf1;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.owner-account-menu .dropdown-item {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
}

.owner-account-menu .dropdown-item:hover {
  background: #f8f8fb;
}

.owner-account-logout-form {
  margin: 0;
}

.owner-account-logout-form .dropdown-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
}

.owner-account-logout-form .dropdown-item:hover {
  background: #fff2f4;
}

@media (max-width: 576px) {
  .owner-account-name {
    max-width: 100px;
  }

  .owner-account-toggle {
    padding-right: 10px;
  }

  .owner-account-avatar {
    width: 34px;
    height: 34px;
  }
}
/* ==========================================================
   OWNER SIDEBAR - SHOP INFORMATION
========================================================== */

.owner-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px;

  border-bottom: 1px solid var(--border);

  background: #ffffff;
}

/* LOGO / ICON */

.owner-shop-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 14px;

  background: #ffffff;
  border: 1px solid #ece7eb;

  padding: 6px;

  color: var(--primary-dark);
  font-size: 21px;
}

.owner-shop-icon img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center;

  border-radius: 10px;
}

/* THÔNG TIN SPA */

.owner-shop-info {
  flex: 1;
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 3px;
}

.owner-shop-info small {
  display: block;

  margin: 0;

  color: var(--text);

  font-size: 16px;
  font-weight: 700;

  line-height: 1.25;
}

.owner-shop-info strong {
  display: block;

  max-width: 100%;

  margin: 0;

  color: var(--text);

  font-size: 16px;
  font-weight: 700;

  line-height: 1.25;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* MOBILE */

@media (max-width: 991.98px) {
  .owner-sidebar-brand {
    padding: 12px 14px;
  }

  .owner-shop-icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;

    border-radius: 12px;
  }

  .owner-shop-icon img {
    border-radius: 12px;
  }

  .owner-shop-info strong {
    font-size: 15px;
  }
}
/* =====================================================
   NAVBAR SHOP BRAND
===================================================== */

.pet-navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-right: 22px;

  color: #252531 !important;
  text-decoration: none !important;
}

.pet-navbar-logo {
  width: 50px;
  height: 50px;

  flex: 0 0 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  padding: 3px;

  border: 1px solid #ece8eb;
  border-radius: 12px;

  background: #fff;
}

.pet-navbar-logo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center;
}

.pet-navbar-logo-fallback {
  background: #fff1f5;
  color: #d94e79;

  font-size: 20px;
}

.pet-navbar-shop-name {
  max-width: 220px;

  color: #252531;

  font-size: 22px;
  font-weight: 800;

  line-height: 1;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
  .pet-navbar-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .pet-navbar-shop-name {
    max-width: 170px;
    font-size: 19px;
  }
}

/* ==========================================================
   PET SPA HOME / FOOTER / FLOATING CONTACT
========================================================== */

/* ==========================================================
   NEW PET SPA HOME
========================================================== */

.section {
  padding: 76px 0;
}

.pet-home {
  overflow: hidden;
}

/* HERO */

.pet-home-hero {
  padding: 90px 0;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 171, 185, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, #fff7f8 0%, #fffdf9 50%, #f6f4ff 100%);
}

.pet-home-hero h1 {
  max-width: 720px;

  margin-bottom: 22px;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;

  line-height: 1.06;

  letter-spacing: -0.035em;
}

.pet-home-hero h1 span {
  display: block;

  color: var(--primary);
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;

  margin-bottom: 18px;

  padding: 8px 14px;

  border-radius: 999px;

  background: #fff;

  color: var(--primary-dark);

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.pet-home-hero p {
  max-width: 620px;

  margin-bottom: 28px;

  color: #696974;

  font-size: 18px;

  line-height: 1.75;
}

.home-benefits {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 28px;

  color: #6e6d78;

  font-size: 14px;
}

.home-benefits i {
  margin-right: 5px;

  color: var(--primary);
}

/* HERO VISUAL */

.home-hero-visual {
  position: relative;

  min-height: 460px;
}

.home-hero-pet {
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  box-shadow: 0 18px 50px rgba(40, 30, 40, 0.08);
}

.home-hero-dog {
  top: 0;
  left: 30px;

  width: 280px;
  height: 280px;

  background: #ffe1e6;

  font-size: 130px;
}

.home-hero-cat {
  right: 0;
  bottom: 10px;

  width: 220px;
  height: 220px;

  background: #e4e0ff;

  font-size: 105px;
}

.home-floating-card {
  position: absolute;
  z-index: 3;

  display: flex;
  align-items: center;

  gap: 11px;

  min-width: 210px;

  padding: 14px 17px;

  border: 1px solid rgba(230, 225, 230, 0.8);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow: 0 14px 34px rgba(45, 35, 45, 0.12);
}

.home-floating-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-floating-card-link:hover {
  color: inherit;
  text-decoration: none;

  transform: translateY(-3px);

  box-shadow: 0 18px 40px rgba(45, 35, 45, 0.16);
}

.home-floating-card-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.home-floating-card strong,
.home-floating-card small {
  display: block;
}

.home-floating-card strong {
  color: #2e2d37;

  font-size: 14px;
}

.home-floating-card small {
  color: #898791;

  font-size: 11px;
}

.home-floating-card-one {
  top: 90px;
  right: -5px;
}

.home-floating-card-two {
  bottom: 55px;
  left: 0;
}

.home-floating-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #fff0f4;

  color: var(--primary);

  font-size: 17px;
}

/* SECTION HEADER */

.home-section-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 32px;
}

.home-section-header span,
.home-center-heading > span {
  display: block;

  margin-bottom: 6px;

  color: var(--primary-dark);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.4px;
}

.home-section-header h2,
.home-center-heading h2 {
  margin: 0;

  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;

  color: #292832;
}

.home-section-header p,
.home-center-heading p {
  margin: 8px 0 0;

  color: #807e88;
}

.home-section-header > a {
  flex: 0 0 auto;

  color: var(--primary-dark);

  font-weight: 700;

  text-decoration: none;
}

.home-section-header > a:hover {
  color: var(--primary);
}

.home-center-heading {
  max-width: 680px;

  margin: 0 auto 30px;

  text-align: center;
}

/* SERVICES */

.home-service-card {
  height: 100%;

  overflow: hidden;

  border: 1px solid #eee9ec;
  border-radius: 22px;

  background: #fff;

  box-shadow: 0 8px 26px rgba(40, 30, 40, 0.04);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.home-service-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 38px rgba(40, 30, 40, 0.1);
}

.home-service-image {
  display: block;

  height: 220px;

  overflow: hidden;

  background: #faf7f8;
}

.home-service-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.home-service-card:hover .home-service-image img {
  transform: scale(1.04);
}

.home-service-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 65px;
}

.home-service-body {
  padding: 21px;
}

.home-service-category {
  display: inline-block;

  margin-bottom: 7px;

  color: var(--primary-dark);

  font-size: 12px;
  font-weight: 700;
}

.home-service-body h3 {
  margin-bottom: 9px;

  font-size: 20px;
  font-weight: 750;
}

.home-service-body h3 a {
  color: #292832;

  text-decoration: none;
}

.home-service-body p {
  min-height: 44px;

  margin-bottom: 20px;

  color: #777580;

  font-size: 14px;

  line-height: 1.6;
}

.home-service-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 12px;

  padding-top: 16px;

  border-top: 1px solid #f1edf0;
}

.home-service-footer strong {
  display: block;

  color: var(--primary-dark);

  font-size: 18px;
}

.home-service-footer small {
  color: #8e8c95;
}

.home-service-arrow {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fff0f4;

  color: var(--primary);

  text-decoration: none;
}

/* SOFT SECTION */

.home-soft-section {
  background: #fff9fa;
}

/* FEATURES */

.home-feature-card {
  height: 100%;

  padding: 30px;

  border: 1px solid #f0e8ec;
  border-radius: 22px;

  background: #fff;

  text-align: center;
}

.home-feature-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 18px;

  border-radius: 18px;

  background: #fff0f4;

  color: var(--primary);

  font-size: 25px;
}

.home-feature-card h3 {
  font-size: 19px;
  font-weight: 750;
}

.home-feature-card p {
  margin: 10px 0 0;

  color: #7d7b85;

  line-height: 1.65;
}

/* BOOKING STEPS */

.home-booking-steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.home-booking-step {
  position: relative;

  padding: 30px;

  border: 1px solid #eee9ec;
  border-radius: 22px;

  background: #fff;
}

.home-step-number {
  position: absolute;

  top: 20px;
  right: 22px;

  color: #ece7ea;

  font-size: 30px;
  font-weight: 800;
}

.home-step-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 15px;

  background: #fff0f4;

  color: var(--primary);

  font-size: 21px;
}

.home-booking-step h3 {
  font-size: 18px;
  font-weight: 750;
}

.home-booking-step p {
  margin: 8px 0 0;

  color: #7e7c86;

  line-height: 1.65;
}

/* POST */

.home-post-card {
  height: 100%;

  overflow: hidden;

  border: 1px solid #eee9ec;
  border-radius: 22px;

  background: #fff;

  box-shadow: 0 8px 24px rgba(40, 30, 40, 0.04);
}

.home-post-image {
  display: block;

  height: 215px;

  overflow: hidden;

  background: #f8f6f7;
}

.home-post-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.home-post-card:hover .home-post-image img {
  transform: scale(1.04);
}

.home-post-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 56px;
}

.home-post-body {
  padding: 21px;
}

.home-post-body small {
  color: var(--primary-dark);

  font-weight: 700;
}

.home-post-body h3 {
  margin: 9px 0;

  font-size: 20px;
}

.home-post-body h3 a {
  color: #292832;

  text-decoration: none;
}

.home-post-body p {
  color: #7c7a84;

  font-size: 14px;

  line-height: 1.65;
}

.home-read-more {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 5px;

  color: var(--primary-dark);

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;
}

/* EMPTY */

.home-empty-state {
  padding: 55px;

  border: 1px dashed #e8dfe4;
  border-radius: 22px;

  background: #fff;

  text-align: center;
}

.home-empty-state > div {
  margin-bottom: 12px;

  font-size: 46px;
}

.home-empty-state h3 {
  font-size: 20px;
}

.home-empty-state p {
  margin: 7px 0 0;

  color: #87848e;
}

/* MAP + CONTACT */

.home-location-section {
  background: #fff;
}

.home-contact-card,
.home-map-card {
  height: 100%;

  overflow: hidden;

  border: 1px solid #ece7ea;
  border-radius: 24px;

  background: #fff;

  box-shadow: 0 10px 30px rgba(40, 30, 40, 0.05);
}

.home-contact-card {
  padding: 28px;
}

.home-contact-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 16px;

  background: #fff0f4;

  color: var(--primary);

  font-size: 22px;
}

.home-contact-card h3 {
  margin-bottom: 22px;

  font-size: 21px;
  font-weight: 800;
}

.home-contact-row {
  display: flex;
  align-items: flex-start;

  gap: 13px;

  padding: 13px 0;

  border-bottom: 1px solid #f1edf0;

  color: inherit;

  text-decoration: none;
}

.home-contact-row > i {
  margin-top: 3px;

  color: var(--primary);

  font-size: 17px;
}

.home-contact-row small,
.home-contact-row span {
  display: block;
}

.home-contact-row small {
  margin-bottom: 2px;

  color: #98959d;

  font-size: 11px;
}

.home-contact-row span {
  color: #44424c;

  font-size: 14px;
}

.home-map-card {
  min-height: 430px;
}

.home-map-card iframe {
  width: 100%;
  height: 100%;

  min-height: 430px;

  display: block;

  border: 0;
}

.home-map-empty {
  min-height: 430px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 30px;

  color: #84818b;

  text-align: center;

  background: #faf8f9;
}

.home-map-empty i {
  margin-bottom: 14px;

  color: var(--primary);

  font-size: 45px;
}

/* ==========================================================
   NEW FOOTER
========================================================== */

.site-footer {
  margin-top: 0;

  padding: 68px 0 0;

  background: linear-gradient(135deg, #202027 0%, #28252d 100%);

  color: #d4d2d8;
}

.footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 16px;

  color: #fff;

  text-decoration: none;
}

.footer-logo strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-logo-image,
.footer-logo-fallback {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 13px;

  background: #fff;
}

.footer-logo-image {
  padding: 5px;
}

.footer-logo-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.footer-logo-fallback {
  background: rgba(255, 255, 255, 0.08);

  font-size: 23px;
}

.footer-brand-new > p {
  max-width: 380px;

  color: #a9a7b0;

  font-size: 14px;

  line-height: 1.7;
}

.footer-column h4,
.footer-booking-box h4 {
  margin-bottom: 18px;

  color: #fff;

  font-size: 16px;
  font-weight: 750;
}

.footer-column ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #b8b6be;

  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 13px;

  color: #b8b6be;

  font-size: 14px;

  line-height: 1.5;

  text-decoration: none;
}

.footer-contact-item i {
  margin-top: 2px;

  color: var(--primary);
}

.footer-social-new {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 20px;
}

.footer-social-new a {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  color: #fff;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.footer-social-new a:hover {
  transform: translateY(-2px);

  background: var(--primary);
}

.footer-zalo-logo {
  width: 18px;
  height: 18px;

  display: block;

  object-fit: contain;
}

.footer-booking-box {
  padding: 22px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);
}

.footer-booking-icon {
  margin-bottom: 8px;

  font-size: 32px;
}

.footer-booking-box p {
  color: #aaa7b0;

  font-size: 13px;

  line-height: 1.6;
}

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 48px;

  padding: 22px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #85838c;

  font-size: 13px;
}

.footer-bottom strong {
  color: #aaa8b0;
}

.footer-bottom-links {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-bottom-links a {
  color: #96949c;

  text-decoration: none;
}

/* ==========================================================
   FLOATING CONTACT
========================================================== */

.contact-widget {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 1050;
}

.contact-widget-toggle {
  width: 58px;
  height: 58px;

  border: 0;
  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary), #f25a7f);

  color: #fff;

  box-shadow: 0 10px 28px rgba(217, 75, 112, 0.35);

  font-size: 22px;
}

.contact-widget-panel {
  position: absolute;

  right: 0;
  bottom: 72px;

  width: 300px;

  padding: 12px;

  border: 1px solid #eee8ec;
  border-radius: 20px;

  background: #fff;

  box-shadow: 0 18px 45px rgba(30, 25, 35, 0.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.contact-widget.is-open .contact-widget-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-widget-title {
  padding: 8px 10px 12px;

  border-bottom: 1px solid #f0ecef;
}

.contact-widget-title small,
.contact-widget-title strong {
  display: block;
}

.contact-widget-title small {
  color: #96939c;

  font-size: 11px;
}

.contact-widget-title strong {
  color: #292832;

  font-size: 16px;
}

.contact-widget-panel > a {
  display: flex;

  align-items: center;

  gap: 11px;

  padding: 10px;

  border-radius: 12px;

  color: #36353e;

  text-decoration: none;
}

.contact-widget-panel > a:hover {
  background: #faf6f8;
}

.contact-widget-panel > a small,
.contact-widget-panel > a strong {
  display: block;
}

.contact-widget-panel > a small {
  color: #9a979f;

  font-size: 10px;
}

.contact-widget-panel > a strong {
  font-size: 13px;
}

.contact-widget-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f2eff1;

  font-size: 17px;
}

.contact-widget-icon.phone {
  background: #e8f8ea;

  color: #32a852;
}

.contact-widget-icon.facebook {
  background: #edf4ff;

  color: #1877f2;
}

.contact-widget-icon.zalo {
  background: #eef5ff;

  color: #0068ff;

  overflow: hidden;
}

.contact-widget-zalo-logo {
  width: 30px;
  height: 30px;

  display: block;

  object-fit: contain;
}

.contact-widget-icon.tiktok {
  background: #f1f1f1;

  color: #111;
}

.contact-widget-icon.instagram {
  background: #fff0f5;

  color: #d62976;
}

.contact-widget-icon.youtube {
  background: #fff0f0;

  color: #ff0000;
}

.contact-widget-icon.contact {
  background: #fff1f4;

  color: var(--primary);
}

/* ==========================================================
   OWNER NAVBAR NOTIFICATION / RICH POST CONTENT
========================================================== */

.owner-navbar-notification {
  position: relative;

  width: 46px;
  height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 46px;

  border: 1px solid #e8e2e6;
  border-radius: 50%;

  background: #fff;

  color: #34313a;

  font-size: 19px;

  text-decoration: none;

  transition: 0.2s ease;
}

.owner-navbar-notification:hover {
  background: #fff4f6;
  border-color: #ff9bad;
  color: #ff617d;
}

.owner-navbar-notification-badge {
  position: absolute;

  top: -3px;
  right: -3px;

  min-width: 19px;
  height: 19px;

  padding: 0 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #fff;
  border-radius: 999px;

  background: #ff536e;
  color: #fff;

  font-size: 10px;
  font-weight: 700;

  line-height: 1;
}
/* ==========================================================
   PUBLIC POST RICH CONTENT
========================================================== */

.public-post-content {
  color: #333;

  font-size: 17px;
  line-height: 1.8;
}

.public-post-content p {
  margin-bottom: 16px;
}

.public-post-content h2 {
  margin: 32px 0 14px;

  font-size: 28px;
  font-weight: 700;
}

.public-post-content h3 {
  margin: 26px 0 12px;

  font-size: 23px;
  font-weight: 700;
}

.public-post-content h4 {
  margin: 22px 0 10px;

  font-size: 19px;
  font-weight: 700;
}

.public-post-content ul,
.public-post-content ol {
  margin: 12px 0 20px;

  padding-left: 30px;
}

.public-post-content li {
  margin-bottom: 8px;
}

.public-post-content blockquote {
  margin: 24px 0;

  padding: 14px 20px;

  border-left: 4px solid var(--primary);

  background: #fff7f8;
}

.public-post-content a {
  color: var(--primary-dark);

  text-decoration: underline;
}

.public-post-content strong,
.public-post-content b {
  font-weight: 700;
}

/* ==========================================================
   CONTACT SOCIAL
========================================================== */

.contact-social-wrap {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: #fff7f8;
  border: 1px solid #f3d9df;
  text-align: center;
}

.contact-social-title {
  font-size: 20px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 14px;
}

.contact-social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #f0cfd6;
  color: #303038;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  min-width: 120px;
}

.contact-social-link:hover {
  background: #ffedf1;
  border-color: #f48ca4;
  color: #e85d75;
  transform: translateY(-1px);
}

.contact-social-link i {
  font-size: 18px;
}

@media (max-width: 576px) {
  .contact-social-wrap {
    padding: 16px;
  }

  .contact-social-title {
    font-size: 18px;
  }

  .contact-social-link {
    width: 100%;
    max-width: 240px;
  }
}

/* ==========================================================
   RESPONSIVE - PET SPA
   Sales legacy responsive removed.
========================================================== */

@media (max-width: 991.98px) {
  .section {
    padding: 60px 0;
  }

  .pet-home-hero {
    padding: 65px 0;
  }

  .home-booking-steps {
    grid-template-columns: 1fr;
  }

  .owner-sidebar-brand {
    padding: 12px 14px;
  }

  .owner-shop-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
  }

  .owner-shop-icon img {
    border-radius: 12px;
  }

  .owner-shop-info strong {
    font-size: 15px;
  }

  .pet-navbar-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .pet-navbar-shop-name {
    max-width: 170px;
    font-size: 19px;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    min-height: 64px;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .pet-home-hero h1 {
    font-size: 42px;
  }

  .home-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-map-card,
  .home-map-card iframe,
  .home-map-empty {
    min-height: 330px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .post-page-hero,
  .gallery-public-hero {
    padding: 45px 0;
  }

  .post-page-hero h1,
  .gallery-public-hero h1 {
    font-size: 32px;
  }

  .public-post-detail-title {
    font-size: 32px;
  }

  .public-post-detail-excerpt,
  .public-post-content {
    font-size: 16px;
  }

  .public-gallery-grid {
    columns: 2 150px;
    column-gap: 10px;
  }

  .public-gallery-item {
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .contact-map iframe {
    height: 320px;
  }

  .contact-social-list {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 42px 0;
  }

  .pet-home-hero {
    padding: 48px 0;
  }

  .pet-home-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .pet-home-hero p {
    font-size: 16px;
  }

  .home-service-image,
  .home-post-image {
    height: 190px;
  }

  .auth-section {
    min-height: auto;
    padding: 30px 0;
  }

  .auth-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .auth-title {
    font-size: 26px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-social-wrap {
    padding: 16px;
  }

  .contact-social-title {
    font-size: 18px;
  }

  .contact-social-link {
    width: 100%;
    max-width: 240px;
  }

  .contact-widget {
    right: 14px;
    bottom: 14px;
  }

  .contact-widget-panel {
    width: min(300px, calc(100vw - 28px));
  }

  .owner-account-name {
    max-width: 100px;
  }

  .owner-account-toggle {
    padding-right: 10px;
  }

  .owner-account-avatar {
    width: 34px;
    height: 34px;
  }

  .public-gallery-grid {
    columns: 1;
  }
}
