@font-face {
  font-family: "MainFont";
  src: url("../assets/fonts/Rubik[wght].ttf") format("truetype");
}

:root {
  --navy: #071728;
  --navy2: #0b2238;
  --gold: #c9a34a;
  --gold2: #e3c56e;
  --muted: #667386;
  --line: #e7e2d8;
  --bg: #f4f1eb;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(7, 23, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--navy);
  font-family: "MainFont", Arial, sans-serif;
}

.dashPage {
  min-height: 100vh;
  padding: 28px;
}

/* Login */
.loginBox {
  width: 100%;
  max-width: 460px;
  margin: 55px auto;
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.dashLogo {
  width: 125px;
  display: block;
  margin: 0 auto 18px;
}

.loginBox h1 {
  margin: 0;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
}

.loginBox p {
  margin: 7px 0 26px;
  color: var(--muted);
}

.loginBox input {
  width: 100%;
  padding: 15px;
  margin-bottom: 12px;
  border: 1px solid #d8d4ca;
  background: #fff;
  font-size: 16px;
}

.googleBtn,
.loginBtn,
#logoutBtn,
.dashGrid button {
  width: 100%;
  border: 0;
  padding: 14px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.googleBtn {
  background: #fff;
  border: 1px solid var(--gold);
  color: var(--navy);
}

.loginBtn {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
}

.orLine {
  margin: 16px 0;
  color: var(--muted);
  font-weight: 800;
}

.dashMessage {
  margin: 0 0 16px;
  padding: 13px;
  border-right: 4px solid #b42318;
  background: #fff4f2;
  color: #b42318;
  font-weight: 800;
}

/* Dashboard */
.dashboardBox {
  max-width: 1180px;
  margin: 0 auto;
}

.dashHeader {
  height: 86px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid rgba(227, 197, 110, 0.28);
  box-shadow: 0 8px 24px rgba(7, 23, 40, 0.18);
}

.dashBrand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashBrand img {
  width: 58px;
}

.dashBrand h2 {
  margin: 0;
  color: var(--gold2);
  font-size: 25px;
  line-height: 1;
}

.dashBrand p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

#logoutBtn {
  width: auto;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(227, 197, 110, 0.5);
  padding: 12px 22px;
}

.welcomeCard {
  margin-top: 24px;
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 28px;
  box-shadow: var(--shadow);
}

.welcomeCard h1 {
  margin: 0 0 8px;
  font-size: 32px;
  color: var(--navy);
}

.welcomeCard p {
  margin: 0;
  color: var(--muted);
}

.dashGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dashGrid article {
  background: #fff;
  border: 1px solid rgba(15, 29, 47, 0.08);
  border-top: 3px solid var(--gold);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(7, 23, 40, 0.08);
  transition: 0.2s;
}

.dashGrid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(7, 23, 40, 0.13);
}

.dashGrid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.dashGrid p {
  min-height: 54px;
  color: var(--muted);
  line-height: 1.6;
}

.dashGrid button {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
}

@media (max-width: 900px) {
  .dashGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .dashPage {
    padding: 16px;
  }

  .loginBox {
    margin: 25px auto;
    padding: 28px 22px;
  }

  .dashHeader {
    height: auto;
    padding: 18px;
    gap: 14px;
    flex-direction: column;
    text-align: center;
  }

  #logoutBtn {
    width: 100%;
  }

  .dashGrid {
    grid-template-columns: 1fr;
  }
}

.updateManager textarea {
  width: 100%;
  height: 140px;
  resize: none;
  padding: 14px;
  border: 1px solid #d8d4ca;
  font-family: inherit;
  margin-bottom: 15px;
}

.switchRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 700;
}

.switchRow input {
  width: 20px;
  height: 20px;
}

.dashCardBtn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  padding: 14px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.dashBackBtn {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(227, 197, 110, 0.5);
  padding: 12px 22px;
  font-weight: 900;
  text-decoration: none;
}

.dashInnerPage {
  padding: 28px;
}

.productsManager {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
}

.productForm {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadow);
}

.productForm input,
.productForm textarea {
  width: 100%;
  border: 1px solid #d8d4ca;
  padding: 14px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 15px;
}

.productForm textarea {
  min-height: 95px;
  resize: vertical;
}

.dashClearBtn {
  width: 100%;
  margin-top: 10px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 14px;
  font-weight: 900;
}

.dashProductsList {
  display: grid;
  gap: 14px;
}

.dashProductCard {
  background: #fff;
  border: 1px solid rgba(15, 29, 47, 0.08);
  border-right: 4px solid var(--gold);
  padding: 14px;
  display: grid;
  grid-template-columns: 110px 1fr 120px;
  gap: 14px;
  align-items: center;
  box-shadow: 0 8px 22px rgba(7, 23, 40, 0.08);
}

