﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================
   Variables & Reset
========================= */
:root {
  --pink-bg: #fdecef;
  --pink-light: #fff7f8;
  --pink: #e86f98;
  --pink-dark: #cc4776;
  --wine: #5b1236;
  --sidebar-bg: #6a2b54;
  --sidebar-bg-soft: #8d2457;
  --gold: #b9903d;
  --text: #32232a;
  --muted: #74656b;
  --white: #fff;
  --shadow: 0 18px 45px rgba(232, 111, 152, 0.18);
}

.copyright {
  text-align: center;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--pink-light);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* =========================
   Header
========================= */
.top-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FCE6E8;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.top-bar {
  min-height: 38px;
  padding: 0 5%;
  background: var(--sidebar-bg);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-right {
  gap: 15px;
}

.top-bar-right a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  transition: 0.25s;
}

.top-bar-right a:hover {
  background: var(--pink);
}

.main-navbar {
  background: #FCE6E8;
  width: min(1300px, 92%);
  min-height: 88px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 250px;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-mark,
.logo-text {
  display: none;
}

/* .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.logo-mark {
  width: 58px;
  height: 58px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
}

.logo-text strong {
  font-size: 16px;
  letter-spacing: 8px;
  font-weight: 500;
}

.logo-text span {
  display: block;
  font-size: 11px;
  letter-spacing: 5px;
  margin-top: 4px;
} */

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s;
}

.menu a.active,
.menu a:hover {
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.small-link {
  font-size: 14px;
  color: var(--wine);
  font-weight: 600;
}

.small-link:hover {
  color: var(--pink);
}

.nav-btn {
  background: var(--pink);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.nav-btn:hover {
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
  transition: 0.2s;
}

.mobile-menu-toggle {
  display: none;
}

/* Hide old header if it still exists in old pages */
.header {
  display: none;
}

/* =========================
   Home Hero
========================= */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 126px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff4f6;
}

.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 244, 246, 0.95) 0%,
      rgba(255, 244, 246, 0.82) 34%,
      rgba(255, 244, 246, 0.35) 58%,
      rgba(255, 244, 246, 0) 78%);
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: min(1400px, 92%);
  min-height: calc(100vh - 126px);
  margin: auto;
  display: flex;
  align-items: center;
}

.hero-grid>div {
  max-width: 720px;
}

.eyebrow {
  display: block;
  color: var(--pink-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  /* margin-top: 180px; */
  margin-left: 0;
  text-align: center;

}

.hero .eyebrow {
  text-align: left;
  margin-left: 100px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  color: var(--wine);
  margin-top: 28px;
  margin-left: 100px;
}

.hero h1 span {
  color: var(--pink);
}

.checks {
  display: grid;
  gap: 15px;
  margin: 28px 0;
  margin-left: 100px;
}

.checks p {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--wine);
  font-size: 16px;
}

.checks i {
  color: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 50%;
  padding: 5px;
  font-size: 12px;
}

.btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: 100px;
  margin-bottom: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: var(--pink);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
  transition: 0.2s;
}

.btn-outline {
  border: 1px solid rgba(232, 111, 152, 0.65);
  color: var(--pink-dark);
  background: white;
}

.btn-outline:hover {
  background: var(--pink);
  border: 1px solid var(--pink);
  color: white;
  transition: 0.2s;
}

/* =========================
   General Sections
========================= */
.section {
  padding: 85px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2,
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  color: var(--wine);
}

.section-title small {
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 2px;
}

.page-hero {
  padding: 95px 0 70px;
  background: #ffe7ed;
  text-align: center;
}

.page-hero h1 {
  margin: 15px 0;
}

.page-hero p:last-child {
  color: var(--muted);
  font-size: 17px;
}

/* =========================
   Services
========================= */
.services-page-logo {
  width: min(360px, 80%);
  height: auto;
  display: block;
  margin: 0 auto 32px;
  object-fit: contain;
}

.services-showcase {
  background: #ffe7ed;
  padding-top: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.service-card {
  min-height: 100%;
  padding: 26px 22px;
  border: 1px solid rgba(92, 17, 55, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 45px rgba(92, 17, 55, 0.08);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(92, 17, 55, 0.13);
}

.service-image-blob,
.icon-blob {
  width: 150px;
  height: 130px;
  margin: 0 auto 25px;
  border-radius: 45% 55% 48% 52%;
  background: #fde1e8;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 54px;
}

.service-image-blob img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--wine);
  font-size: 25px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-meta {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: auto 0 18px;
}

.service-meta span {
  padding: 8px 13px;
  border-radius: 999px;
  background: #fde1e8;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

.service-card-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-weight: 700;
}

.service-card-btn:hover {
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
  transition: 0.2s;
}

.services-action {
  text-align: center;
  margin-top: 34px;
}

.home-services-title {
  margin-top: 74px;
}

.home-services-grid {
  margin-top: 28px;
}

.services-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 17px 34px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.22);
}

.services-pill:hover {
  background: var(--pink);
  color: white;
  transition: 0.2s;
}

.admin-service-thumb {
  width: 72px;
  height: 54px;
  object-fit: contain;
  display: block;
}

/* =========================
   Features & CTA
========================= */
.features {
  margin: 55px auto 0;
  background: #facbda;
  border-radius: 26px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-shadow: 0 18px 45px rgba(92, 17, 55, 0.06);
}

.feature {
  display: flex;
  gap: 18px;
  align-items: center;
  border-right: 1px solid rgba(92, 17, 55, 0.16);
  padding: 0 28px;
}

.feature:last-child {
  border-right: none;
}

.feature i {
  width: 42px;
  flex: 0 0 42px;
  text-align: center;
  font-size: 34px;
  color: #c85f89;
  opacity: 0.86;
}

.feature h4 {
  color: var(--wine);
  margin-bottom: 7px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.cta {
  margin-top: 35px;
  background: linear-gradient(90deg, #e86f98, #f29bb7);
  color: white;
  border-radius: 28px;
  padding: 32px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.cta .btn {
  background: white;
  color: var(--pink-dark);
}


/* =========================
   Reviews
========================= */
.reviews-page {
  background: #ffe7ed;
}

.reviews-home-title {
  margin-top: 70px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.review-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(92, 17, 55, 0.1);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(92, 17, 55, 0.08);
}

.review-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: 16px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0 0;
}

.review-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--wine);
  font-size: 22px;
  margin-bottom: 6px;
}

.review-date {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  padding: 10px 0;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  cursor: pointer;
  color: white;
  font-size: 35px;
  line-height: 1;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.22),
    0 0 2px rgba(0, 0, 0, 0.22),
    0 3px 10px rgba(0, 0, 0, 0.22);
  transition: 0.2s;
}

.star-rating label:hover,
.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
  color: gold;
}

/* =========================
   Forms & Booking
========================= */
.booking {
  background: #ffe7ed;
}

.form-box {
  background: #fff7f8;
  border-radius: 30px;
  padding: 35px;
  box-shadow: var(--shadow);
  max-width: 850px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.days-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.days-picker label {
  cursor: pointer;
}

.days-picker input {
  position: absolute;
  opacity: 0;
}

.days-picker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid #f5a6bf;
  color: var(--wine);
  background: white;
  font-size: 13px;
  font-weight: 700;
}

.days-picker input:checked+span {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

label {
  font-weight: 600;
  color: var(--wine);
}

input,
select,
textarea {
  border: 1px solid #f0bfd0;
  border-radius: 15px;
  padding: 14px 16px;
  font-family: inherit;
  outline: none;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
}

.full {
  grid-column: 1 / -1;
}

.alert {
  padding: 15px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}

.success {
  background: #e6fff0;
  color: #17733a;
}

.error {
  background: #ffe5e5;
  color: #a32121;
}

/* =========================
   About Page
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 55px;
}

.about-image-box {
  background: #ffe7ee;
  border-radius: 38px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.about-image-box img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-content small,
.contact-info-card small {
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 2px;
}

.about-content h2,
.contact-info-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.15;
  color: var(--wine);
  margin: 16px 0 20px;
}

.about-content p,
.contact-info-card p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.about-stats div {
  background: #fff;
  border-radius: 22px;
  padding: 22px 15px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--pink);
}

.about-stats span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
}

.values-section {
  background: #ffe7ed;
}

.about-section {
  background: #ffe7ed;
}

/* =========================
   Contact Page
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-section,
.map-section {
  background: #ffe7ed;
}

.contact-info-card {
  background: linear-gradient(135deg, #fff1f5, #ffe1ea);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 25px;
}

.contact-info-list div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 18px;
  border-radius: 18px;
}

.contact-info-list i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fde1e8;
  color: var(--pink);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-list strong {
  display: block;
  color: var(--wine);
  margin-bottom: 5px;
}

.contact-info-list span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-social {
  margin-top: 25px;
}

.contact-social a {
  background: var(--wine);
}

.contact-form {
  max-width: none;
}

.map-section {
  padding: 0 0 85px;
}

.map-box {
  min-height: 300px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffe3eb, #fff7f8);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-box iframe {
  width: 100%;
  min-height: 380px;
  display: block;
  border: 0;
}

.map-box i {
  font-size: 48px;
  color: var(--pink);
  margin-bottom: 15px;
}

.map-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--wine);
}

.map-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: linear-gradient(135deg, #4d0f2e 0%, #66123e 55%, #781849 100%);
  color: white;
}

.footer-main {
  width: min(1280px, 92%);
  margin: auto;
  padding: 64px 0 42px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.25fr;
  gap: 54px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 22px;
}

.footer-logo img {
  width: min(100%, 315px);
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  max-width: 360px;
  margin: 18px 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.footer-col .footer-social a,
.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 1, 1, 0.14);
  color: white;
  font-size: 18px;
  line-height: 1;
  margin: 0;
  padding: 0;
  transition: 0.25s;
}

.footer-col .footer-social a i,
.footer-social a i {
  display: block;
  line-height: 1;
  width: auto;
  height: auto;
  margin: 0;
}

.footer-col .footer-social a:hover,
.footer-social a:hover {
  background: var(--pink);
  /* transform: translateY(-4px); */
  box-shadow: 0 12px 24px rgba(232, 111, 152, 0.28);
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 24px;
  color: #ffdce8;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
  line-height: 1.7;
}

.footer-col a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-col p i {
  width: 28px;
  color: #ffdce8;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: min(1280px, 92%);
  margin: auto;
  padding: 26px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  position: relative;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
  position: absolute;
  right: 0;
}

.footer-bottom a:hover {
  color: white;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  font-size: 30px;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  transition: 0.25s;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  background: #1ebe5d;
  color: white;
}

/* =========================
   Admin Dashboard
========================= */
.dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--wine);
  color: white;
  padding: 28px;
}

.sidebar-logo {
  width: 100%;
  max-width: 190px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
  object-fit: contain;
}

.sidebar h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  margin: 8px 0;
}

.sidebar a:hover,
.sidebar a.active {
  background: rgba(255, 255, 255, 0.12);
}

.sidebar a.sidebar-site-link {
  margin-top: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #ffe7ef 100%);
  color: var(--wine);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  font-weight: 900;
  text-align: center;
}

.sidebar a.sidebar-site-link:hover {
  background: #ffffff;
  color: var(--pink);
  transform: translateY(-1px);
}

.sidebar a.sidebar-logout-link {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.sidebar a.sidebar-logout-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.main {
  padding: 30px;
  background: #fff7f8;
}

.table-card,
.login-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px;
  border-bottom: 1px solid #f3d4df;
  text-align: left;
  font-size: 14px;
}

th {
  color: var(--wine);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.pending {
  background: #fff4cc;
  color: #876100;
}

.accepted {
  background: #dff9e8;
  color: #18763d;
}

.rejected {
  background: #ffe1e1;
  color: #a12727;
}

.income {
  background: #dff9e8;
  color: #18763d;
}

.expense {
  background: #ffe1e1;
  color: #a12727;
}

.finance-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.finance-summary div {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.finance-summary span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.finance-summary strong {
  color: var(--wine);
  font-size: 24px;
}

.export-card {
  background: #fff1f5;
}

.excel-export-btn {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1f8f4d;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(31, 143, 77, 0.24);
  transition: 0.25s;
  margin-bottom: 15px;
}

.excel-export-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.excel-export-btn:hover {
  transform: translateY(-3px);
  background: #18763d;
}

.export-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(34, 8, 25, 0.45);
}

.export-modal.show {
  display: flex;
}

.export-modal-card {
  width: min(420px, 94vw);
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(34, 8, 25, 0.22);
}

.export-modal-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--wine);
  margin-bottom: 20px;
}

.export-modal-card form {
  display: grid;
  gap: 16px;
}

.export-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: var(--wine);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.completed {
  background: #e1edff;
  color: #1d4d9a;
}

.filter-card {
  margin-bottom: 20px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
  align-items: end;
}

