*{box-sizing:border-box}body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;color:#111;background:#fafafa;min-height:100vh;display:flex;flex-direction:column}
.container{max-width:1024px;margin:0 auto;padding:0 16px}
.page-main{flex:1 0 auto}
.site-header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:12px;flex-wrap:wrap}
.logo{font-size:16px;margin:0}
.logo-image{display:block;height:28px;width:auto;margin-left: 8px;}
.nav{display:flex;align-items:center;gap:8px}
.sub-nav{
  display:flex;
  flex:1 0 100%;
  gap:8px;
  margin-top:8px;
  padding-top:8px;
  border-top:1px solid #eee;
  justify-content:flex-start;
  flex-wrap:wrap;
}
.sub-nav .nav-link{
  font-size:11px;
  padding:4px 8px;
}
.nav-link{
  font-size: 12px;
  font-weight: 500;
  color:#000;
  text-decoration:none;
  padding:4px 6px;
  border-radius:6px;
  transition:background 0.15s,color 0.15s;
}
.nav-link:hover,.nav-link:focus{
  color: #333;
  border: 1.5px solid #09201B;
  box-shadow: 2px 2px 0 0 #09201B;
}
.nav-notification-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  margin-left:6px;
  padding:0 5px;
  border-radius:999px;
  background:#EB5C37;
  color:#fff;
  font-size:10px;
  font-weight:700;
  line-height:1;
}
.nav-notification-badge-confirmed{
  background:#1B7754;
}
.btn{
  background:#ECDFAB;
  border:1px solid #ddd;
  font-size: 12px;
  border-radius:8px;
  padding:4px 6px;
  cursor:pointer;
}