.dashProductCard img {
  width: 110px;
  height: 90px;
  object-fit: cover;
}

.dashProductCard h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.dashProductCard p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.5;
}

.dashProductCard b {
  display: block;
  color: var(--gold);
  font-size: 22px;
}

.dashProductCard small {
  display: block;
  color: var(--muted);
}

.productActions {
  display: grid;
  gap: 8px;
}

.productActions button {
  border: 0;
  padding: 11px;
  font-weight: 900;
  background: var(--navy);
  color: #fff;
}

.productActions .deleteBtn {
  background: #a33;
}

.emptyDash {
  background: #fff;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .productsManager {
    grid-template-columns: 1fr;
  }

  .dashProductCard {
    grid-template-columns: 90px 1fr;
  }

  .productActions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

.productToast {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 99999;
  min-width: 320px;
  background: #071728;
  color: #fff;
  border-right: 4px solid #c9a34a;
  padding: 18px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s;
  pointer-events: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.productToast.show {
  opacity: 1;
  transform: translateY(0);
}

.productToast.success {
  border-right-color: #22c55e;
}

.productToast.error {
  border-right-color: #ef4444;
}

.updatesManager {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
}

.updatesListBox {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadow);
}

.updatesListBox h3,
.productForm h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
}

.dashUpdateCard {
  background: #fff;
  border: 1px solid rgba(15, 29, 47, 0.08);
  border-right: 4px solid var(--gold);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 14px;
  align-items: center;
  box-shadow: 0 8px 22px rgba(7, 23, 40, 0.08);
}

.dashUpdateCard h3 {
  margin: 0 0 8px;
  color: var(--goldDark);
  font-size: 18px;
}

.dashUpdateCard p {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.7;
  font-weight: 700;
}

.dashUpdateCard small {
  color: var(--muted);
}

@media (max-width: 900px) {
  .updatesManager {
    grid-template-columns: 1fr;
  }

  .dashUpdateCard {
    grid-template-columns: 1fr;
  }
}

.discountsManager {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.discountsListBox {
  margin-top: 22px;
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadow);
}

.discountsListBox h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
}

.productForm select {
  width: 100%;
  border: 1px solid #d8d4ca;
  padding: 14px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

@media (max-width: 900px) {
  .discountsManager {
    grid-template-columns: 1fr;
  }
}

.dashFieldLabel {
  display: block;
  margin: 8px 0 6px;
  color: var(--navy);
  font-weight: 900;
}

.statsCards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.statsCards article,
.analyticsCard {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadow);
}

.statsCards span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}

.statsCards b {
  font-size: 34px;
  color: var(--navy);
}

.analyticsGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.analyticsCard h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
}

.pieChart {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  margin: 10px auto 22px;
  background: #e7e2d8;
  box-shadow:
    inset 0 0 0 18px #fff,
    0 12px 30px rgba(7, 23, 40, 0.12);
}

.chartLegend {
  display: grid;
  gap: 10px;
}

.chartLegend span {
  color: var(--navy);
  font-weight: 800;
}

.chartLegend i {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 8px;
}

.chartLegend .green {
  background: #22c55e;
}
.chartLegend .red {
  background: #ef4444;
}
.chartLegend .blue {
  background: #3b82f6;
}
.chartLegend .gold {
  background: var(--gold);
}

.barChart {
  display: grid;
  gap: 14px;
}

