:root {
  --bg: #101114;
  --panel: #181a1f;
  --panel-2: #20232a;
  --text: #f8f5ee;
  --muted: #a6adb8;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d8b35a;
  --mint: #63d6b3;
  --coral: #ff7f6e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body.light {
  --bg: #f8f6f0;
  --panel: #ffffff;
  --panel-2: #ede9df;
  --text: #171717;
  --muted: #5e6673;
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 60px rgba(20, 25, 35, 0.12);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.announcement {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 10px 18px;
  background: #d8b35a;
  color: #151515;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.announcement a { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(16, 17, 20, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
body.light .site-header { background: rgba(248, 246, 240, 0.82); }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #121212;
  font-weight: 900;
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 12px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); background: var(--panel-2); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }
.icon-btn, .cart-button, .owner-button {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  min-height: 42px;
  border-radius: 999px;
  cursor: pointer;
}
.icon-btn { width: 42px; font-size: 18px; }
.cart-button, .owner-button { padding: 0 16px; font-weight: 800; }
.owner-button.active {
  background: var(--mint);
  border-color: transparent;
  color: #07150e;
}
.cart-button span {
  margin-left: 8px;
  background: var(--gold);
  color: #151515;
  padding: 2px 8px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 110px clamp(18px, 5vw, 72px) 64px;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.94), rgba(16, 17, 20, 0.66), rgba(16, 17, 20, 0.2)),
    url("https://images.unsplash.com/photo-1601758124510-52d02ddb7cbd?auto=format&fit=crop&w=1800&q=85") center/cover;
}
body.light .hero-media {
  background:
    linear-gradient(90deg, rgba(248, 246, 240, 0.94), rgba(248, 246, 240, 0.72), rgba(248, 246, 240, 0.18)),
    url("https://images.unsplash.com/photo-1601758124510-52d02ddb7cbd?auto=format&fit=crop&w=1800&q=85") center/cover;
}
.hero-content {
  position: relative;
  max-width: 780px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--mint);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions, .hero-stats, .shop-tools, .filter-tabs, .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-stats {
  margin-top: 30px;
}
.hero-stats span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: var(--muted);
}
.hero-stats strong { color: var(--text); margin-right: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--panel);
  font-weight: 900;
  cursor: pointer;
}
.btn.primary { background: var(--gold); color: #141414; border-color: transparent; }
.btn.ghost { background: rgba(255,255,255,0.06); }
.btn.whatsapp { background: #1fbf75; color: #07150e; border: 0; }
.btn.compact { min-height: 42px; padding-inline: 16px; }
.btn.full { width: 100%; }

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-heading h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 12px;
}
.section-heading p:not(.eyebrow) { color: var(--muted); }

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
}
.service-strip article {
  padding: 36px;
  background: var(--panel);
}
.service-strip span { color: var(--gold); font-weight: 900; }
.service-strip h2 { font-size: 22px; }
.service-strip p { color: var(--muted); margin: 0; }

.shop-tools {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.admin-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-box {
  display: grid;
  gap: 6px;
  min-width: min(100%, 320px);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 8px;
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
.filter-tabs button {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 900;
  cursor: pointer;
}
.filter-tabs button.active { background: var(--mint); color: #07150e; border-color: transparent; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-card:hover,
.product-card:focus {
  border-color: rgba(216, 179, 90, 0.7);
  transform: translateY(-2px);
  outline: none;
}
.product-card figure {
  margin: 0;
  aspect-ratio: 1 / 0.9;
  background: #f8f5ee;
  overflow: hidden;
  padding: 16px;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover img { transform: scale(1.02); }
.product-body { padding: 16px; }
.badge {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(99, 214, 179, 0.14);
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
}
.product-body h3 { margin: 12px 0 6px; font-size: 17px; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}
.price { color: var(--gold); font-weight: 900; }
.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}
.card-actions .icon-btn {
  width: auto;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}
.edit-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.product-admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.icon-btn.danger {
  width: auto;
  padding: 0 10px;
  color: var(--coral);
  border-color: rgba(255, 127, 110, 0.45);
  background: rgba(255, 127, 110, 0.1);
  font-size: 12px;
  font-weight: 900;
}
.product-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}
.product-more p {
  margin: 0;
}
.hidden { display: none !important; }

.grooming-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.grooming-image {
  min-height: 520px;
  border-radius: 8px;
  background: url("https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?auto=format&fit=crop&w=1200&q=85") center/cover;
}
.package-list {
  display: grid;
  gap: 14px;
}
.package-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.package-card p { color: var(--muted); margin-bottom: 0; }
.package-card strong { color: var(--gold); font-size: 22px; }

.review-masonry {
  columns: 3 260px;
  column-gap: 18px;
}
.google-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(216, 179, 90, 0.16), transparent),
    var(--panel);
}
.google-rating div {
  display: grid;
  gap: 4px;
}
.rating-stars {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.google-rating strong {
  font-size: 24px;
}
.google-rating p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.review-masonry article {
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.review-masonry strong { color: var(--gold); }
.review-masonry p { margin: 14px 0; }
.review-masonry span { color: var(--muted); font-weight: 800; }
.review-card {
  min-height: 210px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: var(--panel-2);
}
.review-head strong {
  display: block;
  color: var(--text);
}
.review-head span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.2;
}
.review-card p {
  color: var(--muted);
  font-size: 18px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}
.map-shell {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(0.25) contrast(1.08);
}
.visit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(216, 179, 90, 0.12), transparent 42%),
    var(--panel);
}
.visit-card h3 {
  margin-bottom: 0;
  font-size: 30px;
}
.visit-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.visit-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.visit-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 22px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.login-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
}
.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.faq-item strong { display: block; margin-bottom: 6px; }
.faq-item p { color: var(--muted); margin: 0; }
.faq-answer-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.faq-owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn.danger {
  background: rgba(255, 127, 110, 0.14);
  border-color: rgba(255, 127, 110, 0.45);
  color: var(--coral);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}
