﻿/* =========================================================

   COMPONENTS: buttons, tiles, cards, modal, forms
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  max-width: 100%;
}

.cartIcon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 16px;
}

.btnPrimary {
  background: linear-gradient(135deg, #c57f1a, #e6b84a);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(201, 162, 39, 0.25);
}

.btnPrimary:hover {
  transform: translateY(-1px);
}

.btnSecondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 162, 39, 0.25);
  color: var(--beige);
}

.btnSecondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 162, 39, 0.5);
}

.btnGhost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(243, 234, 215, 0.18);
  color: var(--beige);
}
.btnGhost:hover {
  background: rgba(243, 234, 215, 0.08);
  border-color: rgba(201, 162, 39, 0.25);
}

/* =======================
   Hero banner
   ======================= */
.heroBanner {
  margin: 18px auto 0;
  padding: 0;
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(243, 234, 215, 0.14);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSlides,
.heroOverlay {
  position: absolute;
  inset: 0;
}

.heroOverlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2));
}

.heroContent {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  text-align: center;
}

.heroTitle {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -1px;
  line-height: 1.05;
}

.heroTagline {
  margin: 12px 0 0;
  color: rgba(243, 234, 215, 0.88);
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.heroCTA {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* =======================
   Tiles section
   ======================= */
.tilesSection {
  padding: 18px 0 36px;
}

.tilesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.tilesSectionNoWrap .tilesGrid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tilesSectionNoWrap .tile {
  flex: 0 0 190px;
}

.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(243, 234, 215, 0.14);
  min-height: 160px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  background-image: var(--tile-bg);
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  transition: transform 0.25s ease;
}

.tileOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18));
  transition: 0.25s ease;
}

.tileText {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  z-index: 2;
}

.tileText h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.tileText span {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(243, 234, 215, 0.9);
  opacity: 0.9;
}

.tile:hover {
  transform: scale(1.02);
}

.tile:hover .tileOverlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25));
}

/* =======================
   Trapezium section
   ======================= */
.visionSection {
  padding: 10px 0 26px;
}

.visionBox {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(243, 234, 215, 0.14);
  background: rgba(0, 0, 0, 0.78);
  background-size: cover;
  background-position: center;
  padding: 38px;
  box-shadow: var(--shadow);
}

.visionBox h2 {
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: -0.4px;
}

/* Vision text animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visionBox h2 {
  opacity: 1;
}

.visionBox.animateText h2 {
  opacity: 0;
  transform: translateY(8px);
  animation: slideUpFade 420ms ease forwards;
}
.visionBox.animateText .visionText p {
  opacity: 0;
  transform: translateY(10px);
}
.visionBox.animateText .visionText p:nth-of-type(1) {
  animation: slideUpFade 460ms ease forwards 80ms;
}
.visionBox.animateText .visionText p:nth-of-type(2) {
  animation: slideUpFade 520ms ease forwards 200ms;
}

.visionText {
  height: var(--vision-height, 290px);
  overflow: hidden;
  position: relative;
}

.visionText p {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-size: 21px;
  line-height: 1.6;
}
.visionText p.isActive {
  opacity: 1;
}

.visionToggle {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(243, 234, 215, 0.18);
  color: var(--beige);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.visionToggle:hover {
  background: rgba(243, 234, 215, 0.08);
  border-color: rgba(201, 162, 39, 0.25);
}

.trapeziumSection {
  margin: 10px auto 0;
  padding: 66px 0;
  position: relative;

  /* Trapezium shape */
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.2),
    rgba(255, 255, 255, 0.04)
  );
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-bottom: 1px solid rgba(243, 234, 215, 0.12);

  /* Clip-path makes trapezium top edge */
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.trapeziumInner {
  text-align: left;
  max-width: 820px;
}

.trapeziumInner h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.4px;
}

.trapeziumInner p {
  margin: 10px 0 0;
  color: rgba(243, 234, 215, 0.82);
}

