      body { margin: 0;
      font-family: "Onest", Arial, sans-serif;
      background: #f5f5f5;
    }

.ts-control { height: 44px}



.ts-control .item {
    font-size: 15px;
    padding-top: 6px;
    padding-left: 4px;
}

.toast.info-toast.error {
  background: red;
  color: #fff;
}



.step div {
  flex: 1;
}

/* Flatpickr font override */
.flatpickr-calendar {
  font-family: "Onest", monospace !important;
}

.flatpickr-day,
.flatpickr-month,
.flatpickr-weekday,
.flatpickr-current-month,
.flatpickr-time {
  font-family: "Onest", monospace !important;
}


/* =========================
   PRELOADER (UPGRADED)
========================= */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  padding: 20px;

  opacity: 1;
  transform: scale(1);
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease;

  will-change: opacity, transform;
}

/* EXIT STATE */
#preloader.fade-out {
  opacity: 0;
  transform: scale(1.02);
  filter: blur(6px);
  pointer-events: none;
}

/* =========================
   SHIMMER (SMOOTHER)
========================= */
.shimmer {
  background: #eee;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* softer + slower shimmer */
.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  animation: shimmer 1.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes shimmer {
  100% { left: 150%; }
}

/* =========================
   SUBTLE PULSE (PREMIUM FEEL)
========================= */
.sk-card,
.sk-hero,
.sk-slider,
.sk-line {
  animation: sk-pulse 2s ease-in-out infinite;
}

@keyframes sk-pulse {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 1; }
}

/* =========================
   CONTAINER
========================= */
.sk-container {
  max-width: 1100px;
  margin: auto;
}

/* =========================
   NAV
========================= */
.sk-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.sk-logo {
  width: 90px;
  height: 28px;
}

.sk-nav-links {
  width: 200px;
  height: 18px;
}

.sk-nav-btns {
  display: flex;
  gap: 10px;
}

.sk-btn {
  width: 100px;
  height: 32px;
}

/* =========================
   HERO GRID
========================= */
.sk-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.sk-hero {
  height: 220px;
}

/* =========================
   CARDS
========================= */
.sk-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.sk-card {
  height: 100px;
}

/* =========================
   SECTION
========================= */
.sk-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.sk-slider {
  height: 180px;
}

.sk-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sk-line {
  height: 20px;
  width: 100%;
}

.sk-line.small {
  height: 14px;
  width: 80%;
}

/* CTA */
.sk-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sk-cta-box {
  height: 140px;
}



/* =========================
   REVEAL UP ANIMATION
========================= */

/* hidden state */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* visible state */
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* optional: smoother feel */
.reveal-up {
  will-change: transform, opacity;
}

.reveal-up:nth-child(1) { transition-delay: 0.05s; }
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.15s; }

/* container */
.apple-rating {
    margin-top: 18px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 1px;
}
/* stars */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 3px;
}

/* full stars */
.star {
  font-size: 19px;
  color: #e5e5ea;
  position: relative;
}

/* filled */
.star.full {
  color: #0a84ff;
}

/* half star wrapper */
.star.half {
  position: relative;
  display: inline-block;
}

/* background star */
.star-bg {
  color: #e5e5ea;
}

/* blue fill (half) */
.star-fill {
  color: #0a84ff;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}




/* container */
.report-notification {
  position: absolute;

  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 10px;
 z-index: 99;
  max-width: 295px;
  padding: 12px 14px;

  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

  animation: slideDown 0.4s ease;
}
/* icon block */
.notif-icon {
  width: 36px;
  height: 36px;
  background: #0a84ff;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  font-size: 18px;
}

/* content */
.notif-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* text */
.notif-text {
  font-size: 10px;
  line-height: 1.4;
  color: #333;
}

/* button */
.track-btn {
 align-self: flex-start;
    font-size: 8px;
    background: none;
    border: none;
    font-weight: 700;
    color: #0a84ff;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
}

/* close button */
.notif-close {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.5;
}

/* animation */
@keyframes slideDown {
  from {
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

}

.discount-input-wrap input:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.discount-input-wrap button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.input-error {
  border: 1px solid #ff3b30 !important;
}

input:focus.input-error,
select:focus.input-error {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.15);
}

.info-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.info-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}