.inquiry-form, .contact-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.inquiry-form {
  display: grid;
  gap: 16px;
}
.inquiry-form label {
  display: grid;
  gap: 6px;
  flex: 1;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-panel p { color: var(--muted); margin-bottom: 0; }

.cart-drawer, .modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}
.cart-drawer.open, .modal.open { display: block; }
.cart-panel {
  margin-left: auto;
  width: min(440px, 100%);
  min-height: 100%;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow);
}
.cart-head, .cart-row, .cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cart-items {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.cart-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}
.cart-row small { color: var(--muted); }
.cart-total {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.modal {
  place-items: center;
  padding: 18px;
}
.modal.open { display: grid; }
.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}
.login-card p {
  color: var(--muted);
}
.login-field {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.add-product-card {
  width: min(760px, 100%);
}
.product-detail-card {
  width: min(1040px, 100%);
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}
.product-detail figure {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 460px;
  padding: 24px;
  border-radius: 8px;
  background: #f8f5ee;
}
.product-detail img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
}
.product-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 22px;
}
.product-detail-copy h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}
.detail-price {
  color: var(--gold);
  font-size: 26px;
}
.product-detail-copy p {
  color: var(--muted);
}
.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}
.detail-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.detail-list dt {
  color: var(--muted);
  font-weight: 800;
}
.detail-list dd {
  margin: 0;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
  }
  .site-nav.open { display: flex; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
    color: var(--text);
  }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-strip, .grooming-layout, .inquiry-grid, .location-layout, .product-detail { grid-template-columns: 1fr; }
  .grooming-image { min-height: 360px; }
  .map-shell, .map-shell iframe { min-height: 380px; }
  .product-detail figure { min-height: 320px; }
}

@media (max-width: 620px) {
  .announcement { flex-direction: column; gap: 2px; }
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }
  .brand small, .header-actions .icon-btn, .owner-button { display: none; }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .cart-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
    font-size: 12px;
    font-weight: 900;
  }
  .hero {
    min-height: 72vh;
    padding: 84px 16px 42px;
  }
  .hero-media {
    background:
      linear-gradient(180deg, rgba(16, 17, 20, 0.62), rgba(16, 17, 20, 0.94)),
      url("https://images.unsplash.com/photo-1601758124510-52d02ddb7cbd?auto=format&fit=crop&w=1000&q=80") center/cover;
  }
  .hero-copy {
    font-size: 15px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }
  .hero-stats span {
    padding: 10px 8px;
    text-align: center;
    font-size: 11px;
  }
  .hero-stats strong {
    display: block;
    margin: 0;
    font-size: 16px;
  }
  .section { padding: 52px 14px; }
  .section-heading {
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .shop-tools {
    align-items: stretch;
    gap: 14px;
  }
  .filter-tabs {
    flex-wrap: nowrap;
    margin: 0 -14px;
    padding: 0 14px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tabs button {
    flex: 0 0 auto;
    padding: 9px 13px;
    font-size: 12px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-card figure {
    aspect-ratio: 1 / 0.86;
    padding: 8px;
  }
  .product-body {
    padding: 10px;
  }
  .product-body h3 {
    font-size: 13px;
    line-height: 1.25;
    min-height: 34px;
  }
  .badge {
    font-size: 10px;
    padding: 3px 7px;
  }
  .product-meta {
    display: grid;
    gap: 2px;
    font-size: 12px;
  }
  .card-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .card-actions .btn,
  .card-actions .icon-btn {
    min-height: 36px;
    padding-inline: 8px;
    font-size: 11px;
  }
  .product-more {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .google-rating {
    padding: 16px;
  }
  .review-masonry {
    display: grid;
    grid-template-columns: 1fr;
    columns: auto;
    gap: 12px;
  }
  .review-masonry article {
    margin: 0;
    padding: 18px;
  }
  .review-card {
    min-height: auto;
  }
  .review-head img {
    width: 50px;
    height: 50px;
  }
  .review-card p {
    font-size: 14px;
  }
  .faq-form, .package-card { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .login-status { align-items: stretch; flex-direction: column; }
  .google-rating { align-items: stretch; flex-direction: column; }
  .product-detail-card { padding: 22px; }
  .product-detail-copy { padding-right: 0; }
  .detail-list div { grid-template-columns: 1fr; }
}