.barRow {
  display: grid;
  grid-template-columns: 120px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.barRow span {
  color: var(--navy);
  font-weight: 800;
}

.barRow div {
  height: 14px;
  background: #eee7d8;
  overflow: hidden;
}

.barRow div b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.barRow strong {
  color: var(--muted);
  text-align: left;
}

.leaderList {
  display: grid;
  gap: 10px;
}

.leaderItem {
  display: grid;
  grid-template-columns: 34px 1fr 50px;
  align-items: center;
  gap: 10px;
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 12px;
}

.leaderItem b {
  background: var(--navy);
  color: var(--gold2);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.leaderItem span {
  color: var(--navy);
  font-weight: 800;
}

.leaderItem strong {
  color: var(--gold);
  text-align: left;
}

@media (max-width: 900px) {
  .statsCards,
  .analyticsGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .statsCards,
  .analyticsGrid {
    grid-template-columns: 1fr;
  }

  .barRow {
    grid-template-columns: 1fr;
  }

  .barRow strong {
    text-align: right;
  }
}

.ordersListBox {
  margin-top: 22px;
}

.dashOrderCard {
  background: #fff;
  border: 1px solid rgba(15, 29, 47, 0.08);
  border-right: 4px solid var(--gold);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 18px;
  box-shadow: 0 8px 22px rgba(7, 23, 40, 0.08);
}

.dashOrderCard h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.dashOrderCard p {
  margin: 5px 0;
  color: var(--muted);
}

.orderTotal {
  display: block;
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .dashOrderCard {
    grid-template-columns: 1fr;
  }
}

.optionsManagerBox {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 20px;
  margin-top: 10px;
  box-shadow: var(--shadow);
}

.optionsManagerBox h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.optionEditRow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 120px 90px;
  gap: 12px;
  align-items: center;
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 14px;
  margin-bottom: 12px;
  direction: ltr;
}

.optionEditRow input {
  width: 100%;
  height: 48px;
  border: 1px solid #d8d4ca;
  background: #fff;
  padding: 0 12px;
  font-size: 15px;
}

.optionEditRow input::placeholder {
  color: #667386;
  opacity: 1;
  font-weight: 700;
}

.optionCheck {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d8d4ca;
  font-weight: 900;
  color: var(--navy);
}

.optionCheck input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.optionEditRow button {
  height: 48px;
  border: 0;
  background: #b42318;
  color: #fff;
  font-weight: 900;
}

#addOptionBtn {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .optionEditRow {
    grid-template-columns: 1fr;
  }

  .optionCheck {
    justify-content: flex-start;
    padding: 0 12px;
  }
}