.info-toast {
    height: 10px;
    top: 10px;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-family: 'Kode Mono';
    text-transform: uppercase;
}

 .info-toast{ border-radius:1px !important }


.submit-btn.active {
  background: #fe5a00;
}

.submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
}


.price-label {
  position: static;
  color: #666;
}

.price-summary-grid .label {
  position: static;
}

strong {font-weight: 700 ;}

/* GRID */
.price-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  font-size: 14px;
  align-items: center;
}

/* ITEMS */
.price-item {
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}

/* LABEL */
.price-label {
  color: #666;
}

/* TOTAL STYLE */
.price-item.total {
  font-weight: 700 !important;
}

/*  MAKE FIRST ROW 2-COLUMN */
.price-summary-grid .price-item:nth-child(1) {
  grid-column: span 2; /* Selected Service spans 2 columns */
}



select#location-select {
    height: 44px;
    font-family: 'Onest';
    padding: 10px; outline: none;
    font-weight: 600;
}

button#apply-discount {
    height: 41px;
    text-transform: uppercase;
    font-family: 'Kode Mono';
    font-weight: 900;
    color: #fff; outline: none;cursor: pointer;
    width: 100px;
    border: none;
    background: #000;
}

select#location-select {
    height: 44px;
    font-family: 'Onest'; outline: none;
    padding: 10px;
    font-weight: 600;
}

/* STICKY FOOTER BAR */
.pickup-footer-bar {
  position: sticky;
  bottom: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 15px 20px;
  background: #f9dfc4; color: #000;
  border-top: 1px solid #ffb185;
    border-bottom: 1px solid #ffb185;

  z-index: 10;
}

/* PRICE ROW (INLINE) */
.price-summary-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* TOTAL EMPHASIS */
.price-summary-row .total {
  font-weight: 700;
}

/* BUTTON FIX */
.submit-btn {
  width: auto; /* override your 250px */
  white-space: nowrap;
}

    /* TAG CONTAINER */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

/* TAG PILL */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;

  font-size: 12px;
  padding: 6px 6px;

  background: #ffffffa1;
  border-radius: 8px;

  color: #333;
  font-weight: 500;
}

/* ICON */
.tag .mdi {
  font-size: 13px;
  color: #ff5a00;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;    width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 99999;
}


.toast-actions button{ font-family: "Onest";  font-weight:500 }


.toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast-actions {
  display: flex;
  margin:0 auto;
  font-family: 'Onest';
  gap: 10px;
  text-transform: uppercase;
  justify-content: flex-end;
}

p#toast-message {
    font-size: 15px;
    width: 90%;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 10px;
    margin: 0 auto;
    padding-top: 14px;
}

.toast button {
  border: none;
  padding: 8px 12px; margin-bottom: 1em;
  border-radius: 8px;
  cursor: pointer;
}

#toast-confirm {
  background: #ff5a00;
  color: white;
}

#toast-cancel {
  background: #333;
  color: white;
}



.service-toggle {
  background: #000;
  width: 160px;
  border-radius: 22px;
  color: #ffffff;
  margin: 0 auto;
  text-transform: uppercase;
  padding: 6px 10px;
  font-family: 'Kode Mono';
  border: none;
  cursor: pointer;
  font-weight: 700;
}


/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  margin-bottom: 20px;
}

/* CARD */
.service-card {
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
   filter: grayscale(100%);
  opacity: 0.7;
}

.service-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 10px;
}

.service-card h3 {
  margin: 10px 0 5px; font-size: 15px;    
}