.filter-grid .btn {
  min-height: 48px;
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.date-placeholder-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.date-placeholder-wrap input[type="date"] {
  width: 100%;
}

.date-placeholder-text {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  line-height: 1;
  background: white;
  padding-right: 8px;
  display: none;
}

.date-placeholder-wrap.has-value .date-placeholder-text,
.date-placeholder-wrap input[type="date"]:focus+.date-placeholder-text {
  display: none;
}

.message-cell {
  max-width: 320px;
  min-width: 240px;
  white-space: normal;
  line-height: 1.6;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff4f6, #ffdce8);
}

.login-card {
  width: min(420px, 92%);
}

.login-card h1 {
  font-family: 'Playfair Display', serif;
  color: var(--wine);
  margin-bottom: 20px;
  text-align: center;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1050px) {
  .main-navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 120px 20px 80px;
    text-align: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 46px;
  }

  .checks p,
  .btns {
    justify-content: center;
  }

  .hero::before {
    background: rgba(255, 244, 246, 0.78);
  }

  .form-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .features,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .dashboard {
    grid-template-columns: 1fr;
  }

  .sidebar {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
  }

  .sidebar-logo {
    flex-basis: 100%;
    max-width: 180px;
    margin: 0 auto 12px;
  }

  .sidebar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .main {
    min-width: 0;
  }

  .about-content h2,
  .contact-info-card h2 {
    font-size: 38px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .top-bar {
    display: none;
  }

  .main-navbar {
    min-height: 82px;
  }

  .menu {
    display: flex;
    gap: 16px;
  }

  .header-actions {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social,
  .footer-bottom,
  .footer-bottom div {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {

  .services-grid,
  .features,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-grid {
    padding: 90px 18px 60px;
  }
}

.menu a {
  position: relative;
  transition: 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #e86f98;
  transition: 0.3s;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

/* =========================
   Mobile polish
========================= */
@media (max-width: 900px) {

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .main-navbar {
    width: 100%;
    padding: 12px 16px;
    gap: 14px;
  }

  .logo img {
    width: 210px;
    max-width: 82vw;
  }

  .menu {
    gap: 14px 18px;
    padding: 8px 0 2px;
  }

  .menu a {
    font-size: 14px;
  }

  .page-hero {
    padding: 70px 0 48px;
  }

  .section {
    padding: 58px 0;
  }

  .features {
    padding: 22px;
    gap: 0;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid rgba(92, 17, 55, 0.14);
    padding: 18px 8px;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    position: static;
  }

  .footer-bottom div {
    position: static;
  }

  .finance-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-header {
    position: static;
  }

  .main-navbar {
    justify-content: center;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .logo img {
    width: 190px;
  }

  .menu {
    width: 100%;
    justify-content: center;
    gap: 12px 16px;
  }

  .header-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .small-link,
  .nav-btn {
    font-size: 13px;
  }

  .hero-grid {
    padding: 72px 0 54px;
    text-align: center;
  }

  .hero .eyebrow {
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .checks {
    display: grid;
    gap: 10px;
    justify-content: center;
  }

  .checks p {
    font-size: 15px;
  }

  .btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-btn,
  .service-card-btn,
  .services-pill {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .section-title h2,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .page-hero p:last-child {
    font-size: 15px;
  }

  .services-grid,
  .features,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .review-card,
  .form-box,
  .contact-info-card,
  .table-card,
  .login-card {
    border-radius: 18px;
    padding: 22px;
  }

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

  .about-image-box,
  .about-image-box img {
    min-height: 320px;
  }

  .about-content h2,
  .contact-info-card h2 {
    font-size: 32px;
  }

  .contact-info-list div {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .map-box iframe {
    min-height: 300px;
  }

  .cta {
    padding: 26px 20px;
  }

  .cta h3 {
    font-size: 28px;
  }

  .footer-main {
    padding: 48px 0 30px;
    gap: 34px;
  }

  .footer-logo img {
    margin: auto;
    width: min(280px, 88vw);
  }

  .footer-social {
    justify-content: center;
  }

  .dashboard {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sidebar {
    padding: 20px;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .sidebar-logo {
    flex-basis: 100%;
    max-width: 170px;
    margin: 0 auto 12px;
  }

  .sidebar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .main {
    width: 100%;
    min-width: 0;
    padding: 20px 12px;
  }

  .main h1 {
    font-size: 26px;
  }

  table {
    min-width: 760px;
  }

  .table-card {
    width: 100%;
    padding: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 30px;
  }

  .section-title h2,
  .page-hero h1 {
    font-size: 32px;
  }

  .menu {
    gap: 10px 12px;
  }

  .menu a {
    font-size: 13px;
  }
}


@media (max-width: 640px) {
  .hero {
    min-height: calc(100vh - 170px);
    align-items: center;
    background: #fff4f6;
  }

  .bg-image {
    object-position: 58% center;
    opacity: 0.58;
  }

  .hero::before {
    background: linear-gradient(90deg,
        rgba(255, 244, 246, 0.88) 0%,
        rgba(255, 244, 246, 0.76) 50%,
        rgba(255, 244, 246, 0.62) 100%);
  }

  .hero-grid {
    width: min(100% - 34px, 520px);
    min-height: calc(100vh - 170px);
    padding: 48px 0;
    align-items: center;
    justify-content: center;
  }

  .hero-grid>div {
    max-width: 100%;
  }

  .hero .eyebrow,
  .hero h1,
  .checks,
  .btns {
    margin-left: 0;
  }

  .hero .eyebrow {
    text-align: center;
    font-size: 13px;
    letter-spacing: 4px;
    line-height: 1.6;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 40px;
    line-height: 1.16;
    text-align: center;
  }

  .checks {
    width: min(100%, 350px);
    margin: 30px auto;
    justify-content: stretch;
  }

  .checks p {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    justify-content: start;
    text-align: left;
    font-size: 18px;
    line-height: 1.45;
  }

  .checks i {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    font-size: 14px;
  }

  .btns {
    width: min(100%, 360px);
    margin-right: auto;
    margin-left: auto;
    gap: 12px;
  }

  .btns .btn {
    padding: 16px 22px;
    font-size: 17px;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 34px;
  }

  .checks p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .booking {
    padding: 34px 0 54px;
  }

  .booking .container {
    width: min(100% - 24px, 520px);
  }

  .booking .form-box {
    width: 100%;
    padding: 22px 16px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(92, 17, 55, 0.09);
  }

  .booking .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking .form-group {
    gap: 7px;
  }

  .booking label {
    font-size: 15px;
    line-height: 1.35;
  }

  .booking input,
  .booking select,
  .booking textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .booking textarea {
    min-height: 118px;
    resize: vertical;
  }

  .booking .field-note {
    font-size: 12px;
    line-height: 1.45;
  }

  .booking .alert {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .booking .btn {
    width: 100%;
    min-height: 54px;
    padding: 15px 18px;
    font-size: 15px;
    letter-spacing: 1px;
  }
}

@media (max-width: 380px) {
  .booking .container {
    width: min(100% - 18px, 520px);
  }

  .booking .form-box {
    padding: 18px 12px;
  }
}

@media (max-width: 640px) {
  .top-header {
    position: static;
    background: #fce6e8;
  }

  .top-bar {
    display: none;
  }

  .main-navbar {
    width: 100%;
    min-height: 0;
    padding: 14px 18px 20px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 14px;
  }

  .logo {
    width: 100%;
    justify-content: center;
    order: 1;
  }

  .logo img {
    width: min(230px, 76vw);
    max-width: 100%;
  }

  .header-actions {
    order: 2;
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  .header-actions .nav-btn {
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 17px;
    letter-spacing: 0;
  }

  .header-actions .small-link {
    order: 2;
    font-size: 14px;
    line-height: 1;
  }

  .menu {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 4px 0 0;
  }

  .menu a {
    font-size: 18px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .menu a::after {
    bottom: -7px;
  }
}

@media (max-width: 420px) {
  .main-navbar {
    padding-inline: 14px;
    gap: 13px;
  }

  .logo img {
    width: min(205px, 72vw);
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .nav-btn {
    min-height: 50px;
    font-size: 16px;
  }

  .menu {
    gap: 13px 17px;
  }

  .menu a {
    font-size: 16px;
  }
}

@media (max-width: 350px) {
  .menu {
    gap: 11px 13px;
  }

  .menu a {
    font-size: 15px;
  }
}


@media (max-width: 640px) {
  .site-footer {
    background: #66123e;
  }

  .footer-main {
    width: min(100% - 34px, 520px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0 20px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
    justify-content: center;
  }

  .footer-logo img {
    width: min(210px, 72vw);
    margin: 0 auto;
  }

  .footer-brand p {
    max-width: 310px;
    margin: 10px auto 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .footer-social {
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
  }

  .footer-col .footer-social a,
  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .footer-col h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .footer-col a,
  .footer-col p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-col p i {
    width: 20px;
  }

  .footer-bottom {
    width: min(100% - 34px, 520px);
    padding: 14px 0 18px;
    display: block;
    text-align: center;
    font-size: 13px;
  }

  .footer-bottom p {
    line-height: 1.45;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .footer-main {
    width: min(100% - 24px, 520px);
    gap: 18px;
    padding-top: 28px;
  }

  .footer-logo img {
    width: min(185px, 70vw);
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col a,
  .footer-col p,
  .footer-brand p {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .login-page {
    min-height: 100svh;
    padding: 22px 14px;
    place-items: center;
    background: #ffe7ed;
  }

  .login-page .login-card {
    width: min(100%, 370px);
    max-height: calc(100svh - 44px);
    overflow: auto;
    padding: 24px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(92, 17, 55, 0.11);
  }

  .login-card h1 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.1;
  }

  .login-card .form-group {
    gap: 7px;
  }

  .login-card label {
    font-size: 15px;
  }

  .login-card input {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .login-card .alert {
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.45;
  }

  .login-card .btn {
    min-height: 52px;
    padding: 14px 18px;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .login-card p {
    margin-top: 14px !important;
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .login-page {
    padding: 16px 10px;
  }

  .login-page .login-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .login-card h1 {
    font-size: 30px;
  }

  .login-card p {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .dashboard {
    display: block;
    min-height: 100svh;
    background: #fff7f8;
  }

  .dashboard .sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    min-height: 0;
    padding: 12px 12px 14px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    background: var(--wine);
    box-shadow: 0 10px 26px rgba(92, 17, 55, 0.16);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dashboard .sidebar-logo {
    width: min(135px, 42vw);
    max-width: none;
    flex: 0 0 auto;
    margin: 0;
  }

  .dashboard .sidebar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.07);
    flex: 0 0 auto;
  }

  .dashboard .sidebar a:hover,
  .dashboard .sidebar a.active {
    background: rgba(255, 255, 255, 0.18);
  }

  .dashboard .sidebar a.sidebar-site-link {
    margin-top: 0;
    background: #fff;
    color: var(--wine);
    box-shadow: none;
  }

  .dashboard .sidebar::-webkit-scrollbar {
    height: 0;
  }

  .dashboard .main {
    padding: 22px 12px 34px;
  }

  .dashboard .main h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .dashboard .table-card {
    padding: 14px;
    border-radius: 16px;
  }

  .dashboard .filter-card {
    padding: 14px;
    background: var(--panel-bg);
    box-shadow: 0 14px 32px rgba(92, 17, 55, 0.08);
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .dashboard .sidebar {
    padding: 10px 10px 12px;
    gap: 8px;
  }

  .dashboard .sidebar-logo {
    width: min(120px, 38vw);
  }

  .dashboard .sidebar a {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .dashboard .main {
    padding: 18px 10px 30px;
  }
}

@media (max-width: 760px) {
  .dashboard .table-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  .dashboard .dashboard-card-table,
  .dashboard .dashboard-card-table tbody,
  .dashboard .dashboard-card-table tr,
  .dashboard .dashboard-card-table td {
    display: block;
    width: 100%;
  }

  .dashboard .dashboard-card-table {
    border-collapse: separate;
    border-spacing: 0;
    min-width: 0;
  }

  .dashboard .dashboard-card-table .table-heading-row {
    display: none;
  }

  .dashboard .dashboard-card-table tr {
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid rgba(232, 111, 152, 0.16);
    border-radius: 16px;
    background: white;
    box-shadow: 0 14px 32px rgba(92, 17, 55, 0.08);
  }

  .dashboard .dashboard-card-table td {
    min-height: 34px;
    padding: 9px 0;
    border: none;
    display: grid;
    grid-template-columns: minmax(94px, 36%) 1fr;
    gap: 12px;
    align-items: start;
    font-size: 13px;
    line-height: 1.45;
  }

  .dashboard .dashboard-card-table td+td {
    border-top: 1px solid rgba(92, 17, 55, 0.08);
  }

  .dashboard .dashboard-card-table td::before {
    content: attr(data-label);
    color: var(--wine);
    font-weight: 700;
  }

  .dashboard .dashboard-card-table td .badge {
    justify-self: start;
    align-self: center;
  }

  .dashboard .dashboard-card-table td[data-label="Action"],
  .dashboard .dashboard-card-table td[data-label="Actions"] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .dashboard .dashboard-card-table td[data-label="Action"]::before,
  .dashboard .dashboard-card-table td[data-label="Actions"]::before {
    width: 100%;
    flex: 0 0 100%;
  }

  .dashboard .dashboard-card-table td[data-label="Action"] a,
  .dashboard .dashboard-card-table td[data-label="Actions"] a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #ffe7ed;
    color: var(--wine);
    font-size: 12px;
    font-weight: 700;
  }

  .dashboard .dashboard-card-table .admin-service-thumb {
    max-width: 110px;
    height: 70px;
    object-fit: contain;
  }
}

@media (max-width: 380px) {
  .dashboard .dashboard-card-table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .main-navbar {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 12px;
  }

  .logo {
    width: auto;
    justify-content: flex-start;
    order: 1;
  }

  .logo img {
    width: min(190px, 58vw);
  }

  .mobile-menu-toggle {
    order: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(232, 111, 152, 0.36);
    border-radius: 14px;
    background: white;
    color: var(--wine);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 10px 24px rgba(92, 17, 55, 0.08);
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s, opacity 0.2s;
  }

  .main-navbar.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .main-navbar.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .main-navbar.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
  }

  .header-actions .small-link {
    display: none;
  }

  .header-actions .nav-btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .menu {
    order: 4;
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(232, 111, 152, 0.2);
    gap: 9px;
  }

  .main-navbar.menu-open .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .menu a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.52);
    font-size: 15px;
  }

  .menu a::after {
    display: none;
  }

  .menu a.active,
  .menu a:hover {
    background: rgba(232, 111, 152, 0.14);
  }
}

@media (max-width: 360px) {
  .main-navbar.menu-open .menu {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Final Polish
========================= */
:root {
  --page-bg: #ffe7ed;
  --panel-bg: #fff8fa;
  --panel-border: rgba(232, 111, 152, 0.18);
}

body:not(.login-page) {
  background: var(--page-bg);
}

.page-hero,
.booking,
.reviews-page,
.services-showcase,
.about-page,
.contact-page,
.map-section {
  background: var(--page-bg);
}

.section {
  padding-block: 78px;
}

.page-hero {
  padding-block: 82px 60px;
}

.section-title {
  margin-bottom: 46px;
}

.form-box,
.service-card,
.review-card,
.contact-info-card,
.map-box,
.about-stats div,
.table-card,
.login-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
}

.alert {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 14px 18px;
  border-radius: 16px;
  margin-bottom: 18px;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(92, 17, 55, 0.07);
  font-weight: 700;
  line-height: 1.55;
}

.alert::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 9px;
  margin-top: 7px;
}

.success {
  background: #effbf3;
  color: #176239;
  border-color: rgba(23, 98, 57, 0.16);
}

.success::before {
  background: #28a65a;
  box-shadow: 0 0 0 5px rgba(40, 166, 90, 0.12);
}

.error {
  background: #fff0f0;
  color: #9b2020;
  border-color: rgba(155, 32, 32, 0.15);
}

.error::before {
  background: #d63c3c;
  box-shadow: 0 0 0 5px rgba(214, 60, 60, 0.11);
}

.login-page {
  background: var(--page-bg);
}

.login-page .login-card {
  background: var(--panel-bg);
}

@media (max-width: 900px) {
  .section {
    padding-block: 56px;
  }

  .page-hero {
    padding-block: 62px 44px;
  }

  .section-title {
    margin-bottom: 34px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: 44px;
  }

  .page-hero {
    padding-block: 48px 34px;
  }

  .alert {
    padding: 12px 13px 12px 15px;
    border-radius: 14px;
    font-size: 13px;
  }
}

/* =========================
   404 Page
========================= */
.not-found-page {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding: 78px 0;
  background: var(--page-bg);
}

.not-found-card {
  width: min(680px, 100%);
  margin: auto;
  padding: 46px 34px;
  border-radius: 24px;
  text-align: center;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  box-shadow: 0 18px 45px rgba(92, 17, 55, 0.08);
}

.not-found-card img {
  width: min(260px, 78vw);
  height: auto;
  margin: 0 auto 20px;
}

.not-found-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 92px;
  line-height: 0.95;
  color: var(--wine);
  margin: 12px 0;
}

.not-found-card p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .not-found-page {
    min-height: auto;
    padding: 42px 0;
  }

  .not-found-card {
    padding: 30px 18px;
    border-radius: 18px;
  }

  .not-found-card img {
    width: min(190px, 70vw);
  }

  .not-found-card h1 {
    font-size: 66px;
  }

  .not-found-actions {
    flex-direction: column;
  }
}

/* =========================
   Admin Mobile Polish
========================= */
@media (max-width: 760px) {
  .dashboard .main {
    background: #fff7f8;
  }

  .dashboard .main h1 {
    margin-bottom: 14px;
  }

  .dashboard form.table-card,
  .dashboard .filter-card,
  .dashboard .finance-summary div,
  .dashboard .export-modal-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    box-shadow: 0 14px 32px rgba(92, 17, 55, 0.08);
  }

  .dashboard form.table-card,
  .dashboard .filter-card {
    padding: 16px;
    border-radius: 16px;
    overflow: visible;
  }

  .dashboard .filter-card {
    margin-bottom: 16px;
  }

  .dashboard .form-grid,
  .dashboard .filter-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dashboard .form-group {
    gap: 6px;
  }

  .dashboard label {
    font-size: 13px;
    line-height: 1.35;
  }

  .dashboard input,
  .dashboard select,
  .dashboard textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  .dashboard textarea {
    min-height: 96px;
  }

  .dashboard .filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .dashboard .filter-actions .btn,
  .dashboard form.table-card .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .dashboard .finance-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dashboard .finance-summary div {
    padding: 15px;
    border-radius: 16px;
  }

  .dashboard .finance-summary span {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .dashboard .finance-summary strong {
    font-size: 18px;
    line-height: 1.3;
  }

  .dashboard .excel-export-btn {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .dashboard .export-modal {
    padding: 14px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .dashboard .export-modal-card {
    width: 100%;
    margin-top: 48px;
    padding: 22px 16px;
    border-radius: 18px;
  }

  .dashboard .export-modal-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .dashboard .days-picker {
    gap: 8px;
  }

  .dashboard .days-picker span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .dashboard .alert {
    margin-bottom: 14px;
  }

  .dashboard .date-placeholder-text {
    display: block;
  }

  .dashboard .date-placeholder-wrap.has-value .date-placeholder-text,
  .dashboard .date-placeholder-wrap input[type="date"]:focus+.date-placeholder-text {
    display: none;
  }
}

@media (max-width: 420px) {
  .dashboard .main {
    padding: 16px 9px 28px;
  }

  .dashboard form.table-card,
  .dashboard .filter-card {
    padding: 13px;
    border-radius: 14px;
  }

  .dashboard .filter-actions {
    grid-template-columns: 1fr;
  }

  .dashboard input,
  .dashboard select,
  .dashboard textarea {
    min-height: 44px;
    font-size: 13px;
  }

  .dashboard .main h1 {
    font-size: 24px;
  }
}

/* =========================
   Light Footer
========================= */
.site-footer {
  background: linear-gradient(135deg, #f4cfca 0%, #f8e0dc 48%, #fff7f8 100%);
  color: var(--text);
  border-top: 1px solid rgba(185, 144, 61, 0.22);
}

.footer-main {
  grid-template-columns: 1.35fr 0.8fr 1fr;
  align-items: start;
}

.footer-brand p {
  color: var(--text);
}

.footer-col h3 {
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  color: var(--muted);
  font-weight: 600;
}

.footer-col a:hover {
  color: var(--wine);
}

.footer-col p i {
  color: var(--gold);
}

.footer-col .footer-social a,
.footer-social a {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--muted);
  box-shadow: none;
}

.footer-col .footer-social a:hover,
.footer-social a:hover {
  background: var(--gold);
  color: white;
  box-shadow: 0 12px 24px rgba(185, 144, 61, 0.22);
}

.footer-bottom {
  border-top: 1px solid rgba(185, 144, 61, 0.22);
  color: var(--muted);
}

.footer-bottom p {
  width: 100%;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 640px) {
  .site-footer {
    background: linear-gradient(135deg, #f4cfca 0%, #f8e0dc 52%, #fff7f8 100%);
  }
}

/* =========================
   Review Stars Fix
========================= */
.review-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
  margin-top: 16px;
  text-shadow: 0 3px 10px rgba(185, 144, 61, 0.22);
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  padding: 10px 0;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  cursor: pointer;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  text-shadow:
    0 1px 2px rgba(92, 17, 55, 0.28),
    0 4px 10px rgba(185, 144, 61, 0.2);
  transition: color 0.18s ease, transform 0.18s ease, text-shadow 0.18s ease;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
  color: var(yellow);
  text-shadow: 0 6px 16px rgba(185, 144, 61, 0.35);
}

.star-rating label:hover {
  transform: translateY(2px);
}

/* =========================
   Mobile Footer Polish
========================= */
@media (max-width: 640px) {
  .site-footer {
    background: linear-gradient(145deg, #f3ccc7 0%, #f8dfdc 48%, #fff7f8 100%) !important;
    color: var(--text);
    border-top: 1px solid rgba(185, 144, 61, 0.18);
  }

  .footer-main {
    width: min(100% - 28px, 520px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0 16px;
    text-align: center;
  }

  .footer-logo {
    width: 100%;
    margin: 0 auto 8px;
    justify-content: center;
  }

  .footer-logo img {
    width: min(190px, 68vw);
    margin: 0 auto;
  }

  .footer-brand p {
    max-width: 320px;
    margin: 8px auto 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.65;
  }

  .footer-social {
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
  }

  .footer-social a,
  .footer-col .footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(185, 144, 61, 0.72);
    background: rgba(255, 255, 255, 0.36);
    color: var(--wine);
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(185, 144, 61, 0.1);
  }

  .footer-col {
    width: 100%;
  }

  .footer-col h3 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .footer-main>.footer-col:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-main>.footer-col:nth-child(2) h3 {
    flex: 0 0 100%;
  }

  .footer-main>.footer-col:nth-child(2)>a {
    width: auto;
    min-height: 38px;
    margin: 0;
    padding: 9px 14px;
    border: 1px solid rgba(185, 144, 61, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--wine);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(92, 17, 55, 0.06);
  }

  .footer-main>.footer-col:nth-child(2)>a:hover {
    transform: translateY(-2px);
    background: var(--wine);
    color: white;
  }

  .footer-main>.footer-col:nth-child(3) p {
    max-width: 330px;
    min-height: 42px;
    margin: 0 auto 9px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
  }

  .footer-main>.footer-col:nth-child(3) p i {
    width: 24px;
    color: var(--gold);
    text-align: center;
  }

  .footer-bottom {
    width: min(100% - 28px, 520px);
    display: block;
    padding: 13px 0 18px;
    border-top: 1px solid rgba(185, 144, 61, 0.18);
    text-align: center;
  }

  .footer-bottom p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .footer-main {
    width: min(100% - 20px, 520px);
    gap: 18px;
    padding-top: 24px;
  }

  .footer-main>.footer-col:nth-child(2) {
    gap: 8px;
  }

  .footer-main>.footer-col:nth-child(2)>a {
    padding: 8px 11px;
    font-size: 12px;
  }
}


/* =========================
   Modern Header Menu
========================= */
.menu a::after {
  display: none;
}

@media (min-width: 641px) {
  .main-navbar {
    gap: 18px;
  }

  .menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(185, 144, 61, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 14px 34px rgba(92, 17, 55, 0.05);
  }

  .menu a {
    min-height: 38px;
    padding: 9px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--wine);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  }

  .menu a:hover,
  .menu a.active {
    background: var(--pink);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(232, 100, 146, 0.22);
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .top-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 231, 235, 0.96);
    border-bottom: 1px solid rgba(185, 144, 61, 0.16);
    box-shadow: 0 10px 24px rgba(92, 17, 55, 0.07);
    backdrop-filter: blur(12px);
  }

  .top-bar {
    display: none !important;
  }

  .main-navbar {
    width: 100%;
    min-height: 0;
    padding: 12px 14px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    justify-items: stretch;
    gap: 10px;
  }

  .logo {
    width: auto;
    order: 1;
    justify-content: flex-start;
  }

  .logo img {
    width: min(178px, calc(100vw - 92px));
    max-width: 100%;
  }

  .mobile-menu-toggle {
    order: 2;
    width: 46px;
    height: 46px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(185, 144, 61, 0.34);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 24px rgba(92, 17, 55, 0.1);
  }

  .mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: var(--wine);
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-navbar.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .main-navbar.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .main-navbar.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-actions .small-link {
    display: none !important;
  }

  .header-actions .nav-btn {
    width: 100%;
    min-height: 46px;
    border-radius: 18px;
    font-size: 15px;
    letter-spacing: 0.4px;
    box-shadow: 0 16px 28px rgba(232, 100, 146, 0.22);
  }

  .menu {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
    padding: 12px;
    display: none !important;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    border: 1px solid rgba(185, 144, 61, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 38px rgba(92, 17, 55, 0.11);
  }

  .main-navbar.menu-open .menu {
    display: grid !important;
  }

  .menu a {
    min-height: 43px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 100, 146, 0.16);
    border-radius: 15px;
    background: #fff8fa;
    color: var(--wine);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 8px 18px rgba(92, 17, 55, 0.04);
  }

  .menu a.active,
  .menu a:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: white;
    box-shadow: 0 10px 22px rgba(232, 100, 146, 0.2);
  }
}

@media (max-width: 360px) {
  .main-navbar.menu-open .menu {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Admin Review Rating
========================= */
.admin-rating {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--gold);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow: 0 3px 10px rgba(185, 144, 61, 0.28);
}

.dashboard table td .admin-rating {
  max-width: 120px;
}

@media (max-width: 640px) {
  .admin-rating {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
}

/* =========================
   Modern Footer Links
========================= */
.footer-links-col {
  min-width: 0;
}

.footer-links {
  width: min(100%, 250px);
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-col .footer-links a {
  min-height: 44px;
  margin: 0;
  padding: 10px 12px 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(185, 144, 61, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(92, 17, 55, 0.05);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.footer-links a i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(185, 144, 61, 0.14);
  color: var(--gold);
  font-size: 12px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover,
.footer-col .footer-links a:hover {
  border-color: var(--wine);
  background: var(--wine);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(92, 17, 55, 0.14);
}

.footer-links a:hover i {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .footer-links {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .footer-links {
    width: min(100%, 360px);
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 0 auto;
  }

  .footer-links a,
  .footer-col .footer-links a {
    min-height: 42px;
    padding: 9px 10px 9px 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    box-shadow: none;
  }

  .footer-links a i {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Final admin services mobile card rail */
@media (max-width: 760px) {
  body.admin-services-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard,
  .admin-services-page .main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard-card-scroll {
    width: 100% !important;
    max-width: 100% !important;
    padding: 4px 0 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 2px;
    box-sizing: border-box !important;
  }

  .admin-services-page .dashboard-card-scroll::-webkit-scrollbar {
    height: 0;
  }

  .admin-services-page .dashboard-card-scroll {
    scrollbar-width: none;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table,
  .admin-services-page .dashboard-card-scroll .dashboard-card-table tbody {
    width: max-content !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    gap: 14px !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table .table-heading-row {
    display: none !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table tr {
    flex: 0 0 min(82vw, 330px) !important;
    width: min(82vw, 330px) !important;
    min-width: min(82vw, 330px) !important;
    max-width: min(82vw, 330px) !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table td {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr) !important;
  }

  .admin-services-page .dashboard-card-scroll .service-actions-cell {
    display: block !important;
  }

  .admin-services-page .dashboard-card-scroll .service-actions-cell::before {
    display: block !important;
    margin-bottom: 8px;
  }

  .admin-services-page .service-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .admin-services-page .service-action {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .admin-services-page .service-action.edit {
    background: #ffe7ed;
    color: var(--wine);
  }

  .admin-services-page .service-action.delete {
    background: rgba(185, 24, 24, 0.1);
    color: #9f1d1d;
  }
}

/* Final override: Admin services cards on mobile */
@media (max-width: 760px) {
  body.admin-services-page {
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard,
  .admin-services-page .main {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard-card-scroll {
    width: 100% !important;
    max-width: 100% !important;
    padding: 4px 0 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 2px;
    box-sizing: border-box !important;
  }

  .admin-services-page .dashboard-card-scroll::-webkit-scrollbar {
    height: 0;
  }

  .admin-services-page .dashboard-card-scroll {
    scrollbar-width: none;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table,
  .admin-services-page .dashboard-card-scroll .dashboard-card-table tbody {
    width: max-content !important;
    min-width: 0 !important;
    max-width: none !important;
    display: flex !important;
    gap: 14px !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table .table-heading-row {
    display: none !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table tr {
    flex: 0 0 min(82vw, 330px) !important;
    width: min(82vw, 330px) !important;
    min-width: min(82vw, 330px) !important;
    max-width: min(82vw, 330px) !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table td {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(94px, 36%) 1fr !important;
  }
}

/* =========================
   Admin Services Mobile Cards
========================= */
@media (max-width: 760px) {
  body.admin-services-page {
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard,
  .admin-services-page .main {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard-card-scroll {
    width: 100% !important;
    max-width: 100% !important;
    padding: 4px 0 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 2px;
    box-sizing: border-box !important;
  }

  .admin-services-page .dashboard-card-scroll::-webkit-scrollbar {
    height: 0;
  }

  .admin-services-page .dashboard-card-scroll {
    scrollbar-width: none;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table,
  .admin-services-page .dashboard-card-scroll .dashboard-card-table tbody {
    width: max-content !important;
    min-width: 0 !important;
    max-width: none !important;
    display: flex !important;
    gap: 14px !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table .table-heading-row {
    display: none !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table tr {
    flex: 0 0 min(82vw, 330px) !important;
    width: min(82vw, 330px) !important;
    min-width: min(82vw, 330px) !important;
    max-width: min(82vw, 330px) !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table td {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(94px, 36%) 1fr !important;
  }
}

/* =========================
   Admin Services Mobile Stack
========================= */
@media (max-width: 760px) {
  .admin-services-page .dashboard-card-scroll {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table,
  .admin-services-page .dashboard-card-scroll .dashboard-card-table tbody,
  .admin-services-page .dashboard-card-scroll .dashboard-card-table tr,
  .admin-services-page .dashboard-card-scroll .dashboard-card-table td {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table {
    min-width: 0 !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table tr {
    flex: none !important;
    margin: 0 0 14px !important;
    scroll-snap-align: none !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table td {
    display: grid !important;
    grid-template-columns: minmax(94px, 36%) 1fr !important;
  }
}

/* =========================
   Modern Service Cards
========================= */
.services-grid .service-card,
.home-services-grid .service-card {
  overflow: hidden;
  padding: 0;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
}

.services-grid .service-image-blob,
.home-services-grid .service-image-blob {
  width: 100%;
  height: 210px;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #fde1e8, #fff7fa);
  overflow: hidden;
  display: block;
}

.services-grid .service-image-blob img,
.home-services-grid .service-image-blob img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  display: block;
}

.services-grid .service-image-blob.is-placeholder,
.home-services-grid .service-image-blob.is-placeholder {
  display: grid;
  place-items: center;
  padding: 22px;
}

.services-grid .service-image-blob.is-placeholder img,
.home-services-grid .service-image-blob.is-placeholder img {
  width: min(78%, 230px);
  height: auto;
  max-height: 145px;
  object-fit: contain;
}

.services-grid .service-card h3,
.home-services-grid .service-card h3 {
  width: calc(100% - 48px);
  min-height: 68px;
  margin: 24px 24px 10px;
  font-size: 26px;
  line-height: 1.22;
  text-align: left;
}

.services-grid .service-card p,
.home-services-grid .service-card p {
  width: calc(100% - 48px);
  min-height: 86px;
  margin: 0 24px 18px;
  line-height: 1.7;
  text-align: left;
}

.services-grid .service-meta,
.home-services-grid .service-meta {
  width: calc(100% - 48px);
  margin: auto 24px 20px;
  justify-content: flex-start;
  gap: 10px;
}

.services-grid .service-days-badge,
.home-services-grid .service-days-badge {
  max-width: 100%;
  border: 1px solid rgba(185, 144, 61, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: var(--wine);
  line-height: 1.2;
  white-space: normal;
}

@media (min-width: 641px) {

  .services-grid .service-meta,
  .home-services-grid .service-meta {
    width: calc(100% - 36px);
    margin-inline: 18px;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .services-grid .service-meta span,
  .home-services-grid .service-meta span {
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .services-grid .service-days-badge,
  .home-services-grid .service-days-badge {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }
}

.services-grid .service-card-btn,
.home-services-grid .service-card-btn {
  width: calc(100% - 48px);
  margin: 0 24px 24px;
}

@media (max-width: 900px) {

  .services-grid .service-image-blob,
  .home-services-grid .service-image-blob {
    height: 185px;
  }
}

@media (max-width: 640px) {

  .services-grid .service-card,
  .home-services-grid .service-card {
    padding: 0 !important;
  }

  .services-grid .service-image-blob,
  .home-services-grid .service-image-blob {
    width: 100%;
    height: 170px;
    margin: 0;
  }

  .services-grid .service-card h3,
  .home-services-grid .service-card h3 {
    min-height: auto;
    margin: 18px 18px 8px;
    font-size: 23px;
  }

  .services-grid .service-card p,
  .home-services-grid .service-card p {
    width: calc(100% - 36px);
    min-height: 76px;
    margin: 0 18px 16px;
  }

  .services-grid .service-meta,
  .home-services-grid .service-meta,
  .services-grid .service-card-btn,
  .home-services-grid .service-card-btn {
    width: calc(100% - 36px);
    margin-inline: 18px;
  }

  .services-grid .service-card-btn,
  .home-services-grid .service-card-btn {
    margin-bottom: 18px;
  }
}

/* Mobile polish for modern service cards */
@media (max-width: 640px) {
  .services-showcase {
    padding-top: 34px;
  }

  .services-grid,
  .home-services-grid {
    gap: 16px !important;
    padding: 4px 4px 18px !important;
  }

  .services-grid .service-card,
  .home-services-grid .service-card {
    flex: 0 0 min(82vw, 320px) !important;
    width: min(82vw, 320px) !important;
    min-width: min(82vw, 320px) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .services-grid .service-card .service-image-blob,
  .home-services-grid .service-card .service-image-blob {
    width: 100% !important;
    height: 168px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    padding: 0 !important;
  }

  .services-grid .service-card .service-image-blob.is-placeholder,
  .home-services-grid .service-card .service-image-blob.is-placeholder {
    display: grid !important;
    place-items: center !important;
    padding: 18px !important;
  }

  .services-grid .service-card .service-image-blob img,
  .home-services-grid .service-card .service-image-blob img {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: cover !important;
  }

  .services-grid .service-card .service-image-blob.is-placeholder img,
  .home-services-grid .service-card .service-image-blob.is-placeholder img {
    width: min(72%, 210px) !important;
    height: auto !important;
    max-height: 120px !important;
    object-fit: contain !important;
  }

  .services-grid .service-card h3,
  .home-services-grid .service-card h3 {
    width: calc(100% - 36px) !important;
    margin: 18px 18px 8px !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    text-align: left !important;
  }

  .services-grid .service-card p,
  .home-services-grid .service-card p {
    width: calc(100% - 36px) !important;
    min-height: 72px !important;
    margin: 0 18px 14px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }

  .services-grid .service-meta,
  .home-services-grid .service-meta {
    width: calc(100% - 36px) !important;
    margin: auto 18px 16px !important;
    justify-content: flex-start !important;
  }

  .services-grid .service-meta span,
  .home-services-grid .service-meta span {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }

  .services-grid .service-days-badge,
  .home-services-grid .service-days-badge {
    padding-inline: 11px !important;
    font-size: 12px !important;
  }

  .services-grid .service-card-btn,
  .home-services-grid .service-card-btn {
    width: calc(100% - 36px) !important;
    min-height: 46px !important;
    margin: 0 18px 18px !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
  }
}

/* =========================
   Dashboard Mobile Cards + Labels
========================= */
.dashboard .auto-field-label {
  display: block;
  margin: 0 0 7px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.dashboard .auto-field-wrap {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dashboard .auto-field-wrap input,
.dashboard .auto-field-wrap select,
.dashboard .auto-field-wrap textarea,
.dashboard .auto-field-wrap .date-placeholder-wrap {
  width: 100%;
}

.dashboard .form-grid>.auto-field-label,
.dashboard .filter-grid>.auto-field-label {
  margin-bottom: -5px;
}

@media (max-width: 760px) {
  .dashboard .dashboard-card-scroll {
    width: calc(100vw - 28px);
    max-width: 100%;
    padding: 4px 0 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
  }

  .dashboard .dashboard-card-scroll::-webkit-scrollbar {
    height: 0;
  }

  .dashboard .dashboard-card-scroll {
    scrollbar-width: none;
  }

  .dashboard .dashboard-card-scroll .dashboard-card-table,
  .dashboard .dashboard-card-scroll .dashboard-card-table tbody {
    width: max-content;
    min-width: 0;
    display: flex !important;
    gap: 14px;
  }

  .dashboard .dashboard-card-scroll .dashboard-card-table tr {
    flex: 0 0 min(82vw, 330px);
    width: min(82vw, 330px) !important;
    min-width: min(82vw, 330px);
    margin: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .dashboard .dashboard-card-scroll .dashboard-card-table .table-heading-row {
    display: none !important;
  }

  .dashboard .dashboard-card-scroll .dashboard-card-table td {
    width: 100% !important;
  }

  .dashboard .dashboard-card-scroll .dashboard-card-table td[data-label="Action"],
  .dashboard .dashboard-card-scroll .dashboard-card-table td[data-label="Actions"] {
    margin-top: 4px;
  }

  .dashboard .auto-field-label {
    margin-top: 2px;
    margin-bottom: 6px;
    font-size: 13px;
  }

  .dashboard .form-grid>input,
  .dashboard .form-grid>select,
  .dashboard .form-grid>textarea,
  .dashboard .filter-grid>input,
  .dashboard .filter-grid>select,
  .dashboard .filter-grid>textarea,
  .dashboard .filter-grid>.date-placeholder-wrap {
    margin-top: -2px;
  }
}

/* =========================
   Mobile Hero Buttons
========================= */
@media (max-width: 640px) {
  .hero .btns {
    width: min(100%, 340px);
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    align-items: stretch;
  }

  .hero .btns .btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 11px 10px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.7px;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .hero .btns {
    width: 100%;
    gap: 8px;
  }

  .hero .btns .btn {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 11px;
  }
}

/* =========================
   Mobile Header Cleanup
========================= */
@media (max-width: 640px) {
  .top-header .header-actions {
    display: none !important;
  }
}

/* =========================
   Mobile Reviews Carousel
========================= */
@media (max-width: 640px) {
  .reviews-grid {
    width: 100%;
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 14px;
  }

  .reviews-grid::-webkit-scrollbar {
    height: 0;
  }

  .reviews-grid {
    scrollbar-width: none;
  }

  .reviews-grid .review-card {
    flex: 0 0 min(78vw, 310px);
    width: min(78vw, 310px);
    min-width: min(78vw, 310px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 24px 20px;
  }

  .reviews-grid .review-card h3 {
    font-size: 22px;
  }

  .reviews-grid .review-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 380px) {
  .reviews-grid .review-card {
    flex-basis: 82vw;
    width: 82vw;
    min-width: 82vw;
  }
}

/* =========================
   Compact Mobile Footer Links
========================= */
@media (max-width: 640px) {
  .footer-links-col h3 {
    margin-bottom: 8px;
  }

  .footer-links {
    width: 100%;
    margin: 0 auto;
    padding: 0 2px 8px;
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .footer-links::-webkit-scrollbar {
    height: 0;
  }

  .footer-links a,
  .footer-col .footer-links a {
    flex: 0 0 auto;
    min-height: 34px;
    min-width: 0;
    margin: 0;
    padding: 8px 13px;
    border: 1px solid rgba(185, 144, 61, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    color: var(--wine);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .footer-links a:hover,
  .footer-col .footer-links a:hover {
    background: var(--wine);
    color: white;
    transform: none;
    box-shadow: none;
  }
}

/* =========================
   Dashboard Profile System
========================= */
.sidebar-profile,
.sidebar a.sidebar-profile {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.sidebar-profile:hover,
.sidebar-profile.active {
  background: rgba(255, 255, 255, 0.16);
}

.sidebar-avatar,
.profile-avatar-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-avatar {
  width: 48px;
  height: 48px;
  font-size: 15px;
}

.sidebar-avatar img,
.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-profile strong,
.sidebar-profile small {
  display: block;
  line-height: 1.25;
}

.sidebar-profile strong {
  font-size: 14px;
}

.sidebar-profile small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.profile-form {
  max-width: 980px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: start;
}

.profile-preview {
  min-height: 100%;
  padding: 26px 18px;
  border: 1px solid rgba(185, 144, 61, 0.16);
  border-radius: 18px;
  background: rgba(255, 231, 237, 0.45);
  text-align: center;
}

.profile-avatar-large {
  width: 124px;
  height: 124px;
  margin: 0 auto 16px;
  font-size: 34px;
  box-shadow: 0 18px 42px rgba(92, 17, 55, 0.16);
}

.profile-preview strong,
.profile-preview span {
  display: block;
}

.profile-preview strong {
  color: var(--wine);
  font-size: 20px;
  line-height: 1.25;
}

.profile-preview span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profile-fields {
  align-items: end;
}

@media (max-width: 760px) {

  .dashboard .sidebar-profile,
  .dashboard .sidebar a.sidebar-profile {
    flex: 0 0 auto;
    min-width: 190px;
    min-height: 58px;
    margin: 0;
    padding: 8px 10px;
    grid-template-columns: 38px 1fr;
    border-radius: 16px;
  }

  .dashboard .sidebar-avatar {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .dashboard .sidebar-profile strong {
    font-size: 12px;
  }

  .dashboard .sidebar-profile small {
    font-size: 10px;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-preview {
    padding: 20px 16px;
  }

  .profile-avatar-large {
    width: 104px;
    height: 104px;
    font-size: 28px;
  }
}

/* =========================
   Admin Services Mobile Fix
========================= */
@media (max-width: 760px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .dashboard {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .dashboard .sidebar {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .dashboard .main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .dashboard form.table-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .dashboard .form-grid,
  .dashboard .filter-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .dashboard .form-grid>*,
  .dashboard .filter-grid>*,
  .dashboard .auto-field-wrap {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .dashboard input,
  .dashboard select,
  .dashboard textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .dashboard .days-picker {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .dashboard .days-picker label {
    max-width: 100%;
    display: inline-flex;
  }

  .dashboard .days-picker span {
    max-width: 100%;
    white-space: nowrap;
  }
}

/* =========================
   Mobile Hero Text Polish
========================= */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 30px, 430px);
    min-height: auto;
    padding: 64px 0 48px;
  }

  .hero-grid>div {
    max-width: 100%;
  }

  .hero .eyebrow {
    max-width: 100%;
    margin: 0 auto 18px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 4px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 340px;
    margin: 0 auto;
    font-size: 36px;
    line-height: 1.12;
    text-align: center;
  }

  .checks {
    width: min(100%, 342px);
    margin: 28px auto 0;
    gap: 11px;
  }

  .checks p {
    min-height: 34px;
    gap: 11px;
    justify-content: flex-start;
    color: var(--wine);
    font-size: 15px;
    line-height: 1.35;
    text-align: left;
  }

  .checks i {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .hero .btns {
    width: min(100%, 342px);
    margin-top: 28px;
  }
}

@media (max-width: 380px) {
  .hero-grid {
    width: min(100% - 24px, 390px);
    padding: 54px 0 42px;
  }

  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 3.2px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: 32px;
  }

  .checks {
    width: min(100%, 314px);
    margin-top: 24px;
  }

  .checks p {
    font-size: 14px;
  }

  .hero .btns {
    width: min(100%, 314px);
  }
}

/* =========================
   Mobile Hero Left Align
========================= */
@media (max-width: 640px) {
  .hero-grid {
    justify-content: flex-start;
    text-align: left;
  }

  .hero .eyebrow {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .hero h1 {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .checks {
    margin-right: 0;
    margin-left: 0;
  }

  .checks p {
    justify-content: flex-start;
    text-align: left;
  }

  .hero .btns {
    margin-right: 0;
    margin-left: 0;
  }
}

/* =========================
   Reviews Page List
========================= */
.reviews-list-title {
  margin-top: 64px;
  margin-bottom: 28px;
}

.reviews-page-grid {
  align-items: stretch;
}

.reviews-page-grid .review-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.reviews-page-grid .review-card p {
  flex: 1;
}

@media (min-width: 641px) {
  .reviews-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-list-title {
    margin-top: 42px;
    margin-bottom: 18px;
  }

  .reviews-list-title h2 {
    font-size: 30px;
  }

  .reviews-page-grid {
    margin-top: 0;
  }

  .reviews-page-grid .review-card {
    min-height: 220px;
  }
}

/* =========================
   Mobile Services Carousel
========================= */
@media (max-width: 640px) {

  .services-grid,
  .home-services-grid {
    width: 100%;
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 14px;
    text-align: center;
  }

  .services-grid::-webkit-scrollbar,
  .home-services-grid::-webkit-scrollbar {
    height: 0;
  }

  .services-grid {
    scrollbar-width: none;
  }

  .services-grid .service-card,
  .home-services-grid .service-card {
    flex: 0 0 min(78vw, 310px);
    width: min(78vw, 310px);
    min-width: min(78vw, 310px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 22px 18px;
  }

  .services-grid .service-card:hover,
  .home-services-grid .service-card:hover {
    transform: none;
  }

  .services-grid .service-image-blob,
  .home-services-grid .service-image-blob {
    width: 126px;
    height: 112px;
    margin-bottom: 18px;
  }

  .services-grid .service-card h3,
  .home-services-grid .service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .services-grid .service-card p,
  .home-services-grid .service-card p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 380px) {

  .services-grid .service-card,
  .home-services-grid .service-card {
    flex-basis: 82vw;
    width: 82vw;
    min-width: 82vw;
  }
}

/* =========================
   Footer Links Desktop Reset
========================= */
.footer-links {
  width: auto;
  display: block;
}

.footer-links a,
.footer-col .footer-links a {
  min-height: 0;
  margin: 0 0 14px;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  box-shadow: none;
  transform: none;
}

.footer-links a:hover,
.footer-col .footer-links a:hover {
  background: transparent;
  color: var(--wine);
  transform: translateX(2px);
  box-shadow: none;
}

.footer-links a::after {
  content: none;
}

@media (max-width: 640px) {
  .footer-links {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    border: 1px solid rgba(185, 144, 61, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.28);
  }

  .footer-links a,
  .footer-col .footer-links a {
    min-height: 42px;
    margin: 0;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 144, 61, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--wine);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 8px 18px rgba(92, 17, 55, 0.05);
  }

  .footer-links a:hover,
  .footer-col .footer-links a:hover {
    border-color: var(--wine);
    background: var(--wine);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(92, 17, 55, 0.12);
  }
}

@media (max-width: 360px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Absolute final override: admin services mobile rail */
@media (max-width: 760px) {
  body.admin-services-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard,
  .admin-services-page .main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  .admin-services-page .dashboard-card-scroll {
    width: 100% !important;
    max-width: 100% !important;
    padding: 4px 0 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 2px;
    box-sizing: border-box !important;
  }

  .admin-services-page .dashboard-card-scroll::-webkit-scrollbar {
    height: 0;
  }

  .admin-services-page .dashboard-card-scroll {
    scrollbar-width: none;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table,
  .admin-services-page .dashboard-card-scroll .dashboard-card-table tbody {
    width: max-content !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    gap: 14px !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table .table-heading-row {
    display: none !important;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table tr {
    flex: 0 0 min(82vw, 330px) !important;
    width: min(82vw, 330px) !important;
    min-width: min(82vw, 330px) !important;
    max-width: min(82vw, 330px) !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always;
  }

  .admin-services-page .dashboard-card-scroll .dashboard-card-table td {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr) !important;
  }

  .admin-services-page .dashboard-card-scroll .service-actions-cell {
    display: block !important;
  }

  .admin-services-page .dashboard-card-scroll .service-actions-cell::before {
    display: block !important;
    margin-bottom: 8px;
  }

  .admin-services-page .service-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .admin-services-page .service-action {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .admin-services-page .service-action.edit {
    background: #ffe7ed;
    color: var(--wine);
  }

  .admin-services-page .service-action.delete {
    background: rgba(185, 24, 24, 0.1);
    color: #9f1d1d;
  }
}

@supports selector(html:has(body.admin-services-page)) {
  html:has(body.admin-services-page) {
    max-width: 100%;
    overflow-x: hidden !important;
  }
}

/* Public bilingual support */
.lang-switch,
.mobile-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(105, 18, 62, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0;
}

.lang-switch:hover,
.mobile-lang-switch:hover {
  background: var(--pink);
  color: white;
}

.mobile-lang-switch {
  display: none;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .top-bar-left,
html[dir="rtl"] .top-bar-right,
html[dir="rtl"] .menu,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .btns,
html[dir="rtl"] .checks p,
html[dir="rtl"] .feature,
html[dir="rtl"] .contact-info-list>div,
html[dir="rtl"] .footer-social,
html[dir="rtl"] .service-meta,
html[dir="rtl"] .not-found-actions {
  direction: rtl;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .hero .eyebrow,
html[dir="rtl"] .hero .checks,
html[dir="rtl"] .hero .btns {
  text-align: right;
}

html[dir="rtl"] .hero .btns {
  justify-content: flex-start;
}

html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-brand {
  text-align: right;
}

html[dir="rtl"] .footer-bottom p,
html[dir="rtl"] .section-title,
html[dir="rtl"] .page-hero {
  text-align: center;
}

html[dir="rtl"] .fa-arrow-right {
  transform: rotate(180deg);
}

@media (max-width: 760px) {
  .mobile-lang-switch {
    display: inline-flex;
    order: 2;
  }

  .top-header .header-actions .lang-switch {
    display: none !important;
  }

  html[dir="rtl"] .hero .container,
  html[dir="rtl"] .hero h1,
  html[dir="rtl"] .hero .eyebrow,
  html[dir="rtl"] .hero .checks,
  html[dir="rtl"] .hero .btns {
    text-align: right !important;
  }
}

.anti-spam-field {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.anti-spam-field label,
.anti-spam-field input {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Arabic hero and mobile language controls */
@media (max-width: 760px) {
  .main-navbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: stretch !important;
  }

  .main-navbar .logo {
    flex: 1;
    justify-self: end;
    width: 44px !important;
    min-width: 44px;
    order: 1 !important;
  }

  .main-navbar mobile-lang-switch {
    flex: 1;
    justify-self: start;
    order: 2 !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0;
    background: #fff9f7;
    box-shadow: 0 8px 20px rgba(105, 18, 62, 0.12);
  }

  .main-navbar mobile-menu-toggle {
    width: 44px !important;
    min-width: 104px !important;
    height: 44px !important;
    min-height: 24px !important;
    flex: 1;
    justify-self: start;
    order: 3 !important;
  }

  html[dir="rtl"] .hero {
    min-height: calc(100vh - 104px);
    display: flex;
    align-items: center;
  }

  html[dir="rtl"] .hero .bg-image {
    object-position: 36% center;
  }

  html[dir="rtl"] .hero::after {
    background: rgba(255, 239, 243, 0.58);
  }

  html[dir="rtl"] .hero .container {
    width: min(100% - 34px, 520px);
    margin: 0 auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  html[dir="rtl"] .hero-grid {
    display: block;
  }

  html[dir="rtl"] .hero h1 {
    max-width: 350px;
    margin: 0 0 22px auto;
    font-size: clamp(38px, 12vw, 56px) !important;
    line-height: 1.12 !important;
    text-align: right !important;
  }

  html[dir="rtl"] .hero .eyebrow {
    max-width: 350px;
    margin: 0 0 18px auto;
    font-size: 13px;
    letter-spacing: 4px;
    text-align: right !important;
  }

  html[dir="rtl"] .hero .checks {
    max-width: 350px;
    margin: 0 0 24px auto;
  }

  html[dir="rtl"] .hero .checks p {
    justify-content: flex-start;
    gap: 12px;
    font-size: clamp(18px, 5.2vw, 23px);
    line-height: 1.35;
    text-align: right !important;
  }

  html[dir="rtl"] .hero .btns {
    max-width: 350px;
    margin: 0 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  html[dir="rtl"] .hero .btns .btn {
    min-height: 54px;
    padding: 12px 10px;
    font-size: 13px;
    white-space: normal;
  }
}

@media (max-width: 420px) {

  html[dir="rtl"] .hero h1,
  html[dir="rtl"] .hero .eyebrow,
  html[dir="rtl"] .hero .checks,
  html[dir="rtl"] .hero .btns {
    max-width: 320px;
  }

  html[dir="rtl"] .hero h1 {
    font-size: clamp(34px, 11vw, 46px) !important;
  }
}

/* Final mobile header alignment */
/* @media (max-width: 760px) {
  .top-header .main-navbar {
    grid-template-columns: minmax(0, 1fr) 44px 46px !important;
    align-items: center !important;
    padding: 10px 14px !important;
    min-height: 74px !important;
  }

  .top-header .main-navbar .logo {
    width: auto !important;
    height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    align-self: center !important;
    line-height: 0 !important;
  }

  .top-header .main-navbar .logo img {
    width: auto !important;
    height: 54px !important;
    max-width: min(190px, calc(100vw - 126px)) !important;
    object-fit: contain !important;
    display: block !important;
  }

  .top-header .mobile-lang-switch,
  .top-header .mobile-menu-toggle {
    align-self: center !important;
    margin: 0 !important;
    transform: none !important;
  }

  .top-header .mobile-lang-switch {
    width: 44px !important;
    height: 44px !important;
  }

  .top-header .mobile-menu-toggle {
    width: 46px !important;
    height: 46px !important;
  }
} */

@media (max-width: 390px) {

  .top-header .main-navbar .logo,
  .top-header .main-navbar .logo img {
    height: 50px !important;
  }
}

/* Final RTL text direction override */
html[dir="rtl"],
html[dir="rtl"] body {
  direction: rtl !important;
}

html[dir="rtl"] p,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] li,
html[dir="rtl"] label,
html[dir="rtl"] small,
html[dir="rtl"] span,
html[dir="rtl"] .about-content,
html[dir="rtl"] .contact-info-card,
html[dir="rtl"] .contact-info-list,
html[dir="rtl"] .service-card,
html[dir="rtl"] .review-card,
html[dir="rtl"] .form-box,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-brand {
  direction: rtl !important;
  unicode-bidi: plaintext;
}

html[dir="rtl"] .about-content,
html[dir="rtl"] .contact-info-card,
html[dir="rtl"] .contact-info-list,
html[dir="rtl"] .form-box,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-brand {
  text-align: right !important;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="url"],
html[dir="rtl"] input[type="number"],
html[dir="rtl"] input[type="date"],
html[dir="rtl"] input[type="time"] {
  direction: ltr !important;
  text-align: right !important;
}

html[dir="rtl"] .section-title,
html[dir="rtl"] .page-hero,
html[dir="rtl"] .services-action,
html[dir="rtl"] .reviews-list-title,
html[dir="rtl"] .home-services-title,
html[dir="rtl"] .reviews-home-title,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .not-found-card {
  text-align: center !important;
}

/* RTL service cards */
html[dir="rtl"] .service-card {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .service-card h3,
html[dir="rtl"] .service-card p {
  direction: rtl !important;
  text-align: right !important;
  unicode-bidi: plaintext;
}

html[dir="rtl"] .service-card .service-meta {
  direction: rtl !important;
  justify-content: flex-start !important;
  flex-direction: row-reverse;
}

html[dir="rtl"] .service-card .service-meta span,
html[dir="rtl"] .service-card .service-days-badge {
  direction: rtl !important;
  text-align: right !important;
  unicode-bidi: plaintext;
}

html[dir="rtl"] .service-card .service-card-btn {
  direction: rtl !important;
  text-align: center !important;
}

/* RTL feature separators */
@media (min-width: 761px) {
  html[dir="rtl"] .features {
    direction: rtl !important;
  }

  html[dir="rtl"] .feature {
    border-right: none !important;
    border-left: 1px solid rgba(92, 17, 55, 0.16) !important;
    flex-direction: row-reverse;
    text-align: right !important;
  }

  html[dir="rtl"] .feature:last-child {
    border-left: none !important;
  }

  html[dir="rtl"] .feature h4,
  html[dir="rtl"] .feature p {
    text-align: right !important;
  }
}

@media (max-width: 760px) {
  html[dir="rtl"] .feature {
    border-left: none !important;
    border-right: none !important;
  }
}

/* Contact RTL overflow fix */
html[dir="rtl"]:has(body.contact-page),
html[dir="rtl"] body.contact-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

html[dir="rtl"] body.contact-page .top-header,
html[dir="rtl"] body.contact-page .page-hero,
html[dir="rtl"] body.contact-page .contact-section,
html[dir="rtl"] body.contact-page .map-section,
html[dir="rtl"] body.contact-page .site-footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

html[dir="rtl"] body.contact-page .container,
html[dir="rtl"] body.contact-page .contact-grid,
html[dir="rtl"] body.contact-page .contact-info-card,
html[dir="rtl"] body.contact-page .contact-form,
html[dir="rtl"] body.contact-page .map-box,
html[dir="rtl"] body.contact-page .form-grid,
html[dir="rtl"] body.contact-page .form-group {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

html[dir="rtl"] body.contact-page .contact-info-list>div,
html[dir="rtl"] body.contact-page .contact-info-list span,
html[dir="rtl"] body.contact-page .contact-info-card p,
html[dir="rtl"] body.contact-page .contact-info-card h2 {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

html[dir="rtl"] body.contact-page .map-box iframe {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 760px) {
  html[dir="rtl"] body.contact-page .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
  }

  html[dir="rtl"] body.contact-page .contact-info-card,
  html[dir="rtl"] body.contact-page .contact-form {
    padding-inline: 20px;
  }
}

/* Mobile contact RTL stable layout */
@media (max-width: 760px) {
  html[dir="rtl"] body.contact-page {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  html[dir="rtl"] body.contact-page .contact-section,
  html[dir="rtl"] body.contact-page .map-section {
    overflow-x: hidden;
  }

  html[dir="rtl"] body.contact-page .contact-section>.container,
  html[dir="rtl"] body.contact-page .map-section>.container {
    width: calc(100% - 28px) !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html[dir="rtl"] body.contact-page .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  html[dir="rtl"] body.contact-page .contact-info-card,
  html[dir="rtl"] body.contact-page .contact-form,
  html[dir="rtl"] body.contact-page .map-box {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  html[dir="rtl"] body.contact-page .contact-form .form-grid {
    grid-template-columns: 1fr !important;
  }

  html[dir="rtl"] body.contact-page .contact-form input,
  html[dir="rtl"] body.contact-page .contact-form textarea,
  html[dir="rtl"] body.contact-page .contact-form select {
    width: 100%;
    max-width: 100%;
  }

  html[dir="rtl"] body.contact-page .contact-info-list>div {
    align-items: flex-start;
  }

  html[dir="rtl"] body.contact-page .contact-info-list span,
  html[dir="rtl"] body.contact-page .contact-info-list strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  html[dir="rtl"] body.contact-page .whatsapp-float {
    right: auto !important;
    left: 18px !important;
  }

  html[dir="rtl"] body.contact-page .footer-links {
    direction: rtl !important;
    overflow-x: hidden !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  html[dir="rtl"] body.contact-page .footer-links a {
    transform: none !important;
  }
}

/* Modern service discount pricing */
.service-card .service-price-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(213, 175, 55, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 246, 248, 0.95), rgba(250, 230, 226, 0.75));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card .discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e85d86, #bd3563);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(189, 53, 99, 0.18);
}

.service-card .old-price {
  color: #b88a94;
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.service-card .new-price {
  color: var(--wine);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.service-card .service-meta {
  margin-top: 0;
}

.discount-admin-control {
  display: grid;
  gap: 7px;
}

.discount-admin-control label {
  color: #7a3850;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-discount-badge,
.discount-none {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-discount-badge {
  background: #ffe5ec;
  color: #bd3563;
  border: 1px solid rgba(189, 53, 99, 0.18);
}

.discount-none {
  background: #f8f3ee;
  color: #a28a7c;
  border: 1px solid rgba(162, 138, 124, 0.18);
}

html[dir="rtl"] .service-card .service-price-block {
  direction: rtl;
}

/* Polished discount card override */
.services-grid .service-card,
.home-services-grid .service-card {
  position: relative;
}

.services-grid .service-card .service-price-block,
.home-services-grid .service-card .service-price-block {
  width: calc(100% - 4px);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: auto 0 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.services-grid .service-card .service-details-inline,
.home-services-grid .service-card .service-details-inline {
  width: calc(100% - 48px);
  display: inline-flex;
  margin: -8px 24px 18px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  text-transform: lowercase;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.2s ease;
}

html[dir="rtl"] .services-grid .service-card .service-details-inline,
html[dir="rtl"] .home-services-grid .service-card .service-details-inline {
  text-transform: none;
}

.services-grid .service-card .service-details-inline:hover,
.home-services-grid .service-card .service-details-inline:hover {
  color: #e65f8d;
  text-decoration-color: #e65f8d;
  transform: translateX(4px);
}

html[dir="rtl"] .services-grid .service-card .service-details-inline:hover,
html[dir="rtl"] .home-services-grid .service-card .service-details-inline:hover {
  transform: translateX(-4px);
}

.services-grid .service-card .discount-badge,
.home-services-grid .service-card .discount-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 2;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f113d, #e65f8d);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(111, 17, 61, 0.2);
}

.offer-plan-badge,
.booking-offer-label {
  display: inline-flex;
  width: fit-content;
  margin: 18px 24px 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(230, 95, 141, 0.14);
  color: #d94e81;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.offer-status-badge {
  display: inline-flex;
  width: fit-content;
  margin: 10px 24px 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(111, 17, 61, 0.09);
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.offer-card-unavailable {
  opacity: 0.78;
}

.offer-card-unavailable:hover {
  transform: none;
}

.service-card-btn-disabled,
.service-card-btn-disabled:hover {
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(111, 17, 61, 0.12);
  border-color: rgba(111, 17, 61, 0.08);
  color: rgba(111, 17, 61, 0.58);
}

.offer-card .service-price-block {
  margin-top: auto;
}

.offer-session-summary {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 247, 238, 0.82);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.booking-offer-card {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(230, 95, 141, 0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 236, 243, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 14px 34px rgba(111, 17, 61, 0.08);
}

.booking-offer-card .booking-offer-label {
  margin: 0 0 8px;
}

.booking-offer-card strong {
  display: block;
  color: var(--wine);
  font-size: 18px;
  line-height: 1.35;
}

.booking-offer-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.booking-offer-session-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.booking-offer-session-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}

.booking-offer-price {
  margin-top: 10px;
}

.offer-session-picker {
  padding: 16px;
  border: 1px solid rgba(230, 95, 141, 0.18);
  border-radius: 18px;
  background: rgba(255, 248, 250, 0.78);
}

.offer-session-picker>label {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-weight: 900;
}

.offer-session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.offer-session-field {
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.offer-session-field.is-hidden {
  display: none;
}

.offer-session-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.offer-session-field small {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(230, 95, 141, 0.14);
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.offer-session-field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .offer-session-picker {
    padding: 12px;
  }

  .offer-session-grid {
    grid-template-columns: 1fr;
  }
}

.services-grid .service-card .service-price-chip,
.home-services-grid .service-card .service-price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(111, 17, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(111, 17, 61, 0.06);
}

.services-grid .service-card .old-price,
.home-services-grid .service-card .old-price {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: #a78b94;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.services-grid .service-card .old-price::after,
.home-services-grid .service-card .old-price::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: #e65f8d;
  transform: translateY(-50%);
}

.services-grid .service-card .new-price,
.home-services-grid .service-card .new-price {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: var(--wine);
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.services-grid .service-card .price-currency,
.home-services-grid .service-card .price-currency {
  display: inline-block;
  font-family: inherit;
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: translateY(-0.04em);
  white-space: nowrap;
}

.services-grid .service-card .service-duration-chip,
.home-services-grid .service-card .service-duration-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fde1e8;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.services-grid .service-card .service-meta,
.home-services-grid .service-card .service-meta {
  margin-top: 0;
}

@media (max-width: 640px) {

  .services-grid .service-card .service-price-block,
  .home-services-grid .service-card .service-price-block {
    width: calc(100% - 40px);
    margin-inline: 20px;
  }
}

/* Service details page */
.service-card-actions {
  width: calc(100% - 48px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  margin: 0 24px 24px;
}

.services-grid .service-card-actions .service-card-btn,
.home-services-grid .service-card-actions .service-card-btn {
  width: 100%;
  margin: 0;
  padding-inline: 12px;
}

.service-card-btn-light {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(111, 17, 61, 0.16);
  color: var(--wine);
}

.service-card-btn-light:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

.service-details-page {
  background: linear-gradient(180deg, #fff7f8 0%, #fde9ef 100%);
}

.service-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--wine);
  font-weight: 800;
}

.service-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: stretch;
}

.service-details-media {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #fde1e8, #fff8fa);
  box-shadow: 0 28px 70px rgba(111, 17, 61, 0.12);
}

.service-details-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.service-details-media .service-details-logo-placeholder {
  object-fit: contain;
  padding: 70px;
}

.service-details-discount {
  position: absolute;
  top: 22px;
  inset-inline-start: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f113d, #e65f8d);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(111, 17, 61, 0.2);
}

.service-details-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(111, 17, 61, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(111, 17, 61, 0.08);
}

.service-details-content h1 {
  margin: 8px 0 18px;
  color: var(--wine);
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.03;
}

.service-details-description {
  color: #7f7078;
  font-size: 17px;
  line-height: 1.9;
}

.service-details-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.service-details-meta>div {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(111, 17, 61, 0.08);
  border-radius: 18px;
  background: #fff;
}

.service-details-meta span {
  display: block;
  margin-bottom: 7px;
  color: #aa8692;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-details-meta strong {
  display: block;
  color: var(--wine);
  font-size: 16px;
  line-height: 1.35;
}

.service-details-meta small {
  display: inline-block;
  margin-inline-end: 6px;
  color: #aa8692;
  text-decoration: line-through;
}

.service-details-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .service-details-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-details-media,
  .service-details-media img {
    min-height: 360px;
  }

  .service-details-content {
    padding: 24px;
  }

  .service-details-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-card-actions {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin-inline: 20px;
  }
}

.service-detail-textarea {
  min-height: 150px;
}

/* Service categories */
.service-category-block {
  margin-bottom: 58px;
}

.service-category-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.service-category-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(196, 142, 92, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #e45f90;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.service-category-heading h2 {
  margin: 0;
  color: #5b0830;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.service-category-heading p {
  max-width: 560px;
  margin: 14px auto 0;
  color: #7b6870;
  font-size: 1rem;
  line-height: 1.8;
}

.service-category-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fde1ea;
  color: #6b1239;
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-section-title {
  margin: 0 0 18px;
  color: #5b0830;
  font-size: 1.25rem;
}

.admin-checkline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #ead4dc;
  border-radius: 12px;
  background: #fff7fa;
  color: #5b0830;
  font-weight: 800;
}

.admin-checkline input {
  width: 18px;
  height: 18px;
  accent-color: #e45f90;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-actions .service-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.booking-actions .service-action.edit {
  background: #ffe7ed;
  color: #5b1236;
}

.booking-actions .service-action.delete {
  background: rgba(185, 24, 24, 0.1);
  color: #9f1d1d;
}

.booking-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 700px) {
  .service-category-block {
    margin-bottom: 42px;
  }

  .service-category-heading {
    text-align: start;
    margin-bottom: 20px;
  }

  .service-category-heading h2 {
    font-size: 2rem;
  }

  .service-category-heading p {
    margin-inline: 0;
  }
}


/* =========================
   Dashboard Sidebar Layout Guard
========================= */
@media (min-width: 761px) {
  .dashboard {
    display: grid !important;
    grid-template-columns: 260px minmax(0, 1fr) !important;
    align-items: stretch;
  }

  .dashboard .sidebar {
    width: auto !important;
    max-width: none !important;
    min-height: 100vh !important;
    display: block !important;
    padding: 28px !important;
    overflow: visible !important;
  }

  .dashboard .sidebar-logo {
    width: 100% !important;
    max-width: 190px !important;
    flex-basis: auto !important;
    margin: 0 auto 32px !important;
  }

  .dashboard .sidebar-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  .dashboard .sidebar a {
    display: block !important;
    width: auto !important;
    margin: 8px 0 !important;
    padding: 12px 10px !important;
    border-radius: 10px !important;
    white-space: normal !important;
  }
}

@media (max-width: 760px) {
  .dashboard .sidebar-nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex: 0 0 auto;
  }
}

/* =========================
   Final Dashboard Sidebar Reset
========================= */
.dashboard {
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr) !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh !important;
  overflow-x: visible !important;
}

.dashboard .sidebar {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 100vh !important;
  display: block !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 28px !important;
  background: var(--wine) !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.dashboard .main {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.dashboard .sidebar-logo {
  width: 100% !important;
  max-width: 190px !important;
  height: auto !important;
  display: block !important;
  flex-basis: auto !important;
  margin: 0 auto 32px !important;
}

.dashboard .sidebar-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  width: 100% !important;
}

.dashboard .sidebar a {
  display: block !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 8px 0 !important;
  padding: 12px 10px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  text-align: left !important;
  flex: none !important;
}

.dashboard .sidebar a.sidebar-site-link,
.dashboard .sidebar a.sidebar-logout-link {
  text-align: center !important;
}

@media (max-width: 760px) {
  .dashboard {
    grid-template-columns: 230px minmax(0, 1fr) !important;
    overflow-x: auto !important;
  }

  .dashboard .sidebar {
    position: static !important;
    width: auto !important;
    max-width: none !important;
    overflow: visible !important;
  }

  .dashboard .sidebar-nav {
    flex-direction: column !important;
  }
}

/* =========================
   Collapsible Dashboard Sidebar
========================= */
.dashboard {
  --sidebar-open-width: 270px;
  --sidebar-closed-width: 86px;
  grid-template-columns: var(--sidebar-open-width) minmax(0, 1fr) !important;
  transition: grid-template-columns 0.25s ease !important;
}

.dashboard.sidebar-collapsed {
  grid-template-columns: var(--sidebar-closed-width) minmax(0, 1fr) !important;
}

.dashboard .sidebar {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  min-height: 100vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 20px 16px !important;
  transition: padding 0.25s ease !important;
}

.dashboard .sidebar-toggle {
  width: 42px;
  height: 42px;
  margin: 0 0 18px auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.dashboard .sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.dashboard .sidebar-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.dashboard .sidebar-nav a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 46px !important;
  padding: 11px 12px !important;
  margin: 6px 0 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.dashboard .sidebar-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 24px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dashboard .sidebar-nav a:hover .sidebar-icon,
.dashboard .sidebar-nav a.active .sidebar-icon {
  transform: scale(1.06);
  opacity: 1;
}

.dashboard .sidebar-label {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.18s ease, max-width 0.22s ease;
  max-width: 170px;
}

.dashboard .sidebar a.sidebar-site-link {
  justify-content: center !important;
  color: var(--wine) !important;
}

.dashboard .sidebar a.sidebar-site-link .sidebar-icon {
  filter: brightness(0) saturate(100%) invert(12%) sepia(42%) saturate(2132%) hue-rotate(300deg) brightness(82%) contrast(99%);
}

.dashboard .sidebar a.sidebar-logout-link {
  justify-content: center !important;
}

.dashboard.sidebar-collapsed .sidebar {
  padding: 18px 12px !important;
}

.dashboard.sidebar-collapsed .sidebar-toggle {
  margin-inline: auto;
}

.dashboard.sidebar-collapsed .sidebar-logo {
  max-width: 48px !important;
  margin-bottom: 18px !important;
}

.dashboard.sidebar-collapsed .sidebar-profile,
.dashboard.sidebar-collapsed .sidebar a.sidebar-profile {
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  margin: 0 auto 16px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
}

.dashboard.sidebar-collapsed .sidebar-profile strong,
.dashboard.sidebar-collapsed .sidebar-profile small {
  display: none !important;
}

.dashboard.sidebar-collapsed .sidebar-avatar {
  width: 36px !important;
  height: 36px !important;
  font-size: 12px !important;
}

.dashboard.sidebar-collapsed .sidebar-nav a {
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  margin: 7px auto !important;
  border-radius: 16px !important;
  gap: 0 !important;
}

.dashboard.sidebar-collapsed .sidebar-label {
  max-width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.dashboard.sidebar-collapsed .sidebar a.sidebar-site-link,
.dashboard.sidebar-collapsed .sidebar a.sidebar-logout-link {
  width: 48px !important;
}

@media (max-width: 760px) {

  .dashboard,
  .dashboard.sidebar-collapsed {
    grid-template-columns: var(--sidebar-closed-width) minmax(360px, 1fr) !important;
  }

  .dashboard .sidebar {
    position: sticky !important;
    left: 0 !important;
    padding: 14px 10px !important;
  }

  .dashboard .sidebar-logo,
  .dashboard .sidebar-label,
  .dashboard .sidebar-profile strong,
  .dashboard .sidebar-profile small {
    display: none !important;
  }

  .dashboard .sidebar-profile,
  .dashboard .sidebar a.sidebar-profile,
  .dashboard .sidebar-nav a {
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    margin: 6px auto !important;
    justify-content: center !important;
  }
}

/* Sidebar close icon button */
.dashboard .sidebar-toggle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.dashboard.sidebar-collapsed .sidebar-toggle img {
  transform: rotate(180deg);
}

.dashboard .sidebar-toggle span {
  display: none !important;
}

/* Sidebar logo removed */
.dashboard .sidebar-logo {
  display: none !important;
}

.dashboard .sidebar-toggle {
  margin-bottom: 18px !important;
}

/* =========================
   Mobile Dashboard Top Sidebar
========================= */
@media (max-width: 760px) {

  .dashboard,
  .dashboard.sidebar-collapsed {
    display: block !important;
    grid-template-columns: none !important;
    min-height: 100svh !important;
    overflow-x: hidden !important;
  }

  .dashboard .sidebar,
  .dashboard.sidebar-collapsed .sidebar {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    z-index: 20 !important;
    width: 100% !important;
    max-width: 100vw !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    box-sizing: border-box !important;
  }

  .dashboard .sidebar-toggle {
    display: none !important;
  }

  .dashboard .sidebar-profile,
  .dashboard .sidebar a.sidebar-profile,
  .dashboard.sidebar-collapsed .sidebar-profile,
  .dashboard.sidebar-collapsed .sidebar a.sidebar-profile {
    width: auto !important;
    height: 42px !important;
    min-height: 42px !important;
    display: inline-grid !important;
    grid-template-columns: 34px max-content !important;
    place-items: center start !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
    padding: 6px 10px !important;
    margin: 0 !important;
    border-radius: 999px !important;
  }

  .dashboard .sidebar-profile strong,
  .dashboard .sidebar-profile small,
  .dashboard.sidebar-collapsed .sidebar-profile strong,
  .dashboard.sidebar-collapsed .sidebar-profile small {
    display: block !important;
  }

  .dashboard .sidebar-avatar,
  .dashboard.sidebar-collapsed .sidebar-avatar {
    width: 32px !important;
    height: 32px !important;
    font-size: 11px !important;
  }

  .dashboard .sidebar-nav,
  .dashboard.sidebar-collapsed .sidebar-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: auto !important;
    flex: 0 0 auto !important;
  }

  .dashboard .sidebar-nav a,
  .dashboard.sidebar-collapsed .sidebar-nav a {
    width: auto !important;
    height: 42px !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .dashboard .sidebar-icon,
  .dashboard.sidebar-collapsed .sidebar-icon {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
  }

  .dashboard .sidebar-label,
  .dashboard.sidebar-collapsed .sidebar-label {
    display: inline-block !important;
    max-width: 130px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .dashboard .main,
  .dashboard.sidebar-collapsed .main {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 22px 12px 34px !important;
  }
}

/* =========================
   Mobile Dashboard Top Gap Fix
========================= */
@media (max-width: 760px) {

  html:has(.dashboard),
  body:has(.dashboard) {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--wine) !important;
  }

  body:has(.dashboard) .dashboard,
  body:has(.dashboard) .dashboard.sidebar-collapsed {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: var(--pink-light) !important;
  }

  body:has(.dashboard) .dashboard .sidebar,
  body:has(.dashboard) .dashboard.sidebar-collapsed .sidebar {
    margin: 0 !important;
    border-top: 0 !important;
    transform: translateY(-1px);
  }

  body:has(.dashboard) .dashboard .main,
  body:has(.dashboard) .dashboard.sidebar-collapsed .main {
    background: var(--pink-light) !important;
  }
}

/* =========================
   Mobile Dashboard Body Gap Hard Fix
========================= */
html:has(body.dashboard-page),
body.dashboard-page {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--wine) !important;
  height: 0 !important;
}

body.dashboard-page .dashboard {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--pink-light) !important;
}

@media (max-width: 760px) {

  html,
  body.dashboard-page {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--wine) !important;
    min-height: 100% !important;
  }

  body.dashboard-page .dashboard,
  body.dashboard-page .dashboard.sidebar-collapsed {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    min-height: 100svh !important;
    background: var(--pink-light) !important;
    overflow-x: hidden !important;
  }

  body.dashboard-page .dashboard .sidebar,
  body.dashboard-page .dashboard.sidebar-collapsed .sidebar {
    position: sticky !important;
    top: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: none !important;
  }

  body.dashboard-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--wine);
    z-index: -1;
    pointer-events: none;
  }
}

/* =========================
   Mobile Dashboard Top Gap Final Fix
========================= */
html.dashboard-html,
html.dashboard-html body,
html.dashboard-html body.dashboard-page {
  margin: 0 !important;
  padding: 0 !important;
  background-image: none !important;
}

html.dashboard-html body.dashboard-page .dashboard {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

@media (max-width: 760px) {
  html.dashboard-html {
    background: var(--wine) !important;
    overflow-x: hidden !important;
  }

  html.dashboard-html body.dashboard-page {
    display: block !important;
    min-height: 100svh !important;
    background: linear-gradient(var(--wine) 0 92px, var(--pink-light) 92px 100%) !important;
    overflow-x: hidden !important;
  }

  html.dashboard-html body.dashboard-page .dashboard,
  html.dashboard-html body.dashboard-page .dashboard.sidebar-collapsed {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    min-height: 100svh !important;
    background: transparent !important;
    transform: translateY(-1px) !important;
  }

  html.dashboard-html body.dashboard-page .dashboard .sidebar,
  html.dashboard-html body.dashboard-page .dashboard.sidebar-collapsed .sidebar {
    margin-top: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
    background: var(--wine) !important;
  }

  html.dashboard-html body.dashboard-page .dashboard .main,
  html.dashboard-html body.dashboard-page .dashboard.sidebar-collapsed .main {
    background: var(--pink-light) !important;
  }
}


/* =========================
   Dashboard Sidebar Custom Color
========================= */
.dashboard .sidebar,
.dashboard.sidebar-collapsed .sidebar {
  background: var(--sidebar-bg) !important;
}

@media (max-width: 760px) {

  html.dashboard-html,
  html.dashboard-html body,
  html.dashboard-html body.dashboard-page,
  body.dashboard-page::before {
    background-color: var(--sidebar-bg) !important;
  }

  html.dashboard-html body.dashboard-page {
    background: linear-gradient(var(--sidebar-bg) 0 92px, var(--pink-light) 92px 100%) !important;
  }

  html.dashboard-html body.dashboard-page .dashboard .sidebar,
  html.dashboard-html body.dashboard-page .dashboard.sidebar-collapsed .sidebar {
    background: var(--sidebar-bg) !important;
  }
}

/* Public header top bar uses sidebar color */
.top-bar {
  background: var(--sidebar-bg) !important;
}

.hero-free-consultation {
  margin: -12px 0 24px 100px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.free-consultation-btn {
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.26);
  /* padding: 15px 28px; */
}

.free-consultation-btn:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-2px);
}

html[dir="rtl"] .hero-free-consultation {
  margin-left: 0;
  /* margin-right: 100px; */
}

@media (max-width: 900px) {

  .hero-free-consultation,
  html[dir="rtl"] .hero-free-consultation {
    margin: -6px 0 22px;
    justify-content: center;
    width: 100%;
  }
}

/* ==========================
   PRODUCTS
========================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 390px));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .3s;
  width: 100%;
  max-width: 390px;
  justify-self: center;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-body {
  padding: 20px;
}

.product-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.product-price {
  font-size: 28px;
  color: #b8893c;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================
   PRODUCT DETAILS
========================== */

.product-details-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-details-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.product-details-info h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.product-details-price {
  font-size: 34px;
  color: #b8893c;
  font-weight: bold;
  margin-bottom: 25px;
}

.product-details-description {
  color: #555;
  line-height: 1.9;
  margin-bottom: 30px;
}

.product-details-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.product-meta {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  background: #fafafa;
}

.product-meta-item {
  margin-bottom: 10px;
}

.empty-products {
  text-align: center;
  padding: 80px 20px;
}

.empty-products i {
  font-size: 70px;
  color: #ccc;
  margin-bottom: 20px;
}

@media(max-width:900px) {

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-details-layout {
    grid-template-columns: 1fr;
  }

  .product-details-buttons {
    justify-content: center;
  }

  .product-details-info {
    text-align: center;
  }

}

/* ==========================
   PRODUCT ORDER
========================== */

.product-order-layout {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.product-order-summary img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.product-order-summary h2 {
  color: #6a2b54;
  margin-bottom: 12px;
}

.product-order-page .form-box {
  margin: 0;
}

@media(max-width:900px) {
  .product-order-layout {
    grid-template-columns: 1fr;
  }
}


.product-order-page .product-order-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-order-page .product-order-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(225, 92, 139, .28);
}

.product-order-page .product-order-submit:hover {
  transform: translateY(-2px);
}

@media(max-width:700px) {
  .product-order-page .product-order-fields {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   ADMIN PRODUCT FORM
========================== */

.admin-product-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-product-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 235, 242, .86));
  border: 1px solid rgba(230, 95, 141, .18);
}

.admin-form-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-product-form-head h2 {
  margin: 0 0 6px;
  color: var(--wine);
  font-size: 28px;
}

.admin-product-form-head p,
.admin-product-section-title p,
.admin-upload-box small {
  margin: 0;
  color: #7b6872;
  line-height: 1.6;
}

.admin-product-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(230, 95, 141, .25);
  color: var(--wine);
  font-weight: 900;
  white-space: nowrap;
}

.admin-product-switch input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

.admin-product-sections {
  display: grid;
  gap: 18px;
}

.admin-product-section {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(230, 95, 141, .16);
  background: rgba(255, 255, 255, .72);
}

.admin-product-section-title {
  margin-bottom: 16px;
}

.admin-product-section-title h3 {
  margin: 0 0 6px;
  color: var(--wine);
  font-size: 20px;
}

.admin-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--wine);
  font-weight: 900;
}

.admin-field.full {
  grid-column: 1 / -1;
}

.admin-field input,
.admin-field textarea,
.admin-upload-box {
  width: 100%;
  box-sizing: border-box;
}

.admin-field textarea {
  min-height: 118px;
  resize: vertical;
}

.admin-field .service-detail-textarea {
  min-height: 170px;
}

.admin-price-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-price-input input {
  flex: 1;
}

.admin-price-input strong {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  background: #fff0f5;
  color: var(--wine);
  border: 1px solid rgba(230, 95, 141, .22);
}

.admin-product-image-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
}

.admin-upload-box {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border: 2px dashed rgba(230, 95, 141, .35);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.admin-upload-box input {
  width: auto;
  border: 0;
  padding: 0;
  background: transparent;
}

.admin-upload-box span {
  color: var(--wine);
  font-weight: 900;
  font-size: 17px;
}

.admin-product-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(230, 95, 141, .18);
  color: var(--wine);
  font-weight: 900;
}

.admin-product-preview img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
}

.admin-product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  padding-top: 4px;
}

.admin-product-actions .btn {
  min-width: 180px;
  min-height: 52px;
  justify-content: center;
}

@media(max-width:850px) {

  .admin-product-form-head,
  .admin-product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-product-grid,
  .admin-product-image-row {
    grid-template-columns: 1fr;
  }

  .admin-product-actions .btn {
    width: 100%;
  }
}

/* Stable product card buttons: prevents hover layout shift */
.product-buttons .btn {
  min-height: 52px;
  box-sizing: border-box;
  will-change: auto;
}

.product-buttons .btn-primary,
.product-buttons .btn-primary:hover {
  border: 1px solid var(--pink);
}

.product-buttons .btn-primary:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 16px 28px rgba(230, 95, 141, .26);
  transform: none;
}

/* No product card jump on hover */
.products-page .product-card:hover {
  transform: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
}

/* Product cards 4-column compact layout */
.products-page {
  background: #ffe7ed;
}

.products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 40px !important;
  justify-content: stretch !important;
  align-items: stretch !important;
}

.product-card {
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  border-radius: 18px !important;
  border: 1px solid rgba(92, 17, 55, .08) !important;
  box-shadow: 0 12px 30px rgba(92, 17, 55, .08) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.product-card:hover {
  transform: none !important;
  box-shadow: 0 16px 36px rgba(92, 17, 55, .12) !important;
}

.product-card>a {
  display: block !important;
  background: #fff !important;
}

.product-image {
  width: 100% !important;
  height: 210px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: #fff !important;
}

.product-body {
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  text-align: center !important;
}

.product-body h3 {
  font-family: serif !important;
  color: var(--wine) !important;
  font-size: 20px !important;
  line-height: 1.28 !important;
  margin-bottom: 10px !important;
}

.product-description {
  color: #6f6168 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.product-price {
  margin: auto 0 16px !important;
  color: #b8893c !important;
  font-weight: 800 !important;
}

.product-price .new-price {
  font-size: 24px !important;
  line-height: 1.1 !important;
}

.product-price .old-price {
  display: inline-block !important;
  margin-inline-end: 8px !important;
  color: #9c8b91 !important;
  font-size: 14px !important;
  text-decoration: line-through !important;
}

.product-buttons {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin-top: auto !important;
}

.product-buttons .btn {
  width: 100% !important;
  min-height: 48px !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  box-sizing: border-box !important;
  will-change: auto !important;
}
.product-buttons .btn:hover {
  transform: none !important;
  background: var(--white) !important;
  color: var(--pink) !important;
}

.product-card:hover {
  transform: none !important;
  box-shadow: 0 16px 36px rgba(92, 17, 55, .12) !important;
}
@media(max-width:1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media(max-width:820px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .product-image {
    height: 190px !important;
  }
}

@media(max-width:560px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Public product cards aligned with the service-card design */
.products-page .product-card {
  position: relative;
  padding: 0 !important;
  border: 1px solid rgba(92, 17, 55, 0.1) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 18px 45px rgba(92, 17, 55, 0.08) !important;
  text-align: left !important;
  transition: box-shadow 0.25s ease !important;
}

.products-page .product-card:hover {
  transform: none !important;
  box-shadow: 0 24px 60px rgba(92, 17, 55, 0.13) !important;
}

.products-page .product-image-link {
  width: 100%;
  height: 210px;
  display: block !important;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fde1e8, #fff7fa) !important;
}

.products-page .product-image {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  background: rgba(255, 255, 255, 0.78) !important;
}

.products-page .product-body {
  padding: 0 !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: stretch !important;
  text-align: left !important;
}

.products-page .product-body h3 {
  width: calc(100% - 48px);
  min-height: 68px;
  margin: 24px 24px 10px !important;
  color: var(--wine) !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 26px !important;
  line-height: 1.22 !important;
  text-align: left !important;
}

.products-page .product-description {
  width: calc(100% - 48px);
  min-height: 86px;
  margin: 0 24px 18px !important;
  color: var(--muted) !important;
  font-size: inherit !important;
  line-height: 1.7 !important;
  text-align: left !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.products-page .product-details-inline {
  width: calc(100% - 48px);
  display: inline-flex;
  align-self: flex-start;
  margin: -8px 24px 18px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  text-transform: lowercase;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.2s ease;
}

.products-page .product-details-inline:hover {
  color: #e65f8d;
  text-decoration-color: #e65f8d;
  transform: translateX(4px);
}

.products-page .product-price-block {
  width: calc(100% - 48px);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin: auto 24px 16px;
}

.products-page .product-price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(111, 17, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(111, 17, 61, 0.06);
}

.products-page .product-price-chip .old-price {
  position: relative;
  display: inline-flex !important;
  align-items: baseline;
  gap: 3px;
  margin: 0 !important;
  color: #a78b94 !important;
  font-size: 12px !important;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
}

.products-page .product-price-chip .old-price::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: #e65f8d;
  transform: translateY(-50%);
}

.products-page .product-price-chip .new-price {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: var(--wine) !important;
  font-family: inherit;
  font-size: 18px !important;
  font-weight: 900;
  line-height: 1 !important;
  white-space: nowrap;
}

.products-page .product-price-chip .price-currency {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.products-page .product-discount-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f113d, #e65f8d);
  box-shadow: 0 10px 24px rgba(111, 17, 61, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.products-page .product-card-btn {
  width: calc(100% - 48px);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 24px 24px;
  padding: 13px 18px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.products-page .product-card-btn:hover {
  background: transparent;
  color: var(--pink);
  box-shadow: none;
  transform: none;
}

html[dir="rtl"] .products-page .product-card,
html[dir="rtl"] .products-page .product-body,
html[dir="rtl"] .products-page .product-body h3,
html[dir="rtl"] .products-page .product-description {
  direction: rtl;
  text-align: right !important;
}

html[dir="rtl"] .products-page .product-details-inline,
html[dir="rtl"] .products-page .product-price-block {
  direction: rtl;
  justify-content: flex-start;
}

html[dir="rtl"] .products-page .product-details-inline {
  text-transform: none;
}

html[dir="rtl"] .products-page .product-details-inline:hover {
  transform: translateX(-4px);
}

@media (max-width: 900px) {
  .products-page .product-image-link {
    height: 185px;
  }
}

@media (max-width: 560px) {
  .products-page .product-card {
    width: min(82vw, 320px) !important;
    min-width: min(82vw, 320px) !important;
    justify-self: center;
  }

  .products-page .product-image-link {
    height: 168px;
  }

  .products-page .product-body h3 {
    width: calc(100% - 36px);
    min-height: auto;
    margin: 18px 18px 8px !important;
    font-size: 22px !important;
  }

  .products-page .product-description {
    width: calc(100% - 36px);
    min-height: 72px;
    margin: 0 18px 14px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .products-page .product-details-inline,
  .products-page .product-price-block,
  .products-page .product-card-btn {
    width: calc(100% - 36px);
    margin-inline: 18px;
  }

  .products-page .product-details-inline {
    margin-top: -6px;
    margin-bottom: 16px;
  }

  .products-page .product-price-block {
    margin-bottom: 16px;
  }

  .products-page .product-card-btn {
    margin-bottom: 18px;
  }
}

/* Final product-card alignment with the service cards */
.products-page .product-image-link {
  width: 100% !important;
  height: 300px !important;
  border-radius: 0 !important;
}

.products-page .product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: transparent !important;
}

.products-page .product-price-block {
  width: calc(100% - 48px) !important;
  margin: auto 24px 16px !important;
  gap: 0 !important;
}

.products-page .product-price-chip {
  width: 100% !important;
  min-height: 48px !important;
  box-sizing: border-box !important;
  padding: 13px 18px !important;
  border-radius: 999px !important;
}

@media (max-width: 640px) {
  .products-page .products-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 16px !important;
    padding: 4px 4px 18px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .products-page .product-card {
    flex: 0 0 min(82vw, 320px) !important;
    width: min(82vw, 320px) !important;
    min-width: min(82vw, 320px) !important;
    scroll-snap-align: start;
    }

  .products-page .product-image-link {
    height: 260px !important;
  }

  .products-page .product-price-block {
    width: calc(100% - 36px) !important;
    margin-inline: 18px !important;
    margin-bottom: 16px !important;
  }

  .products-page .product-price-chip {
    min-height: 46px !important;
    padding: 11px 16px !important;
  }
}

/* Compact product details page */
.products-page .product-details-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
  background: #fff !important;
  border: 1px solid rgba(92, 17, 55, .08) !important;
  border-radius: 24px !important;
  padding: 28px !important;
  box-shadow: 0 18px 45px rgba(92, 17, 55, .08) !important;
}

.product-details-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  min-height: 420px !important;
}

.product-details-image img {
  width: 100% !important;
  height: 420px !important;
  max-height: 420px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 18px !important;
  border-radius: 20px !important;
  background: #fff !important;
}

.product-details-info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 10px 4px !important;
}

.product-details-info h2 {
  font-family: serif !important;
  color: var(--wine) !important;
  font-size: 34px !important;
  line-height: 1.22 !important;
  margin-bottom: 16px !important;
}

.product-details-price {
  font-size: 30px !important;
  color: #b8893c !important;
  font-weight: 900 !important;
  margin-bottom: 18px !important;
}

.product-details-price .old-price {
  font-size: 18px !important;
  color: #9c8b91 !important;
  text-decoration: line-through !important;
  margin-inline-end: 10px !important;
}

.product-details-price .new-price {
  font-size: 32px !important;
  line-height: 1.1 !important;
}

.product-details-description {
  color: #5f5359 !important;
  font-size: 15px !important;
  line-height: 1.9 !important;
  margin-bottom: 18px !important;
}

.product-details-buttons {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin: 8px 0 22px !important;
}

.product-details-buttons .btn {
  min-height: 50px !important;
  padding: 13px 22px !important;
  font-size: 15px !important;
  letter-spacing: 0 !important;
}

.product-meta {
  border: 1px solid rgba(230, 95, 141, .18) !important;
  border-radius: 18px !important;
  padding: 16px 18px !important;
  background: #fff7f8 !important;
  color: var(--wine) !important;
}

.product-meta-item {
  margin-bottom: 0 !important;
  font-size: 14px !important;
}

@media(max-width:900px) {
  .products-page .product-details-layout {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
  }

  .product-details-image {
    min-height: 320px !important;
  }

  .product-details-image img {
    height: 320px !important;
    max-height: 320px !important;
  }

  .product-details-info {
    text-align: center !important;
  }

  .product-details-buttons {
    justify-content: center !important;
  }
}

@media(max-width:560px) {
  .products-page .product-details-layout {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .product-details-image {
    min-height: 260px !important;
  }

  .product-details-image img {
    height: 260px !important;
    max-height: 260px !important;
    padding: 10px !important;
  }

  .product-details-info h2 {
    font-size: 26px !important;
  }

  .product-details-price .new-price {
    font-size: 26px !important;
  }

  .product-details-buttons .btn {
    width: 100% !important;
  }
}

/* Final header top alignment fix */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body > .top-header,
.top-header {
  margin-top: 0 !important;
  top: 0 !important;
  transform: none !important;
}

.top-bar {
  margin-top: 0 !important;
}

.main-navbar {
  margin-top: 0 !important;
}

@media (min-width: 761px) {
  .top-bar {
    min-height: 34px !important;
  }

  .main-navbar {
    min-height: 72px !important;
  }

  .logo img {
    max-height: 86px !important;
  }
}

/* Final fixed public header and favicon cache refresh */
body:not(.login-page):not(.dashboard-page) {
  padding-top: 106px !important;
}

body:not(.login-page):not(.dashboard-page) > .top-header,
.top-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  margin: 0 !important;
  transform: none !important;
  z-index: 9999 !important;
}

.top-bar {
  min-height: 34px !important;
  height: 34px !important;
  margin: 0 !important;
}

.main-navbar {
  min-height: 96px !important;
  height: 96px !important;
  margin: 0 auto !important;
}

.logo img {
  max-height: 84px !important;
}

@media (max-width: 760px) {
  body:not(.login-page):not(.dashboard-page) {
    padding-top: 76px !important;
  }

  .top-bar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
  }

  .main-navbar {
    height: auto !important;
    min-height: 70px !important;
  }
}

/* =========================
   Admin Products Mobile Only
========================= */
@media (max-width: 760px) {
  body.admin-products-page,
  body.admin-products-page .dashboard,
  body.admin-products-page .main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  body.admin-products-page .main {
    padding: 24px 14px 36px !important;
  }

  body.admin-products-page .main > h1 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.15;
  }

  body.admin-products-page .main > h1 + br,
  body.admin-products-page form.admin-product-form + br {
    display: none;
  }

  body.admin-products-page form.admin-product-form {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
    padding: 14px !important;
    gap: 14px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-product-form-head {
    width: 100%;
    padding: 15px;
    gap: 14px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-form-kicker {
    margin-bottom: 5px;
    font-size: 10px;
  }

  body.admin-products-page .admin-product-form-head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
  }

  body.admin-products-page .admin-product-switch {
    width: 100%;
    min-width: 0;
    padding: 11px 13px;
    border-radius: 14px;
    white-space: normal;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-product-switch input {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    min-height: 20px;
    padding: 0;
  }

  body.admin-products-page .admin-product-sections {
    width: 100%;
    min-width: 0;
    gap: 12px;
  }

  body.admin-products-page .admin-product-section {
    width: 100%;
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-product-section-title {
    margin-bottom: 12px;
  }

  body.admin-products-page .admin-product-section-title h3 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  body.admin-products-page .admin-product-section-title p,
  body.admin-products-page .admin-upload-box small {
    font-size: 12px;
    line-height: 1.45;
  }

  body.admin-products-page .admin-product-grid,
  body.admin-products-page .admin-product-image-row {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px;
  }

  body.admin-products-page .admin-field,
  body.admin-products-page .admin-field.full,
  body.admin-products-page .admin-price-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-field > span {
    font-size: 13px;
  }

  body.admin-products-page .admin-field input,
  body.admin-products-page .admin-field textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-field textarea {
    min-height: 110px;
  }

  body.admin-products-page .admin-field .service-detail-textarea {
    min-height: 145px;
  }

  body.admin-products-page .admin-price-input {
    gap: 8px;
  }

  body.admin-products-page .admin-price-input input {
    flex: 1 1 auto;
  }

  body.admin-products-page .admin-price-input strong {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  body.admin-products-page .admin-upload-box {
    width: 100%;
    min-width: 0;
    min-height: 140px;
    padding: 16px 12px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-upload-box input[type="file"] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    font-size: 13px;
  }

  body.admin-products-page .admin-upload-box input[type="file"]::file-selector-button {
    margin-inline-end: 8px;
    padding: 9px 10px;
    border: 0;
    border-radius: 10px;
    background: #fce1ea;
    color: var(--wine);
    font: inherit;
    font-weight: 800;
  }

  body.admin-products-page .admin-upload-box span {
    font-size: 15px;
  }

  body.admin-products-page .admin-product-preview {
    width: 100%;
    padding: 12px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  body.admin-products-page .admin-product-preview img {
    width: 120px;
    height: 120px;
    max-width: 100%;
    object-fit: contain;
  }

  body.admin-products-page .admin-product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding-top: 0;
  }

  body.admin-products-page .admin-product-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    box-sizing: border-box;
  }

  body.admin-products-page .dashboard-card-scroll {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 2px 0 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    box-sizing: border-box;
  }

  body.admin-products-page .dashboard-card-scroll .dashboard-card-table tr {
    flex-basis: min(86vw, 330px) !important;
    width: min(86vw, 330px) !important;
    min-width: min(86vw, 330px) !important;
    max-width: min(86vw, 330px) !important;
    padding: 14px !important;
    box-sizing: border-box;
  }

  body.admin-products-page .dashboard-card-table td {
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: minmax(78px, 34%) minmax(0, 1fr) !important;
    gap: 8px;
    overflow-wrap: anywhere;
  }

  body.admin-products-page .dashboard-card-table .admin-service-thumb {
    width: 76px;
    height: 76px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
  }

  body.admin-products-page .service-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  body.admin-products-page .service-actions .service-action {
    width: 100%;
    min-width: 0;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 420px) {
  body.admin-products-page .main {
    padding: 18px 10px 30px !important;
  }

  body.admin-products-page form.admin-product-form {
    padding: 11px !important;
  }

  body.admin-products-page .admin-product-form-head,
  body.admin-products-page .admin-product-section {
    padding: 12px;
  }

  body.admin-products-page .dashboard-card-table td {
    grid-template-columns: 1fr !important;
    gap: 5px;
  }
}