.trapeziumActions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =======================
   Cards and forms
   ======================= */
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(243, 234, 215, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cardImage {
  height: 120px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(243, 234, 215, 0.18);
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: height 0.24s ease, background-size 0.24s ease;
}

.card.cardExpandable {
  cursor: pointer;
}

.card.cardExpandable .cardImage {
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}

.card.cardExpandable .cardImage::after {
  content: "Expand";
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.card.cardExpanded {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.card.cardExpanded .cardImage {
  height: 220px;
  background-size: contain;
  background-position: center center;
  cursor: zoom-out;
}

.card.cardExpanded .cardImage::after {
  content: "Expanded";
}

.cardImagePlaceholder {
  background-image: none;
}



/* Service/product card images */
.cardNailsClassicManicure {
  background-image: url("../assets/mani.jpeg");
}
.cardNailsGelManicure {
  background-image: url("../assets/gel.jpeg");
}
.cardNailsBiab {
  background-image: url("../assets/biab.jpeg");
}
.cardNailsFrench {
  background-image: url("../assets/french.jpeg");
}
.cardNailsGelRemoval {
  background-image: url("../assets/remover.jpeg");
}
.cardNailsGelRemovalNew {
  background-image: none;
}
.cardNailsFullPedicure {
  background-image: url("../assets/full_pedi.jpeg");
}
.cardNailsPedicurePolish {
  background-image: url("../assets/pedicure.jpeg");
}

.cardCosmeticsMakeup {
  background-image: url("../assets/cosmetics.jpg");
}
.cardCosmeticsSkinCare {
  background-image: url("../assets/cosmetics.jpeg");
}
.cardCosmeticsFragrance {
  background-image: url("../assets/fragrance.jpeg");
}

.cardJewelryNecklaces {
  background-image: url("../assets/necklace.jpeg");
}
.cardJewelryRings {
  background-image: url("../assets/rings.jpeg");
}
.cardJewelryBracelets {
  background-image: url("../assets/bracelets.jpeg");
}

/* Male services card images */
.malePage main > .contentSection:nth-of-type(2) .card:nth-child(1) .cardImage {
  background-image: none;
}
.malePage main > .contentSection:nth-of-type(2) .card:nth-child(2) .cardImage {
  background-image: url("../assets/men_layered_cut.jpeg");
}
.malePage main > .contentSection:nth-of-type(2) .card:nth-child(3) .cardImage {
  background-image: url("../assets/men_blow_dry.jpeg");
}
.malePage main > .contentSection:nth-of-type(2) .card:nth-child(4) .cardImage {
  background-image: url("../assets/men_silk_press.jpeg");
}
.malePage main > .contentSection:nth-of-type(2) .card:nth-child(5) .cardImage {
  background-image: none;
}

.malePage main > .contentSection:nth-of-type(3) .card:nth-child(1) .cardImage {
  background-image: url("../assets/male_locs.jpeg");
}
.malePage main > .contentSection:nth-of-type(3) .card:nth-child(2) .cardImage {
  background-image: url("../assets/women_logs_retwist.jpeg");
}
.malePage main > .contentSection:nth-of-type(3) .card:nth-child(3) .cardImage {
  background-image: url("../assets/women_interlock.jpeg");
}
.malePage main > .contentSection:nth-of-type(3) .card:nth-child(4) .cardImage {
  background-image: url("../assets/women_faux_locs.jpeg");
}

.malePage main > .contentSection:nth-of-type(4) .card:nth-child(1) .cardImage {
  background-image: none;
}
.malePage main > .contentSection:nth-of-type(4) .card:nth-child(2) .cardImage {
  background-image: url("../assets/men_low_fade.jpeg");
}
.malePage main > .contentSection:nth-of-type(4) .card:nth-child(3) .cardImage {
  background-image: url("../assets/men_fade.jpeg");
}
.malePage main > .contentSection:nth-of-type(4) .card:nth-child(4) .cardImage {
  background-image: none;
}
.malePage main > .contentSection:nth-of-type(4) .card:nth-child(5) .cardImage {
  background-image: none;
}

.malePage main > .contentSection:nth-of-type(5) .card:nth-child(1) .cardImage {
  background-image: none;
}
.malePage main > .contentSection:nth-of-type(5) .card:nth-child(2) .cardImage {
  background-image: none;
}
.malePage main > .contentSection:nth-of-type(5) .card:nth-child(3) .cardImage {
  background-image: none;
}
.malePage main > .contentSection:nth-of-type(5) .card:nth-child(4) .cardImage {
  background-image: url("../assets/women_hair_steaming.jpeg");
}
.malePage main > .contentSection:nth-of-type(5) .card:nth-child(5) .cardImage {
  background-image: none;
}
.malePage main > .contentSection:nth-of-type(5) .card:nth-child(6) .cardImage {
  background-image: none;
}

.malePage main > .contentSection:nth-of-type(6) .card:nth-child(1) .cardImage {
  background-image: none;
}

/* Female services card images */
.femalePage
  main
  > .contentSection:nth-of-type(2)
  .card:nth-child(2)
  .cardImage {
  background-image: url("../assets/layered_women_cut.jpeg");
}

.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(1)
  .cardImage {
  background-image: url("../assets/women_box_braids.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(2)
  .cardImage {
  background-image: url("../assets/women_knotless_braids.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(3)
  .cardImage {
  background-image: url("../assets/women_ghana_braids.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(4)
  .cardImage {
  background-image: url("../assets/women_feedin_braids.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(6)
  .cardImage {
  background-image: url("../assets/braids_cornrolls.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(7)
  .cardImage {
  background-image: url("../assets/women_boho_braids.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(8)
  .cardImage {
  background-image: url("../assets/women_french_curls.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(9)
  .cardImage {
  background-image: url("../assets/women_stitch_braids.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(3)
  .card:nth-child(10)
  .cardImage {
  background-image: url("../assets/women_twist_braids.jpeg");
}

.femalePage
  main
  > .contentSection:nth-of-type(4)
  .card:nth-child(1)
  .cardImage {
  background-image: none;
}
.femalePage
  main
  > .contentSection:nth-of-type(4)
  .card:nth-child(2)
  .cardImage {
  background-image: url("../assets/women_senegalese_twist.jpeg");
}

.femalePage
  main
  > .contentSection:nth-of-type(5)
  .card:nth-child(2)
  .cardImage {
  background-image: url("../assets/women_logs_retwist.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(5)
  .card:nth-child(3)
  .cardImage {
  background-image: url("../assets/women_interlock.jpeg");
}
.femalePage
  main
  > .contentSection:nth-of-type(5)
  .card:nth-child(4)
  .cardImage {
  background-image: url("../assets/women_faux_locs.jpeg");
}

.femalePage
  main
  > .contentSection:nth-of-type(9)
  .card:nth-child(4)
  .cardImage {
  background-image: url("../assets/women_hair_steaming.jpeg");
}
/* Kids services card images */
.kidsPage main > .contentSection:nth-of-type(2) .card:nth-child(1) .cardImage {
  background-image: none;
}
.kidsPage main > .contentSection:nth-of-type(2) .card:nth-child(2) .cardImage {
  background-image: none;
}
.kidsPage main > .contentSection:nth-of-type(2) .card:nth-child(3) .cardImage {
  background-image: url("../assets/cornrows.jpeg");
}
.kidsPage main > .contentSection:nth-of-type(2) .card:nth-child(4) .cardImage {
  background-image: url("../assets/kid_cuts.jpeg");
}
.kidsPage main > .contentSection:nth-of-type(2) .card:nth-child(5) .cardImage {
  background-image: none;
}

.priceTag {
  margin: 8px 0 12px;
}

.priceTag strong {
  color: #000;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.serviceToggle {
  display: none;
  margin-top: 10px;
  justify-content: center;
}

.serviceDetails {
  margin-top: 8px;
}

.serviceCardItem,
.serviceCardItem h3,
.serviceCardItem p,
.serviceCardItem li,
.serviceCardItem .muted,
.serviceCardItem .serviceDetails,
.serviceCardItem .serviceDetails p,
.serviceCardItem .serviceDetails li,
.serviceCardItem .priceTag,
.serviceCardItem .priceTag strong {
  color: #000000;
  text-shadow: none;
}

.serviceCardItem .muted {
  opacity: 1;
}

@media (max-width: 720px) {
  .serviceToggle {
    display: inline-flex;
    width: 100%;
  }

  .serviceDetails {
    display: none;
  }

  .serviceCardItem.isOpen .serviceDetails {
    display: block;
  }

  .kidsPage .serviceToggle {
    display: none;
  }

  .kidsPage .serviceDetails {
    display: block;
  }
}

/* Service category accordions on service pages */
.serviceCategorySection {
  padding: 8px 0 0;
}

.serviceCategorySection .serviceDropToggle {
  width: 100%;
  border: 1px solid rgba(243, 234, 215, 0.18);
  border-radius: 12px;
  background: rgba(11, 11, 11, 0.85);
  color: #ffffff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.serviceCategorySection .serviceDropTitle {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.serviceCategorySection .serviceDropArrow {
  font-size: 11px;
  transition: transform 0.24s ease;
}

.serviceCategorySection .serviceDropPanel {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition:
    max-height 0.28s ease,
    padding 0.28s ease;
}

.serviceCategorySection .serviceDropPanel .cardsGrid {
  margin-top: 12px;
}

.serviceCategorySection.isOpen .serviceDropArrow {
  transform: rotate(180deg);
}

.serviceCategorySection.isOpen .serviceDropPanel {
  padding: 0 0 4px;
}

.formCard {
  margin-top: 18px;
}

.formCardLight {
  background: #ffffff;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.08);
}

.formCardLight h3,
.formCardLight p,
.formCardLight label {
  color: #000000;
}

.formCardLight .muted {
  color: rgba(0, 0, 0, 0.7);
}

.formCardLight input,
.formCardLight textarea {
  background: var(--vegas);
  color: #000000;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
}

.formCardLight input::placeholder,
.formCardLight textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.formCardLight .btnGhost {
  color: #000000;
  border: 1.5px solid var(--vegas);
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

label {
  display: block;
  font-size: 13px;
  color: rgba(243, 234, 215, 0.82);
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(243, 234, 215, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.formActions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =======================
   Review CTA + modal form
   ======================= */
.reviewCtaInner {
  display: flex;
  justify-content: center;
}

.footerBottomCentered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footerCopyright {
  font-size: 12px;
  display: block;
  width: 100%;
  text-align: center;
  justify-self: center;
  grid-column: 2;
}

.footerReviewBtn {
  grid-column: 3;
  justify-self: end;
}

@media (max-width: 560px) {
  .footerBottomCentered {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }
  .footerCopyright,
  .footerReviewBtn {
    grid-column: 1;
  }
}

.bounceBtn {
  position: relative;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviewPanel {
  width: min(640px, calc(100% - 26px));
}

.thankYouPanel {
  width: min(520px, calc(100% - 26px));
}

.thankYouBody {
  text-align: center;
  padding: 24px 18px 26px;
}

.thankYouTitle {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: var(--beige);
}

.reviewForm {
  display: grid;
  gap: 12px;
}

.hidden {
  display: none;
}

.reviewField label {
  display: block;
  margin-bottom: 6px;
}

.starRating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
  font-size: 39px;
  line-height: 1;
}

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

.starRating label {
  cursor: pointer;
  color: rgba(243, 234, 215, 0.45);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  font-size: 39px;
}

.starRating label:hover,
.starRating label:hover ~ label {
  color: #f7cf6c;
  transform: translateY(-1px);
}

.starRating input:checked ~ label {
  color: #f7cf6c;
}

.reviewForm .formActions {
  margin-top: 4px;
}

.reviewStatus {
  margin: 6px 0 0;
}

/* =======================
   Reviews section
   ======================= */
.reviewsSection {
  padding: 18px 0 28px;
}

.reviewsMarquee {
  margin-top: 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 6px;
}

.reviewsTrack {
  display: inline-flex;
  gap: 14px;
  width: max-content;
  animation: reviewsMarquee 26s linear infinite;
}

.reviewCard {
  border-radius: var(--radius);
  border: 1px solid rgba(243, 234, 215, 0.12);
  background: rgba(0, 0, 0, 0.72);
  padding: 16px;
  box-shadow: var(--shadow);
  min-width: 260px;
  max-width: 320px;
}

.reviewStars {
  color: #f7cf6c;
  letter-spacing: 0.12em;
  font-size: 14px;
}

.reviewText {
  margin: 10px 0 8px;
  color: rgba(243, 234, 215, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.reviewMeta {
  font-size: 12px;
  color: rgba(243, 234, 215, 0.7);
}

@keyframes reviewsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .tilesGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .heroBanner {
    min-height: 440px;
  }
  .heroTitle {
    font-size: clamp(34px, 6vw, 56px);
  }
}

@media (max-width: 720px) {
  .heroBanner {
    min-height: 380px;
  }
  .heroContent {
    padding: 28px 16px;
  }
  .heroTagline {
    font-size: 13px;
    letter-spacing: 0.6px;
  }
}

@media (max-width: 560px) {
  .tilesGrid {
    grid-template-columns: 1fr;
  }
  .formRow {
    grid-template-columns: 1fr;
  }
  .reviewPanel {
    width: min(96vw, 520px);
  }
  .thankYouPanel {
    width: min(92vw, 420px);
  }
  .starRating {
    font-size: 32px;
    gap: 4px;
  }
  .starRating label {
    font-size: 32px;
  }
  .reviewsTrack {
    animation-duration: 32s;
  }
  .reviewCard {
    min-width: 220px;
    max-width: 260px;
  }
}

/* =======================
   Modal (booking popup)
   ======================= */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.isOpen {
  display: block;
}

.modal.modalCentered {
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.modalCentered.isOpen {
  display: flex;
}

.modalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modalPanel {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 26px));
  max-height: calc(100dvh - 20px);
  margin: 6vh auto 0;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(243, 234, 215, 0.14);
  background: rgba(11, 11, 11, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal.modalCentered .modalPanel {
  margin: 0;
}

.modal.modalCentered .tilesGrid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 240px));
  justify-content: center;
}

@media (max-width: 560px) {
  .modal.modalCentered .tilesGrid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
}

.modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(243, 234, 215, 0.1);
}

.modalTitle {
  margin: 0;
  font-size: 16px;
  color: var(--beige);
}
.modalClose {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(243, 234, 215, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--beige);
  cursor: pointer;
}

.modalBody {
  padding: 14px 16px 18px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.bookingEmbed {
  border-radius: 16px;
  border: 1px solid rgba(243, 234, 215, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  min-height: clamp(340px, 58vh, 520px);
}

.bookingCouponSection {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(243, 234, 215, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.bookingCouponSection h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.bookingCouponRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.couponPanel {
  width: min(92vw, 480px);
}

.couponCodeValue {
  margin-top: 8px;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(243, 234, 215, 0.35);
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--beige);
  word-break: break-word;
}

@media (max-width: 560px) {
  .bookingCouponRow {
    grid-template-columns: 1fr;
  }
}

.modalFooter {
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(243, 234, 215, 0.1);
}

/* =======================
   Cart styles
   ======================= */
.cartList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cartItem {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(243, 234, 215, 0.1);
}

.cartItem > span {
  flex: 1 1 240px;
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.cartTotal {
  margin-top: 20px;
  font-weight: bold;
  color: var(--beige);
}

.checkoutSection {
  margin-top: 20px;
}

.checkoutSection:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checkoutSection[hidden] {
  display: none !important;
}

.pickupChoiceWrap {
  margin: 0;
  padding: 12px;
  width: min(100%, 680px);
  border-radius: 12px;
  border: 1px solid rgba(243, 234, 215, 0.16);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.pickupChoiceWrap legend {
  padding: 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--beige);
}

.pickupChoiceOption {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--beige);
  font-size: 14px;
  line-height: 1.35;
}

.pickupChoiceOption input[type="radio"] {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  margin: 0;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: #e6b84a;
}

.pickupBookingWrap {
  margin-top: 12px;
  padding: 12px;
  width: min(100%, 680px);
  border-radius: 12px;
  border: 1px solid rgba(243, 234, 215, 0.16);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.pickupBookingTitle {
  margin: 0 0 10px;
  color: var(--beige);
  font-size: 14px;
}

.pickupBookingForm .formRow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.pickupBookingForm .formRow:last-child {
  margin-bottom: 0;
}

.pickupBookingForm input {
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(243, 234, 215, 0.2);
  background: rgba(0, 0, 0, 0.24);
  color: var(--beige);
  padding: 8px 10px;
}

.checkoutMessage {
  margin-top: 8px;
  width: min(100%, 680px);
  text-align: left;
}

.checkoutMessage.checkoutError {
  color: #ffb4b4;
}

.paypalButtonsContainer {
  margin-top: 12px;
  width: min(100%, 680px);
}

.removeBtn {
  font-size: 12px;
  padding: 5px 10px;
  margin-left: auto;
}

@media (max-width: 560px) {
  .pickupBookingForm .formRow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .modalPanel {
    width: calc(100% - 16px);
    margin: 2vh auto 0;
    border-radius: calc(var(--radius) + 4px);
  }

  .modalHeader,
  .modalBody,
  .modalFooter {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 560px) {
  .btn {
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .cartItem {
    gap: 10px;
  }

  .removeBtn {
    margin-left: 0;
  }
}

/* Promotion Banner (Black Friday style) */
@keyframes promoGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.promoBanner {
  background: linear-gradient(120deg, #0b0b0d 0%, #151518 100%);
  color: #ffffff;
  padding: 14px 0;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.promoInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 18px;
}

.promoMarquee {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
}

.promoMarqueeTrack {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 24px;
  animation: promoMarquee 18s linear infinite;
}

.promoMarqueeGroup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

@keyframes promoMarquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.promoEyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #d6d6d6;
}

.promoGradient {
  font-size: clamp(18px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(
    120deg,
    #0a0a0a 0%,
    #2b1c00 30%,
    #f7cf6c 50%,
    #0a0a0a 70%,
    #d4a04a 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: promoGradientShift 8s ease-in-out infinite;
}

.promoBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e1062a;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  box-shadow: 0 6px 14px rgba(225, 6, 42, 0.35);
}

.promoSub {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #bfbfbf;
}

.promoCta {
  background: #e1062a;
  color: #ffffff;
  white-space: nowrap;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border: none;
  box-shadow: 0 8px 18px rgba(225, 6, 42, 0.35);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .promoBanner {
    max-width: 100%;
    margin: 0 12px;
  }
  .promoInner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 8px 10px;
  }
  .promoMarquee {
    width: 100%;
  }
  .promoMarqueeTrack {
    animation-duration: 22s;
  }
  .promoEyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
  }
  .promoGradient {
    font-size: 22px;
  }
  .promoSub {
    font-size: 11px;
  }
  .promoCta {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }
}

@media (max-width: 560px) {
  .promoMarqueeGroup {
    gap: 10px;
  }
  .promoBadge {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}

/* =======================
   Black Friday style promo (gold accents)
   ======================= */
.bfPromo {
  padding: 28px 0 34px;
}

.bfPromoInner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(
      900px 380px at 10% 10%,
      rgba(201, 162, 39, 0.18),
      transparent 60%
    ),
    radial-gradient(
      520px 260px at 100% 0%,
      rgba(255, 215, 120, 0.12),
      transparent 55%
    ),
    linear-gradient(135deg, #111115 0%, #191a1f 100%);
  border: 1px solid rgba(243, 234, 215, 0.12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}

.bfPromoText {
  position: relative;
  z-index: 2;
}

.bfPromoEyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 11px;
  color: rgba(243, 234, 215, 0.7);
}

.bfPromoTitle {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0.02em;
  color: #ffffff;
}

.bfPromoSubtitle {
  margin: 6px 0 10px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: #f0d38a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.bfPromoDesc {
  margin: 0 0 14px;
  color: rgba(243, 234, 215, 0.82);
  max-width: 520px;
}

.bfPromoActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bfPromoArt {
  position: relative;
  height: 240px;
  min-height: 240px;
}

.bfPromoTag {
  position: absolute;
  right: 75%;
  top: 40%;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f2d27a, #c58a2e);
  color: #1a1308;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 8px;
  transform: rotate(-18deg);
  box-shadow:
    0 0 0 1px rgba(255, 215, 120, 0.6),
    0 0 16px rgba(255, 200, 90, 0.45),
    0 10px 22px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.bfBalloon {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0) 50%
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(255, 215, 120, 0.35),
      rgba(180, 120, 20, 0.65) 70%
    );
  box-shadow:
    inset 0 -10px 18px rgba(0, 0, 0, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.35);
  opacity: 0.95;
}

.bfBalloon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #c58a2e;
  border-radius: 2px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.bfb1 {
  width: 120px;
  height: 120px;
  right: 10%;
  top: 6%;
}
.bfb2 {
  width: 86px;
  height: 86px;
  right: 0;
  top: 35%;
}
.bfb3 {
  width: 96px;
  height: 96px;
  right: 22%;
  top: 44%;
}
.bfb4 {
  width: 70px;
  height: 70px;
  right: 48%;
  top: 18%;
  opacity: 0.8;
}
.bfb5 {
  width: 58px;
  height: 58px;
  right: 36%;
  top: 66%;
  opacity: 0.85;
}
.bfb6 {
  width: 140px;
  height: 140px;
  right: 28%;
  top: -8%;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .bfPromoInner {
    grid-template-columns: 1fr;
  }
  .bfPromoTag,
  .bfBalloon {
    display: none;
  }
  .bfPromoTag {
    right: 12%;
    top: 4%;
  }
  .bfPromoArt {
    height: 200px;
    min-height: 200px;
  }
}

@media (max-width: 720px) {
  .bfPromoInner {
    padding: 22px 20px;
  }
  .bfPromoText {
    text-align: center;
  }
  .bfPromoActions {
    justify-content: center;
  }
  .bfPromoTag {
    right: 8%;
    top: 2%;
  }
}

@media (max-width: 560px) {
  .bfPromoInner {
    padding: 20px 18px;
  }
  .bfPromoTag {
    right: 8%;
    top: 2%;
    padding: 8px 12px;
    font-size: 12px;
  }
  .bfPromoArt {
    display: none;
    height: 170px;
    min-height: 170px;
  }
}

/* =======================
   Skills / CV-style rectangles
   ======================= */
.skillsSection {
  padding: 18px 18px 28px;
  border-radius: 12px;
}
.sectionTitlePill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--beige);
}
.skillsSplit {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.skillsGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.servicesScreen {
  margin-left: auto;
  flex: 1;
  height: auto;
  border-radius: 15px;
  border: 1px solid rgba(243, 234, 215, 0.12);
  background: rgba(0, 0, 0, 0.75);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  padding: 16px;
}
.servicesTitle {
  position: sticky;
  top: 0;
  z-index: 3;
  font-weight: 800;
  color: var(--beige);
  letter-spacing: 0.2px;
  margin: -6px 0 10px;
  background: rgba(0, 0, 0, 0.85);
  padding: 6px 8px;
  border-radius: 10px;
}
.servicesScreen::before,
.servicesScreen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 22%;
  pointer-events: none;
  z-index: 2;
}
.servicesScreen::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}
.servicesScreen::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}
.servicesReel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: serviceReelUp 42s linear infinite;
}
.serviceCard {
  border-radius: 10px;
  border: 1px solid rgba(243, 234, 215, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}
.serviceCard h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: var(--beige);
}
.serviceCard p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(243, 234, 215, 0.85);
  line-height: 1.35;
}

@keyframes serviceReelUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
.skillCard {
  border: 20px solid rgba(243, 234, 215, 0.08);
  border-radius: 8px;
  padding: 0 5px; /* horizontal padding only */
  height: calc(1em + 1px);
  line-height: 1em;
  background: rgba(0, 0, 0, 0.75);
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow);
  white-space: nowrap;
  width: auto;
}
.skillCard p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 980px) {
  .skillsSection {
    padding-left: 12px;
    padding-right: 12px;
  }
  .skillsSplit {
    flex-direction: column;
  }
  .servicesScreen {
    width: 100%;
    margin-left: 0;
  }
  .skillCard {
    width: 100%;
    white-space: normal;
    height: auto;
    line-height: 1.25;
    padding: 8px 10px;
    border-width: 10px;
  }
}

@media (max-width: 560px) {
  .skillCard {
    width: 100%;
    white-space: normal;
  }
}