.service-card p {
  font-size: 15px;
  margin-bottom: 10px;margin-top: 0px;
}

/* COLORS */
.orange {     background: #ffc6a7;
    border: 1px solid #f9651e;}
.green {    background: #60ffbb;
    border: 1px solid #358a59; }
.blue { background: #bcd1ff;
    border: 1px solid #2b67d8; }
.pink { background: #eec2d4;
    border: 1px solid #f84376; }

/* BUTTON */
.service-card button {
  width: 100%;
  padding: 10px;
  border: none; transition: 0.2s ease;
  border-radius: 10px;
  background: black;
  color: white;
  cursor: pointer;font-family: 'Kode Mono';
    text-transform: uppercase;
}


.service-card.active button {
background: #000;
    font-family: 'Kode Mono';
    text-transform: uppercase;
}

/* ACTIVE */
.service-card.active {

  border-width: 1px;

  filter: grayscale(0%);
  opacity: 1;
}

/* SUMMARY */
.price-summary {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 15px;
}

.price-summary h3 {
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.pickup-header {
  position: relative;
  background: #049c5a;
  color: white;

  padding: 2em 2em 1em 2em;  padding-right: 90px; /* space for icon */
}

/* TEXT */
.pickup-header h2 {
  margin: 0;
  line-height: 1.2;
}

/* ICON */
.pickup-header::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

     width: 50px;
    height: 50px;opacity: 0.12;
transform: translateY(-50%) scale(1.1);

  background: url("https://cdn.jsdelivr.net/npm/@mdi/svg/svg/clock-fast.svg") no-repeat center;
  background-size: contain;

  filter: brightness(0) invert(1); /* makes it white */
  opacity: 0.15;

  pointer-events: none;
}

/* MOBILE FIXES */
@media (max-width: 480px) {
  .pickup-header {
    padding-right: 65px;
  }

  .pickup-header::after {
    width: 38px;
    height: 38px;
  }
}


    .how-header {
  position: relative;
  background: #ff5a00;
  color: white;

  padding: 10px 20px;
  padding-right: 80px;
  font-size: 14px;
}

.how-header::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);

  width: 65px;
  height: 65px;

  background: url("https://cdn.jsdelivr.net/npm/@mdi/svg/svg/shoe-print.svg") no-repeat center;
  background-size: contain;

  filter: brightness(0) invert(1); /* 👈 makes it white */
  opacity: 0.2; /* 👈 optional subtle effect */
}



/* MODAL */
.pickup-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.pickup-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.pickup-form {
    background: #fff;
  overflow-y: auto;
  
}

/* HIDE SCROLLBAR (ALL BROWSERS) */
.pickup-form::-webkit-scrollbar {
  display: none;
}

.pickup-form {
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

.pickup-backdrop {
  position: absolute;
  inset: 0;

  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.2);

  opacity: 0;
  transition: opacity 0.2s ease;
}
/* CONTENT */
.pickup-content {
  width: 100%;
  max-width: 1100px;
  border-radius: 20px;
  padding: 25px;




  position: relative;
}


.pickup-modal.active .pickup-backdrop {
  opacity: 1;
}


/* MAKE LEFT PANEL FLEX */
.pickup-form {
  display: flex;
  flex-direction: column;
  height: 95dvh; /* same as modal */
  background: #fff;
}

/* SCROLL AREA */
.pickup-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 2em;
}

/* HIDE SCROLLBAR */
.pickup-scroll::-webkit-scrollbar {
  display: none;
}
.pickup-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* FIXED FOOTER */
.pickup-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background: #fff;

  position: sticky; border-radius: 15px;
  bottom: 0;
}

/* BUTTON FULL WIDTH */
.pickup-footer .submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* CHECKBOX */
.form-check {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

/* CLOSE */
.pickup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: black;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;z-index: 99;
  cursor: pointer;
}