.optionsTableHead {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 120px 90px;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.optionsTableHead span {
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 10px;
}

.optionsTableHead {
  direction: ltr;
}

.optionEditRow input,
.optionCheck,
.optionEditRow button,
.optionsTableHead span {
  direction: rtl;
}
.optionCard {
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 16px;
  margin-bottom: 12px;
}

.optionCard label {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
  color: var(--navy);
}

.optionCard input[type="text"],
.optionCard input[type="number"],
.optionCard input:not([type="checkbox"]) {
  width: 100%;
  margin-bottom: 12px;
}

.optionCheckCard {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.deleteOptionBtn {
  width: 100%;
  border: 0;
  background: #b42318;
  color: #fff;
  padding: 12px;
  font-weight: 900;
}

.reviewsManager {
  margin-top: 22px;
}

.reviewsList {
  display: grid;
  gap: 18px;
}

.dashReviewCard {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-right: 4px solid var(--gold);
  padding: 22px;
  box-shadow: var(--shadow);
}

.dashReviewCard.hiddenReview {
  opacity: 0.55;
}

.reviewTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.reviewTop h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.reviewTop p,
.reviewTop small {
  color: var(--muted);
}

.reviewTop strong {
  background: var(--navy);
  color: var(--gold2);
  padding: 8px 12px;
  font-weight: 900;
}

.reviewServiceBox,
.reviewAttractionRow {
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 16px;
  margin-bottom: 12px;
}

.reviewServiceBox h4,
.reviewAttractionRow h4 {
  margin: 0 0 8px;
  color: var(--navy);
}

.reviewServiceBox b,
.reviewAttractionRow b {
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.reviewServiceBox textarea,
.reviewAttractionRow textarea {
  width: 100%;
  min-height: 90px;
  border: 1px solid #d8d4ca;
  padding: 12px;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}

.reviewActions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.reviewActions button {
  border: 0;
  background: var(--navy);
  color: #fff;
  padding: 13px;
  font-weight: 900;
}

.reviewActions .deleteBtn {
  background: #b42318;
}

@media (max-width: 700px) {
  .reviewTop {
    flex-direction: column;
  }

  .reviewActions {
    grid-template-columns: 1fr;
  }
}

.confirmModal {
  position: fixed;
  inset: 0;
  background: rgba(7, 23, 40, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.confirmModal.show {
  display: flex;
}

.confirmBox {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  animation: modalShow 0.2s ease;
}

.confirmBox h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
}

.confirmBox p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.confirmActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.confirmDeleteBtn {
  border: 0;
  background: #b42318;
  color: #fff;
  padding: 14px;
  font-weight: 900;
  cursor: pointer;
}

.confirmCancelBtn {
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--navy);
  padding: 14px;
  font-weight: 900;
  cursor: pointer;
}

@keyframes modalShow {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.confirmModal {
  position: fixed;
  inset: 0;
  background: rgba(7, 23, 40, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.confirmModal.show {
  display: flex;
}

.confirmBox {
  width: calc(100% - 28px);
  max-width: 480px;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.confirmBox h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
}

.confirmBox p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 700;
}

.confirmActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.confirmDeleteBtn {
  border: 0;
  background: #b42318;
  color: #fff;
  padding: 14px;
  font-weight: 900;
}

.confirmCancelBtn {
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--navy);
  padding: 14px;
  font-weight: 900;
}

.dashLoader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashLoaderBox {
  width: min(420px, calc(100% - 32px));
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.dashLoaderBox img {
  width: 105px;
  margin-bottom: 14px;
}

.dashLoaderBox h2 {
  margin: 0;
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
}

.dashLoaderBox p {
  margin: 8px 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.loaderLine {
  height: 4px;
  background: rgba(201, 163, 74, 0.22);
  overflow: hidden;
  position: relative;
}

.loaderLine::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--gold);
  animation: dashLoad 1.1s infinite ease-in-out;
}

@keyframes dashLoad {
  0% {
    right: -40%;
  }

  100% {
    right: 100%;
  }
}

.manualOrderBox {
  margin-top: 22px;
  max-width: 620px;
}

.manualOrderBox .productForm h3 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.manualOrderBox select {
  width: 100%;
  border: 1px solid #d8d4ca;
  padding: 14px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

.dashBrand {
  text-decoration: none;
  color: inherit;
}

.dashBrand h2,
.dashBrand p {
  text-decoration: none;
}

.staffManager {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
}

.staffListBox {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, .35);
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadow);
}

.staffListBox h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
}

.staffCard {
  background: #f8f6f0;
  border: 1px solid var(--line);
  border-right: 4px solid var(--gold);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.staffCard h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.staffCard p {
  margin: 0 0 8px;
  color: var(--muted);
  direction: ltr;
  text-align: right;
}

.staffCard strong {
  color: var(--gold);
  font-weight: 900;
}

.staffCard button {
  border: 0;
  padding: 12px;
  font-weight: 900;
}

.staffCard .deleteBtn {
  background: #b42318;
  color: #fff;
}

.ownerBtn {
  background: var(--navy);
  color: var(--gold2);
}

@media (max-width: 900px) {
  .staffManager {
    grid-template-columns: 1fr;
  }

  .staffCard {
    grid-template-columns: 1fr;
  }
}

.ordersGroup {
  margin-bottom: 28px;
}

.ordersGroup h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 28px;
  border-right: 4px solid var(--gold);
  padding-right: 12px;
}

.logsTools {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  margin: 22px 0;
}

.logsTools input,
.logsTools select {
  width: 100%;
  border: 1px solid #d8d4ca;
  padding: 14px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

.logsList {
  display: grid;
  gap: 14px;
}

.logCard {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, .35);
  border-right: 4px solid var(--gold);
  padding: 18px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  box-shadow: var(--shadow);
}

.logIcon {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.logCard h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.logCard p {
  margin: 5px 0;
  color: var(--muted);
}

.logCard p b {
  color: var(--navy);
}

.logCard small {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 700px) {
  .logsTools {
    grid-template-columns: 1fr;
  }

  .logCard {
    grid-template-columns: 1fr;
  }
}

.dashBrand {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.dashBrand:hover h2 {
  color: var(--gold);
}

.dashBrand{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:inherit;
    cursor:pointer;
}

.dashBrand:hover h2{
    color:var(--gold);
}

.dashBrand:hover img{
    transform:scale(1.05);
}

.dashBrand img{
    transition:.2s;
}

.hiddenReview {
    opacity: .65;
}

.hiddenReview textarea,
.hiddenReview h4,
.hiddenReview b,
.hiddenReview p,
.hiddenReview small,
.hiddenReview h3 {
    opacity: .65;
}

.hiddenReview .reviewActions button {
    opacity: .45;
    filter: grayscale(100%);
}

.hiddenReview .reviewActions button:hover {
    opacity: .65;
}

.hiddenReview .reviewActions button:nth-child(2) {
    opacity: 1 !important;
    filter: none !important;
}

.guidesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.guideCard {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, .35);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.guideCard img,
.guideNoImage {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--navy);
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.guideCard > div {
  padding: 18px;
}

.guideCard h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.guideCard p {
  color: var(--muted);
  line-height: 1.6;
}

.guideCard button {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-weight: 900;
  padding: 13px;
  font-family: inherit;
}

#guideModal {
  display: none;
}

#guideModal.show {
  display: block;
}

.guideShade {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  z-index: 9998;
}

.guideModalBox {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(860px, calc(100% - 28px));
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.guideClose {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.guideModalBox h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 32px;
}

.guideDesc {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 18px;
}

.guideBigImage,
.guideVideo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 18px 0;
  border: 1px solid var(--line);
}

.guideContent {
  color: #334155;
  line-height: 1.9;
  font-size: 17px;
}

.guideContent h3 {
  color: var(--goldDark);
}

@media (max-width: 900px) {
  .guidesGrid {
    grid-template-columns: 1fr;
  }
}