.btn.primary{
  padding:4px 6px;
  margin: 0.2rem;
  background-color: #ECDFAB;
  color: #333;
  border: 1.5px solid #09201B;
  box-shadow: 2px 2px 0 0 #09201B;
}
.btn.login,.btn.signup{
  padding:4px 6px;
  margin: 0.2rem;
  background-color: #1B7754;
  color: #fff;
  border: 1.5px solid #09201B;
  box-shadow: 2px 2px 0 0 #09201B;
}
.btn.secondary{
  padding:4px 6px;
  margin: 0.2rem;
  background-color: #F9B122;
  color: #333;
  border: 1.5px solid #09201B;
  box-shadow: 2px 2px 0 0 #09201B;
  width: auto;
}
.icon-btn{background:transparent;border:none;font-size:20px;cursor:pointer}
.notice{margin:12px 0;padding:10px;border:1px dashed #aaa;background:none;color:#555;border-radius:8px}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px}
.card{
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding: 0.5rem 0.5rem;
  margin: 0.2rem;
  background-color: none;
  color: #333;
  border: 1.5px solid #09201B;
  box-shadow: 2px 2px 0 0 #09201B;
}
.card1{
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding: 0.5rem 0.5rem;
  margin: 0.2rem;
  background-color: none;
  color: #333;
  border: none;
  box-shadow: none;
}
.card h3{margin:0;font-size:1.15rem;font-weight:600}
.card img{width:100%;height:150px;object-fit:cover;background:#f2f2f2}
.card .card-body{padding:12px;display:flex;flex-direction:column;gap:8px}
.card .title{font-weight:600}
.card .price{font-weight:700}
.activity-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
  margin-top:24px;
}
.activity-card-link{
  text-decoration:none;
  color:inherit;
  display:block;
  height:100%;
}
.activity-card{
  border-radius: 0 0 8px 8px;
  border:none;
  box-shadow:none;
  overflow:hidden;
  background:#fff;
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform 0.2s ease,box-shadow 0.2s ease;
}
.activity-card-link:hover .activity-card,
.activity-card-link:focus-visible .activity-card{
  transform:translate(-2px,-2px);
  box-shadow:4px 4px 0 0 #09201B;
}
.activity-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#f2f2f2;
}
.activity-card-body{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.activity-card-body h3{
  margin:0;
  font-size:1.05rem;
}
.activity-card-summary{
  margin:0;
  color:#555;
  font-size:0.95rem;
}
.activity-card-price{
  margin-top:auto;
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color:#09201B;
}
.activity-card-price strong{
  font-size:1.05rem;
}
@media (max-width:1200px){
  .activity-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width:900px){
  .activity-card-media img{height:160px;}
}
@media (max-width:768px){
  .activity-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .activity-card-media img{height:100%;}
}
@media (max-width:520px){
  .activity-card-media img{height:100%;width:100%;}
}
.card-row{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:24px}
.card-row>.card{flex:1 1 320px}
.form{background:transparent;border:none;border-radius:0;padding:0;display:flex;flex-direction:column;gap:0}
.form-row{margin:0;display:flex;flex-direction:column;gap:6px;padding:12px 0;border-bottom:1px solid #e6e6e6}
.form-row:last-child{border-bottom:none}
.form-row.inline{flex-direction:row;align-items:center;gap:8px}
.form-row.double{flex-direction:row;gap:16px;flex-wrap:wrap}
.form-row.double .field{flex:1;display:flex;flex-direction:column;gap:6px;min-width:140px}
.form-row.social-links{flex-direction:row;gap:16px;flex-wrap:wrap}
.form-row.social-links .field{flex:1;display:flex;flex-direction:column;gap:6px;min-width:160px}
.form-row label{font-size:0.85rem;font-weight:600;color:#555;text-transform:uppercase;letter-spacing:0.05em}
.form-row input,.form-row textarea,.form-row select{padding:10px 12px;border:1px solid #d7d7d7;border-radius:6px;background:#fff;font:inherit;color:inherit;transition:border-color 0.15s ease,background 0.15s ease}
.form-row input:focus,.form-row textarea:focus,.form-row select:focus{outline:none;border-color:#111;background:#fffdf7}
.form-row textarea{resize:vertical;min-height:120px}
/* Dedicated styles for the bookings checkout request form */
#bookingCheckoutForm{
  margin-top:16px;
  background:#fffdf7;
  border:1.5px solid #09201B;
  border-radius:14px;
  box-shadow:2px 2px 0 0 #09201B;
  padding:14px 16px 16px;
}
#bookingCheckoutForm h3{
  margin:0 0 6px;
  color:#09201B;
}
#bookingCheckoutForm .form-row{
  border-bottom:1px solid #eadfbd;
}
#bookingCheckoutForm .form-row label{
  color:#1B7754;
}
#bookingCheckoutForm input,
#bookingCheckoutForm textarea,
#bookingCheckoutForm select{
  border-color:#c8b98c;
  background:#fff;
}
#bookingCheckoutForm input:focus,
#bookingCheckoutForm textarea:focus,
#bookingCheckoutForm select:focus{
  border-color:#1B7754;
  box-shadow:0 0 0 2px rgba(27,119,84,0.12);
}
#bookingCheckoutForm .form-actions{
  padding-top:14px;
}
#bookingCheckoutForm .notice{
  margin-bottom:0;
  border-style:solid;
  border-color:#d5c28b;
  background:#f8f0d7;
  color:#574719;
}