/* GRID */
.pickup-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;  height: 95vh; /* locks modal height */
  align-items: start;
}

/* FORM */
.pickup-form h2 {
  margin-bottom: 20px;font-family: "Kode Mono"; text-transform: uppercase;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px; font-size: 13px; text-transform: uppercase;
  font-weight: 500; font-family: "Kode Mono";
}

input, textarea {
  padding: 12px; outline: none;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;    font-family: 'Onest';
}

textarea {
  min-height: 80px;    outline: none;
}

/* CHECK */
.form-check {
  display: flex;
  gap: 10px; font-size: 15px;
  margin: 10px 0;
}

/* BUTTON */
.submit-btn {
  background: #999;
  color: white;
  border: none; font-family: "Kode Mono"; font-size: 15px;
  padding: 14px;
  border-radius: 10px; font-weight: 900;
  width: 250px;
  cursor: pointer;
}

/* SIDE */
.pickup-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pickup-card {
  background: #FFFFFF;

  border-radius: 15px;
}



.pickup-card h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Onest";
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}


/* STEPS */
.step {
  display: flex;
  gap: 15px;
  padding: 20px; padding-bottom: 0px;

  align-items: flex-start; /* ✅ key fix */
}

.step span {
  background: #ff5a00;
  color: white;

  width: 40px;
  aspect-ratio: 1 / 1;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;

  flex-shrink: 0; /* ✅ prevents squashing */
}


.step div p {
    margin-top: 7px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pickup-grid {
    grid-template-columns: 1fr;
  }
}


.one-f{ font-family: "Onest", Arial, sans-serif; font-weight: 700}
/* BASE */
.sneaky-nav {
  position: fixed;
  top: 0;
  width: 100%; font-family: "Kode Mono", Arial, sans-serif;
  z-index: 999;

  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75);

  transition: transform 0.35s ease, box-shadow 0.3s ease;
}

.sneaky-nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.sneaky-nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LOGO */
.sneaky-nav-logo {
  font-weight: 700;
  font-size: 16px;
}

/* LINKS (desktop) */
.sneaky-nav-links {
  display: flex;
  gap: 25px;
}

.sneaky-nav-links a {
  text-decoration: none;font-family: "Kode Mono", Arial, sans-serif;
  color: #000;
  font-size: 15px;    letter-spacing: .5px; text-transform: uppercase;
    font-weight: 400;    margin-right: 16px;

}

.sneaky-nav-links a:hover { font-weight: 600;
}

/* BUTTON */
.sneaky-nav-btn {
  background: #ff5a00;font-family: "Kode Mono", Arial, sans-serif;
  color: white;
  border: none; text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 5px; height: 50px; cursor: pointer;
  font-weight: 600; font-size: 15px;
}

/* HAMBURGER */
.sneaky-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.sneaky-nav-toggle span {
  width: 20px;
  height: 2px;
  background: #111;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {

  button#apply-discount {    margin-top: 6px;}

  .sneaky-nav-links {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;

    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: 0.25s ease;
  }

  .sneaky-nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sneaky-nav-toggle {
    display: flex;
  }
}







.sneaky-perk {
  background: #f5f5f5;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: 0.3s ease;
}

.perk-icon {
  font-size: 24px;
  color: #ff5a00; /* your brand color */
  margin-bottom: 5px;
}



/* container */
.sneaky-hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;  font-family: "Onest", Arial, sans-serif;
  flex-wrap: wrap;
}

/* base button */
.sneaky-hero-actions button {
  display: flex;
  align-items: center;
  gap: 10px; font-family: "Kode Mono", Arial, sans-serif;  text-transform: uppercase;

  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;

  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

/* BOOK NOW (orange) */
.sneaky-btn-book {
  background: #ff5a00; font-family: "Onest", Arial, sans-serif;
  color: white;
}

.sneaky-btn-book:hover {
  background: #e14f00;
  transform: translateY(-2px);
}

/* FIND LOCATION (white bg, black text) */
.sneaky-btn-location {
  background: #ffffff; font-family: "Onest", Arial, sans-serif;
  color: #000;
}

.sneaky-btn-location:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

/* icons */
.sneaky-hero-actions .mdi {
  font-size: 18px;
}


.perk-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

/* optional hover polish */
.sneaky-perk:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.sneaky-perk strong {
  font-size: 16px;
  font-weight: 700;
}



    .sneaky-container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }

    .slider-content {
  display: none;
  width: 100%;
}

.slider-content.active {
  display: block;
}

/* optional perks styling */
.perks-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 12px;
}

.steps {
  counter-reset: step;
}

.chev {
    vertical-align: middle;
    top: -.0.55px;
    position: relative;
}

.steps p {
 counter-increment: step;
    position: relative;
    padding-left: 40px;
   
    margin-top: 30px;
}

.steps p::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #000;
}


.steps p::before {
  background: black;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}


/* Tabs container */
.sneaky-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Tab buttons */
.tab {
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-family: "Onest", Arial, sans-serif;
    background: #f1f1f1;
    cursor: pointer;
color: #000;
    font-weight: 500;
    transition: 0.3s;
    font-size: 15px;}

/* Active tab */
.tab.active {
  background: black;
  color: white;
  border-color: black;
}

/* Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}



.sneaky-hero-left::after {
  content: "";
  position: absolute;
  inset: 0; z-index: 0;

  background: linear-gradient(
    to top,
  rgba(255, 255, 255, 0.95) 0%,
  rgba(255, 255, 255, 0.7) 15%,
  rgba(255, 255, 255, 0.3) 25%,
  rgba(255, 255, 255, 0) 40%
  );

  pointer-events: none;
}



.sneaky-slider {
    position: relative;
    width: 100%;
    max-width: 100%; 
    aspect-ratio: 14 / 9;
    overflow: hidden;
    border-radius: 12px;}



/* Images */
.slider-img,
.slider-before img {
  width: 100%;
  height: 100%;
  object-fit: cover; object-position: 0% 79%;
  display: block;
}

/* BEFORE overlay */
.slider-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* starting position */
  height: 100%;
  overflow: hidden;
}

/* Divider line */
.sneaky-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background: black;
  cursor: ew-resize;
  z-index: 2;
}

/* Circle handle */
.divider-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: black;
  border-radius: 50%;
    text-align: center;
    position: relative;
    justify-content: center;
    align-content: center;font-size: 23px;
}



  

/* Labels */
.label {
    position: absolute;
    bottom: 15px;
    background: #0706065e;
    color: white;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    z-index: 3;
}

.label.before {
  left: 15px;
}

.label.after {
  right: 15px;
}

/* Responsive height */
@media (max-width: 768px) {
  .sneaky-slider {
    height: 220px;
  }
}



    /* hidden by default */
.card-hover-icon {
  position: absolute;
  bottom: 15px;
  right: 15px; cursor: pointer;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: black;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;


  transform: scale(0.8);
  transition: all 0.3s ease;
}

/* icon size */
.card-hover-icon .mdi {
  font-size: 20px;
}

/* show on hover */
.sneaky-card:hover .card-hover-icon {
  opacity: 1;
  transform: scale(1);
}

.sneaky-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sneaky-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-hover-icon:hover {
  background: #222;
}


.hero-buttons {
  position: absolute;
  left: 25px;   /* respect padding */
  bottom: 63px;
      font-family: "Onest", Arial, sans-serif;
  display: flex;
  gap: 10px; font-weight: 600;
}



/* BOOK NOW (existing style) */
#sneaky-book-btn {
  background: #ff5a00;font-weight: 500;
  color: white;    font-family: "Kode Mono", Arial, sans-serif;font-size: 15px;
}