@media (max-width:768px){
  #bookingCheckoutForm{
    padding:12px;
  }
}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.rich-text-field{display:flex;flex-direction:column;gap:8px}
.rich-text-toolbar{display:flex;flex-wrap:wrap;gap:6px}
.rich-text-btn{border:1px solid #d7d7d7;background:#fff;font-size:0.75rem;padding:4px 8px;border-radius:6px;cursor:pointer;line-height:1;font-weight:600}
.rich-text-btn:hover,.rich-text-btn:focus{border-color:#09201B;color:#09201B;background:#fffdf7}
.rich-text-editor{min-height:180px;border:1px solid #d7d7d7;border-radius:8px;padding:12px;background:#fff;font:inherit;color:inherit;line-height:1.5;overflow:auto}
.rich-text-editor:focus{outline:none;border-color:#09201B;box-shadow:0 0 0 2px rgba(9,32,27,0.12)}
.rich-text-editor.is-empty:before{content:attr(data-placeholder);color:#999;pointer-events:none}
.rich-text-editor p{margin:0 0 0.8em 0}
.rich-text-editor ul,.rich-text-editor ol{margin:0.4em 0 0.8em 1.2em;padding-left:1.2em}
.rich-text-editor li{margin:0.2em 0}
.rich-text-editor a{color:#1B7754;text-decoration:underline;word-break:break-word}
.rich-text-editor blockquote{margin:0.8em 0;padding-left:12px;border-left:3px solid #ECDFAB;color:#555;font-style:italic}
.rich-text-help{font-size:0.75rem;color:#777}
.rich-text-preview{border:1px solid #f0f0f0;border-radius:8px;padding:12px;background:#fff;line-height:1.6}
.rich-text-preview p{margin:0 0 0.8em 0}
.rich-text-preview[data-placeholder="true"]{color:#888;font-style:italic}
.rich-text-preview[data-placeholder="true"]:empty:before{content:'No description added yet.'}
.form-actions{display:flex;gap:8px;padding:16px 0 0 0}
.list{display:flex;flex-direction:column;gap:12px}
.list-item{display:flex;align-items:center;justify-content:space-between;background:#fff;border:1px solid #fff;border-radius:8px;padding:10px}
.modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.4)}
.modal[aria-hidden="false"]{display:flex}
.modal-content{background:#fff;border-radius:12px;max-width:560px;width:100%;padding:0;overflow:hidden}
.modal-header,.modal-footer{padding:12px;border-bottom:1px solid #eee}
.modal-footer{border-bottom:none}
.cart-items{max-height:340px;overflow:auto;padding:12px;display:flex;flex-direction:column;gap:8px}
.cart-row{display:flex;align-items:center;justify-content:space-between;border:1px solid #eee;border-radius:8px;padding:8px;background:#fcfcfc}
.qty{display:flex;align-items:center;gap:8px}
.total-row{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.price-badge{background:#111;color:#fff;border-radius:6px;padding:2px 6px;font-size:10px}
.payment-badge{border-radius:6px;padding:2px 8px;font-size:11px;font-weight:600}
.badge-paid{background:#d1fae5;color:#065f46;border:1px solid #6ee7b7}
.badge-unpaid{background:#fee2e2;color:#991b1b;border:1px solid #fca5a5}
.auth-section {
  display: flex;
  align-items: center;
  gap: 4px;
}
.auth-section form {
  margin: 0;
}
.auth-section button {
  margin: 0;
}
.auth-section input {
  margin-right: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fafafa;
}
.auth-section #userInfo {
  display: flex;
  align-items: center;
  gap: 10px;
 
}
.auth-section #userEmail {
    font-size: 12px;
  font-weight: 600;
  color: #1B7754;
}
@media (max-width:768px){
  .header-inner{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .logo{flex:0 0 auto}
  .nav{
    flex-direction:row;
    flex-wrap:wrap;
    width:100%;
    gap:6px;
    align-items:center;
    justify-content:flex-start;
  }
  .nav-link{
    width:auto;
    text-align:left;
  }
  .sub-nav{
    width:100%;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
    gap:6px;
  }
  .sub-nav .nav-link{
    width:auto;
  }
  .auth-section{
    order:3;
    flex-direction:column;
    align-items:r;
    width:100%;
    gap:6px;
  }
  .auth-section form,
  .auth-section button,
  .auth-section input{
    width:100%;
  }
  .auth-section input{
    margin-right:0;
    margin-bottom:6px;
  }
  #cartBtn{
    width:20%;
    order:4;
    align-content: center;
  }
}
.hero-section {
  position: relative;
  margin: 32px 0 24px 0;
  text-align: center;
}
.hero-media{
  position:relative;
  display:inline-block;
  width:100%;
  overflow:hidden;
  perspective:1200px;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50px 16px 16px 16px;
  box-shadow: none;
  transition: transform 0.9s ease, opacity 0.9s ease;
  transform-origin: center;
}
.hero-img--leaving{
  opacity:0;
  transform: rotateY(18deg) translateX(-18px) scale(0.95);
}
.hero-img--entering{
  animation: heroSlideIn 0.9s ease forwards;
}
@keyframes heroSlideIn{
  0%{
    opacity:0;
    transform: rotateY(-16deg) translateX(16px) scale(0.97);
  }
  100%{
    opacity:1;
    transform: rotateY(0deg) translateX(0) scale(1);
  }
}
@media (prefers-reduced-motion:reduce){
  .hero-img{
    transition:none;
  }
  .hero-img--entering{
    animation:none;
  }
  .hero-img--leaving{
    opacity:1;
    transform:none;
  }
}
.hero-badge-outer{
  position:absolute;
  top:24px;
  left:24px;
  width:auto;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  margin:0;
  z-index:3;
}
.hero-badge{
  position:relative;
  width:140px;
  height:140px;
  border-radius:50%;
  border:5px solid #fafafa;
  background:#111;
  overflow:hidden;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: -30px;
  margin-left: -30px;
  box-shadow:none;
}
.hero-badge img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-badge span{
  font-size:0.85rem;
  font-weight:700;
  color:#fff;
  letter-spacing:0.05em;
}
@media (max-width:768px){
  .hero-badge-outer{
    top:16px;
    left:16px;
  }
  .hero-badge{
    width:110px;
    height:110px;
  }
}
@media (max-width:480px){
  .hero-badge-outer{
    top: 25px;
    left: 25px;
  }
  .hero-badge{
    width: 60px;
    height:60px;
  }
  .hero-badge span{font-size:0.75rem}
}
.hero-title {
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 700;
}
.hero-desc {
  font-size: 1.1rem;
  color: #555;
  margin: 1px auto 0;
  max-width: 720px;
  text-align: left;
}
.activity-info-bar{
  margin:28px auto 0 auto;
  padding:18px 24px;
  border-top:1px solid #e6e6e6;
  border-bottom:1px solid #e6e6e6;
  border-radius:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:none;
  box-shadow:none;
}
.activity-info-summary{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.activity-info-summary h3{
  margin:0;
  font-size:1.35rem;
  font-weight:700;
  color:#0f162d;
}
.activity-info-meta{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:600;
  color:#1b1b1b;
  flex-wrap:wrap;
}
.activity-info-meta span:last-child{
  color:#1b7754;
}
.activity-info-actions{
  flex-shrink:0;
}
.activity-info-actions .btn{
  min-width:150px;
  padding:6px 9px;
  font-size:1rem;
}

.operator-info-bar{
  margin:24px auto 0 auto;
  padding:14px 24px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:none;
  box-shadow:none;
  font-size:0.95rem;
}
.operator-info-location{
  display:flex;
  align-items:center;
  gap:5px;
  font-weight:600;
  color:#111;
  text-align:left;
}
.operator-info-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.operator-info-icon svg{
  width:32px;
  height:32px;
  fill:#1B7754;
}
.operator-info-socials{
  display:flex;
  align-items:center;
  gap:10px;
}
.operator-info-link{
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:none;
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background 0.15s ease,transform 0.15s ease;
}
.operator-info-link svg{
  width: 28px;
  height: 28px;
  fill:currentColor;
}
.operator-info-link:hover,
.operator-info-link:focus-visible{
  background:none;
  transform:translateY(-2px);
}
.operator-info-link[aria-disabled="true"]{
  opacity:0.35;
  pointer-events:none;
}
@media (max-width:768px){
  .activity-info-bar{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 18px;
    gap:16px;
  }
  .activity-info-actions{
    width:100%;
  }
  .activity-info-actions .btn{
    width:100%;
  }
  .operator-info-bar{
    flex-direction:column;
    align-items:flex-start;
    padding:12px 18px;
    gap:12px;
    font-size:0.9rem;
  }
  .operator-info-socials{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .operator-info-link{
    width:34px;
    height:34px;
  }
  .operator-info-link svg{
    width:22px;
    height:22px;
  }
  .operator-info-icon{
    width:34px;
    height:34px;
  }
  .operator-info-icon svg{
    width:22px;
    height:22px;
  }
}
@media (max-width:480px){
  .activity-info-bar{
    width:100%;
    padding:14px;
    gap:12px;
  }
  .activity-info-summary h3{
    font-size:1.15rem;
  }
  .activity-info-meta{
    gap:10px;
    font-size:0.95rem;
  }
  .operator-info-bar{
    width:100%;
    padding:12px 14px;
    gap:10px;
    font-size:0.85rem;
  }
  .operator-info-location{
    flex-direction:column;
    align-items:center;
    font-size: 0.7rem;
    gap:6px;
  }
  .operator-info-socials{
    align-content: center;
    gap:8px;
  }
  .operator-info-link{
    align-content: center;
    width:30px;
    height:30px;
  }
  .operator-info-link svg{
    width:18px;
    height:18px;
  }
  .operator-info-icon{
    width:30px;
    height:30px;
  }
  .operator-info-icon svg{
    width:18px;
    height:18px;
  }
}
@media (max-width:768px){
  .hero-desc{
    font-size:1rem;
    margin-top:24px;
    padding:0 24px;
  }
}
@media (max-width:480px){
  .hero-desc{
    font-size:0.85rem;
    margin-top:18px;
    line-height:1.5;
    padding:0 12px;
  }
}
.table {
  width: 100%;
  overflow-x: auto;
  border: none;
  border-radius: 12px;
  background: none;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}
.card table {
  width: 100%;
  font-size: 14px;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
}
.card table th,
.card table td {
  padding: 3px 4px;
  border-bottom: 1px solid #ededed;
  text-align: left;
}
.card table th {
  background: #f6f6f6;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #555;
}
.card table tbody tr:nth-child(even) td {
  background: #fbfbfb;
}
.card table tbody tr:hover td {
  background: #f0f4ff;
}
.card table tbody tr:last-child td {
  border-bottom: none;
}
.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.section-header .section-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.section-header .section-actions .input{
  min-width:260px;
  padding:0.45rem 0.75rem;
  border:1.5px solid #09201B;
  border-radius:999px;
  font-size:0.95rem;
  font-weight:500;
  background:#fff;
  color:#09201B;
  box-shadow:2px 2px 0 0 #09201B;
}
.section-header .section-actions .input:focus{
  outline:none;
  border-color:#1B7754;
  box-shadow:3px 3px 0 0 #1B7754;
}
.table-scroll{
  width:100%;
  overflow:auto;
  border-radius:12px;
}
.users-directory .card{
  padding:16px;
}
.users-directory table{
  font-size:13px;
}
.users-directory table th,
.users-directory table td{
  white-space:nowrap;
}
.users-directory table td:first-child{
  font-weight:600;
  color:#09201B;
}
.users-directory table tbody tr:hover td{
  background:#e7f7ef;
}
.users-directory table td:last-child{
  font-variant-numeric:tabular-nums;
}
.users-directory input[disabled]{
  opacity:0.45;
  cursor:not-allowed;
}
@media (max-width:640px){
  .section-header{
    flex-direction:column;
    align-items:flex-start;
  }
  .section-header .section-actions{
    width:100%;
  }
  .section-header .section-actions .input{
    width:100%;
    min-width:0;
  }
}
.form .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card + .card {
  margin-top: 10px;
}
.admin-dashboard{margin:32px 0}
.admin-dashboard h2{margin:0 0 16px 0;font-size:1.4rem;font-weight:600}
.admin-metrics-grid{display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));align-items:stretch}
@media (min-width:1200px){.admin-metrics-grid{grid-template-columns:repeat(6,minmax(0,1fr))}}
.metric-card{min-height:140px;padding:20px;justify-content:center;align-items:flex-start;border:1px solid #e6e6e6;background:#fff;position:relative}
.metric-card-badge{
  position:absolute;
  top:38px;
  right:4px;
  min-width:24px;
  height:24px;
  border-radius:999px;
  background:#EB5C37;
  border: 1.5px solid #000;
  box-shadow: 1px 1px 0 0 #000;
  color:#fff;
  font-size:0.7rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6px;
}
.metric-card-badge-stack{
  position:absolute;
  bottom:10px;
  right:2px;
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:flex-end;
}
.metric-card-badge-stack .metric-card-badge{
  position:relative;
  top:auto;
  right:auto;
  min-width:0;
  height:auto;
  padding:2px 8px;
  justify-content:flex-start;
  gap:6px;
}
.metric-card-badge-label{
  font-size:0.65rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#fff;
  opacity:0.85;
}
.metric-card-badge-value{
  font-size:0.95rem;
  font-weight:700;
  color:#fff;
}
.metric-card-badge--pending{
  background:#F9B122;
}
.metric-card-label{margin:0;font-size:0.85rem;text-transform:uppercase;letter-spacing:0.08em;color:#111 !important;align-self:center;font-weight: 700;}
.metric-card-value{margin:4px 0;font-size:4rem;font-weight:700;align-self:center;}
.metric-card-subtext{margin:0;font-size:0.9rem;color:#777}
.metric-card--primary{
  background:#fafafa;
  color:#111;
  border-color:#111;
}
.metric-card--primary .metric-card-label,.metric-card--primary .metric-card-subtext{color:#555}
.metric-card--empty{border:1px dashed #dadada;color:#bbb;justify-content:center;align-items:center;text-transform:uppercase;font-size:0.85rem;letter-spacing:0.08em}
.metric-card-btn{
  margin-top:auto;
  padding:6px 12px;
  border:1px solid currentColor;
  border-radius:8px;
  background:transparent;
  color:inherit;
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  align-self:center;
  cursor:pointer;
  transition:background 0.15s ease,color 0.15s ease;
  text-decoration:none;
  font-weight: 700;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.metric-card-btn:hover,.metric-card-btn:focus{background:rgba(0,0,0,0.08)}
.metric-card--primary .metric-card-btn{
    padding: 0.5rem 0.5rem;
    margin: 0.2rem;
    background-color: #daf5e3;
    color: #333;
    border: 1.5px solid #000;
    box-shadow: 2px 2px 0 0 #000;
}
.metric-card--primary .metric-card-btn:hover,.metric-card--primary .metric-card-btn:focus{background:rgba(0,0,0,0.1)}
.operator-section{
  margin:64px 0;
  text-align:center;
}
.operator-header{
  max-width:640px;
  margin:0 auto 32px auto;
}
.operator-header .eyebrow{
  margin:0;
  font-size:0.85rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#888;
}
.operator-header h2{
  margin:8px 0 12px 0;
  font-size:1.8rem;
}
.operator-header .lead{
  margin:0;
  color:#555;
  font-size:1rem;
}
.operator-card-link{
  text-decoration:none;
  color:inherit;
  display:block;
  height:100%;
}
.operator-card-link:focus-visible .operator-card,
.operator-card-link:hover .operator-card{
  border-color:#09201B;
  box-shadow:2px 2px 0 0 #09201B;
}
.operator-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
}
.operator-card{
  background:none;
  border:none;
  border-radius:18px;
  padding:24px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  box-shadow:none;
  height:100%;
}
.operator-avatar{
  width:86px;
  height:86px;
  border-radius:50%;
  margin:0;
  overflow:hidden;
  border:3px solid #09201B;
  box-shadow:none;
}
.operator-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.operator-name{
  margin:0;
  font-size:1rem;
  font-weight:600;
}
.operator-location{
  margin:0;
  font-size:0.95rem;
  color:#666;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.operator-pin{
  width:18px;
  height:18px;
  display:inline-flex;
}
.operator-pin svg{
  width:100%;
  height:100%;
  fill:#1B7754;
}
@media (max-width:1200px){
  .operator-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
}
@media (max-width:992px){
  .operator-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width:768px){
  .operator-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:520px){
  .operator-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
.operator-grid-notice{
  margin-bottom:16px;
  font-size:0.95rem;
  color:#555;
}
.operator-grid[aria-busy="true"]{
  opacity:0.5;
}
.operator-card[data-state="inactive"]{
  opacity:0.55;
}
.operator-avatar .operator-initials{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  letter-spacing:0.08em;
  color:#111;
  background:#daf5e3;
}

#activityForm {
  border: none;
  box-shadow: none;
  background: transparent;
}

.catalog-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: flex-end;
  padding: 0.5rem 0;
}

.catalog-search-field {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
}

.catalog-search-field input,
.catalog-search-field select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-muted, #d9d9d9);
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #fff;
  color: inherit;
  min-height: 40px;
}

.catalog-search .btn {
  margin-left: auto;
  padding: 0.6rem 1.1rem;
  min-height: 40px;
}

@media (max-width: 640px) {
  .catalog-search {
    flex-direction: column;
    gap: 0.2rem;
    align-items: stretch;
    margin-top: 0.5rem;
  }

  .catalog-search-field + .catalog-search-field,
  .catalog-search-field + .btn,
  .catalog-search .btn + * {
    margin-top: 0;
  }

  .catalog-search-field {
    width: 100%;
    min-width: 100%;
  }

  .catalog-search-field input,
  .catalog-search-field select {
    font-size: 1rem;
  }

  .catalog-search .btn {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .catalog-search {
    padding: 0.2rem 0;
    gap: 0.2rem;
  }

  .catalog-search-field input,
  .catalog-search-field select,
  .catalog-search .btn {
    min-height: 38px;
  }

  .catalog-search-field select {
    font-size: 0.95rem;
  }
}

.adverts-admin{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin:32px auto;
}
.adverts-overview .eyebrow{
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:0.8rem;
  color:#888;
  margin:0 0 4px 0;
}
.adverts-overview .plan-pricing{
  text-align:right;
}
.adverts-overview .plan-pricing ul{
  list-style:none;
  margin:8px 0 0 0;
  padding:0;
}
.adverts-overview .plan-pricing li{
  font-weight:600;
  font-size:0.9rem;
}
.plan-table th,
.plan-table td{
  font-size:0.9rem;
}
.plan-table tr[data-plan="gold"] td:first-child{color:#c47c00;font-weight:700}
.plan-table tr[data-plan="silver"] td:first-child{color:#6f7cac;font-weight:700}
.plan-table tr[data-plan="bronze"] td:first-child{color:#b87b4b;font-weight:700}
.advert-form-grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1fr);
  gap:24px;
  align-items:flex-start;
}
.advert-preview{
  border:1px dashed #d7d7d7;
  border-radius:16px;
  padding:16px;
  background:#fff;
}
.advert-preview .preview-label{
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#888;
  margin:0 0 8px 0;
}
.advert-media{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:12px;
}
.advert-media img{
  width:100%;
  display:block;
  height:auto;
  aspect-ratio:1/1;
  object-fit:cover;
}
.advert-brand{
  margin:0;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-size:0.75rem;
  color:#888;
}
.advert-cta{
  justify-content:flex-start;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:0.85rem;
}
.advert-card-link[aria-disabled="true"]{
  pointer-events:none;
  opacity:0.65;
}
.form-row small{
  color:#777;
  display:block;
  margin-top:4px;
  font-size:0.75rem;
}
.notice[data-state="error"]{
  border-color:#EB5C37;
  color:#EB5C37;
}
.notice[data-state="success"]{
  border-color:#1B7754;
  color:#1B7754;
}

.booking-status-chip{
  display:inline-flex;
  align-items:center;
  padding:3px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.02em;
  border:1px solid #d9d9d9;
  background:#f6f6f6;
}
.booking-status-chip[data-status="approved"]{
  background:#daf5e3;
  border-color:#1B7754;
  color:#12533b;
}
.booking-status-chip[data-status="rejected"],
.booking-status-chip[data-status="cancelled"]{
  background:#ffe8e3;
  border-color:#EB5C37;
  color:#8f2e14;
}

.booking-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
}

.booking-card{
  border:1px solid #e6e6e6;
  border-radius:12px;
  background:#fff;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.booking-card h4{
  margin:0;
  font-size:1rem;
}

.booking-card .meta{
  font-size:0.85rem;
  color:#555;
}
@media (max-width:900px){
  .advert-form-grid{grid-template-columns:1fr}
  .adverts-overview .plan-pricing{text-align:left}
}

.site-footer{
  margin-top:auto;
  border-top:1px solid #e6e6e6;
  background:linear-gradient(180deg,#fff 0%,#f3f7f0 100%);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 16px;
  flex-wrap:wrap;
}
.footer-branding{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-logo-link{
  display:inline-flex;
  align-items:center;
}
.footer-logo{
  display:block;
  width:auto;
}
.footer-logo-main{
  height:24px;
}
.footer-logo-mark{
  height:24px;
  border-radius:50%;
  border:1px solid #d7d7d7;
}
.footer-links{
  display:flex;
  align-items:center;
  gap:1px;
  flex-wrap:wrap;
}
.footer-sub-nav{
  display:flex;
  flex:1 0 100%;
  gap:8px;
  margin-top:4px;
  padding-top:8px;
  border-top:1px solid #dfe6db;
  justify-content:flex-start;
  flex-wrap:wrap;
}
.footer-sub-nav .nav-link{
  font-size:11px;
  padding:4px 8px;
}
.footer-links a{
  font-size:0.82rem;
  font-weight:600;
  color:#0f162d;
  text-decoration:none;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid transparent;
}
.footer-links a:hover,
.footer-links a:focus-visible{
  border-color:none;
  box-shadow:none;
}
.footer-links .accredit-logo-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  padding:6px;
  border-radius:10px;
  border: none;
  background:#fff;
}
.footer-links .accredit-logo-img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
@media (max-width:640px){
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .footer-links{
    width:100%;
    justify-content:flex-start;
    gap:8px;
  }
  .footer-sub-nav{
    width:100%;
    margin-top:0;
  }
}

.policy-page{
  margin:32px auto;
}
.policy-page h1{
  margin:0 0 12px 0;
}
.policy-page p{
  margin:0 0 12px 0;
  line-height:1.6;
  color:#333;
}
.contact-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:16px 0 0 0;
}
.contact-list a{
  color:#0f162d;
  font-weight:600;
  text-decoration:none;
}
.contact-list a:hover,
.contact-list a:focus-visible{
  text-decoration:underline;
}