/* FIND LOCATION button */
.find-location {
  background: #000000;
  color: #000;font-weight: 500; font-size: 15px;
  border: 1px solid #ddd;      font-family: "Onest", Arial, sans-serif;
}

  .hero-content {
  position: absolute;
  inset: 0;
  padding: 20px 25px;

  display: flex;
  flex-direction: column;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px; /* space between the two */
  font-size: 14px; padding-bottom: .8em;
}

.hero-rating .mdi-star {
  color: #f5b301;
}

.hero-stats{    top: -10px;
    position: relative;}

/* Push everything below h1 down */
.hero-bottom {
  margin-top: auto; z-index: 1;
}

/* Title */
.hero-content h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* BIG 1600 */
.hero-stats h2 {
  font-size: 60px;    font-weight: 800;
  margin: 0; 

}

.hero-stats p {
  margin: 0;
  font-size: 18px; padding-bottom: 3em;
}


.hero-stat
/* Sub text */
.hero-sub {
  margin-top: 10px;
  font-size: 13px;
}

/* Button */
.hero-content button {

  right: 25px; 
  bottom: 50px;
  background: #ff5a00;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;

}

/* Small text under button */
.hero-small {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-size: 11px;
}

    /* HERO */
    .sneaky-hero {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .sneaky-hero-left {
  flex: 2;
  position: relative;
  background: url('https://res.cloudinary.com/dyueswnzk/image/upload/v1774809404/maria-fernanda-pissioli-hhyAlXfmlag-unsplash_1_hitcso.webp') center/cover no-repeat;
  border-radius: 10px;
  height: auto;
  color: #000;
  overflow: hidden;
}

    .sneaky-hero-left h1 {
      font-size: 45px;
    }

    .sneaky-hero-left button {
      background: #000;
      border: none;gap: 10px;
    display: flex;
    padding: 14px 22px;font-family: "Kode Mono", Arial, sans-serif; text-transform: uppercase;
      cursor: pointer; 
      margin-top: 10px;
    }

    .mdi-mx{ font-size: 16px; vertical-align: middle; }

    .sneaky-cards {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

  .sneaky-card {
  background: #e5391f; /* orange/red */
  border-radius: 21px;
  padding: 5px 4px 15px;
  color: white; height: 220px;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Image inside */
.card-image {
  background: url('https://res.cloudinary.com/dyueswnzk/image/upload/v1774818342/image_10_sclaby.webp') center/cover no-repeat;
  height: 160px;
  border-radius: 15px; /* 👈 rounded image */
}

.card-text{ margin-left:10px }

/* Text */
.card-text h3 {
  margin: 0;
  font-size: 20px;
}

.card-text p {
  margin: 5px 0 0;
  font-size: 16px;
}
    .sneaky-card {
  position: relative;
  overflow: hidden;
}



.sneaky-card p {
  position: relative; color: #000;
  z-index: 1;  font-size: 16px; top: -6px;
}

.sneaky-card h3 {
  position: relative;color: #000;
  z-index: 1;  font-size: 16px; top: -3px;
}


    .sneaky-orange { background: #ffc6a7; border: 1px solid #f9651e}
    .sneaky-green { background: #60ffbb; border: 1px solid #358a59 }
    .sneaky-blue { background: #bcd1ff; border:1px solid #2b67d8; }
    .sneaky-pink { background: #eec2d4; border:1px solid #f84376; }

    /* DIFFERENCE */
    .sneaky-difference {
      margin: 40px 0;
      text-align: center;
    }

  

    /* HOW IT WORKS */
    .sneaky-how {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

   .sneaky-video {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

    .sneaky-steps {
      flex: 1;
    }

    /* PERKS */
    .sneaky-perks {
      margin-top: 40px;
    }

    .sneaky-perks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
      gap: 15px;
    }

    .sneaky-perk {
      background: #fff;
      padding: 15px;
      border-radius: 10px;
    }



    .ipad-container {
  display: flex;
  justify-content: center;
  padding: 30px; padding-top: 0px;
}

/* iPad body */
.ipad-frame {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 4 / 3;
  background: #1c1c1c;
  border-radius: 35px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

/* Camera dot */
.ipad-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #2a2a2a;
  border-radius: 50%;
}

/* Screen */
.ipad-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Status bar */
.ipad-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  font-size: 12px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.status-icons span {
  margin-left: 8px;
  font-size: 13px;
  color: #8e8e93; /* Apple gray */
}

/* Dashboard */
.dashboard {
  padding: 24px;
  font-family: "Onest", sans-serif;
}

/* Title */
.dashboard h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #111;
}

/* Subtext */
.report-sub {
  font-size: 13px;
  color: #8e8e93;
  margin-bottom: 18px;
}

/* Report list */
.report-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Report items */
.report-item {
  display: flex;
  justify-content: space-between;
  align-items: center; font-family: "Kode Mono", Arial, sans-serif;

  background: #f7f7f7; text-transform: uppercase;
  padding: 12px 14px;
  border-radius: 10px;

  font-size: 12px;
  color: #1c1c1e;

  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

/* Hover (subtle) */
.report-item:hover {
  background: #fafafa;
  transform: scale(1.01);
}

/* Status colors */
.report-item.good span {
  color: #34c759; /* Apple green */
  font-weight: 500;
}

.report-item.warning span {
  color: #ff5a00;
  font-weight: 500;
}

/* Recommendation */
.report-reco {
  margin-top: 22px;
  padding: 16px;

  background: rgba(255, 90, 0, 0.08);
  border-radius: 12px;

  backdrop-filter: blur(8px);
}

/* Recommendation title */
.report-reco strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #111;
}

/* Recommendation text */
.report-reco p {
  margin: 0;
  font-size: 13px;
  color: #3a3a3c;
  line-height: 1.4;
}


.sneaky-cta {
  background: #fff; margin-top: 2em;
  color: white;
  font-family: "Onest", sans-serif;
}

/* TOP */
.sneaky-cta-top {
  background: #e23721;
  text-align: center;
  padding: 60px 20px;
}

.sneaky-cta-top h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.sneaky-cta-top p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.sneaky-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.sneaky-btn {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sneaky-btn-primary {
  background: white;
  color: #e23721;
}

.sneaky-btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.sneaky-cta-meta {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
  flex-wrap: wrap;
}

.sneaky-cta-meta .mdi-star {
  color: #ffcc00;
}

/* BOTTOM */
.sneaky-cta-bottom {
  display: flex;
  gap: 30px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* CARD */
.sneaky-cta-card {
  background:#fe5a00;
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  position: relative;
}

.sneaky-cta-card h3 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sneaky-store-icons {
  display: flex;
  gap: 15px;
  font-size: 22px;
  margin-bottom: 20px;
}

.sneaky-store-icons span {
  background: black;
  padding: 12px;
  border-radius: 50%;
}

/* PROMO */
.sneaky-promo {
  background: #eee;
  color: black;
  display: inline-block;
  padding: 8px 16px;font-family: "Kode Mono", Arial, sans-serif;
  border-radius: 8px;
  font-weight: 700;font-size: 2em;
  margin-bottom: 10px; border: 3px solid #000;
}

.sneaky-promo-text {
  font-size: 16px;
  max-width: 260px;
}

/* GIFT */
.sneaky-gift-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 80px;
  opacity: 0.6;
}

/* IMAGE */
.sneaky-cta-image {     border-radius: 20px;
    padding: 40px;
    flex: 1;
    position: relative;

}

.sneaky-cta-image img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

/* FOOTER */
.sneaky-cta-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
  align-items: center;
}

.sneaky-footer-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sneaky-footer-right a {
  color: black; font-weight: 600;
  text-decoration: none;
  font-size: 13px; font-family: "Kode Mono", Arial, sans-serif; text-transform: uppercase;
}

.sneaky-badge {
  background: #e23721;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 12px;
}

/* COPYRIGHT */
.sneaky-copy {
  text-align: center;
  font-size: 13px;
  padding: 20px;
  opacity: 0.7;
}


.discount-input-wrap input:focus {
  border-color: #fe5a00;
  outline: none;
}

.old-price {
  text-decoration: line-through;
  color: #b0b0b0;
  margin-right: 6px;
}

.discounted-price {
  animation: pop 0.3s ease;
}

@keyframes pop {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}




/* ACTIVE STATE */
.sneaky-nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sneaky-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.sneaky-nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


@media (max-width: 768px) {

  .sneaky-modal-content {
    margin: 20px;
    padding: 15px;
  }

  .sneaky-modal-grid {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 220px;
  }



}


@media (max-width: 768px) {

   .sneaky-how {
    flex-direction: column;
  }


.snfix{    display: grid;
    padding-bottom: 1em;}

 
  .sneaky-video,
  .sneaky-steps {
    width: 100%;
  }

  .sneaky-cta-image {
    background-position: left !important;
}

.hero-small {         display: block;
        position: static; }

  .hyde{ display:none; }


  .sneaky-hero {
    flex-direction: column;
  }

  .sneaky-hero-left {
    width: 100%;
    flex: none;
    min-height: 350px; /* ✅ THIS FIXES DISAPPEAR */
  }

  .sneaky-cards {
    width: 100%;
    flex: none;
  }

  .ipad-container{ padding: 0px !important }

  .notif-text {
    font-size: 8px;
}

.track-btn{ font-size:7px }

.ipad-screen {
    overflow: scroll;
}

.ipad-frame
{ box-shadow:none ; padding:9px }


  .pickup-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .price-summary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    width: 100%;
    font-size: 13px;
  }

  .price-summary-row .total {
    grid-column: span 2; /* make total full width */
    font-size: 15px;
  }

  .submit-btn {
    width: 100%;
  }


 .price-summary-grid {
   display: block; line-height: 2;
  }

.pickup-footer{ position: relative;
}
  


    .pickup-content {

    
        align-self: flex-start; overflow: scroll;
    }

  .pickup-modal.active{ padding-bottom:1.5em }

.step span {
  width: 44px;
  aspect-ratio: 1 / 1;
  min-width: 44px; /* ✅ prevents flex distortion */
}
input, textarea, select {
  box-sizing: border-box;
  width: 100%;
}

input[type="checkbox"] {
    width: auto;
}
.report-item{ font-size:10px }

.sneaky-hero-left h1 {
    font-size: 38px;
    line-height: 1.1;
}

.apple-rating{font-size: 8px}

}


/* =========================
   TABLET (≤ 900px)
========================= */
@media (max-width: 900px) {

  .sk-hero-grid {
    grid-template-columns: 1fr;
  }

  .sk-cards {
    grid-template-columns: 1fr 1fr;
  }

  .sk-section {
    grid-template-columns: 1fr;
  }

  .sk-cta {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE (≤ 600px)
========================= */
@media (max-width: 600px) {

  #preloader {
    padding: 15px;
  }

  /* NAV stacks */
  .sk-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sk-nav-links {
    width: 140px;
  }

  .sk-nav-btns {
    width: 100%;
  }

  .sk-btn {
    flex: 1;
  }

  /* HERO smaller */
  .sk-hero {
    height: 180px;
  }

  /* CARDS single column */
  .sk-cards {
    grid-template-columns: 1fr;
  }

  .sk-card {
    height: 90px;
  }

  /* SLIDER smaller */
  .sk-slider {
    height: 140px;
  }

  /* TEXT lines shorter */
  .sk-line {
    width: 100%;
  }

  .sk-line.small {
    width: 70%;
  }

  /* CTA */
  .sk-cta-box {
    height: 120px;
  }
}