/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ribbonShimmer {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   PAGE TITLE (For all internal pages)
   ========================================================== */
.page-container {
  width: min(100% - 2rem, 960px);
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.page-header {
  text-align: center;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 20px;
}

.page-label {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-size: clamp(10px, 1vw + 5px, 12px);
  text-transform: uppercase;
  color: var(--color-primary-light);
  opacity: 0.8;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.page-header__title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: var(--line-height-tight);
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-header__divider {
  width: 3.5rem;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  margin-inline: auto;
}

.page-header__subtitle {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 55ch;
  margin-inline: auto;
}

/* ==========================================================
   BOOKING | PAGE
   ========================================================== */
.booking-content-flex {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 40px;
}

.booking-form-wrapper {
  flex: 1;
  background: #fff;
  padding: 20px;
}

/* ==========================================================
   PLUGIN OVERRIDES
   ========================================================== */
/*  BOOKLY: UI adjustments for the third-party booking system */
.bookly-service-step .bookly-form-group[data-type=category] {
  display: none !important;
}

.bookly-service-step .bookly-box {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

.bookly-service-step .bookly-form-group[data-type=service],
.bookly-service-step .bookly-form-group[data-type=staff] {
  flex: 1 1 45% !important;
  max-width: 50% !important;
  margin-left: 0 !important;
}

.bookly-details-step .bookly-box-table {
  width: 100% !important;
  display: block !important;
  margin-bottom: 25px !important;
  line-height: 1.6 !important;
  font-size: 1rem !important;
}

.bookly-details-step .bookly-box {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
}

.bookly-details-step .bookly-form-group {
  flex: 1 1 45% !important;
  min-width: 250px !important;
}

.bookly-details-step .bookly-js-notes {
  flex: 1 1 100% !important;
  max-width: 100% !important;
}

.bookly-details-step .bookly-checkbox-group {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-top: 20px !important;
  width: 100% !important;
}

.bookly-details-step .bookly-checkbox-group input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 4px !important;
  flex-shrink: 0 !important;
}

.bookly-details-step .bookly-checkbox-group label {
  font-size: 0.9rem !important;
  color: var(--color-text-main) !important;
  cursor: pointer;
  line-height: 1.4 !important;
}

.bookly-details-step .bookly-box-nav-steps {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 40px !important;
}

.bookly-form-group {
  margin-bottom: 1.5rem !important;
}

.bookly-btn {
  background: var(--color-primary) !important;
  border-radius: var(--radius-full) !important;
  text-transform: uppercase !important;
  font-family: var(--font-sans) !important;
  letter-spacing: 1px !important;
}

.bookly-box.bookly-nav-steps button {
  border-radius: var(--radius-full) !important;
}

/* --------------------
    HERO SECTION (index.html)
-------------------- */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 36px;
    color: #ff1493;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.shop-btn {
    padding: 15px 30px;
    background: #ff69b4;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

.shop-btn:hover {
    background: #ff1493;
}

/* --------------------
    PRODUCT CARDS (product.html)
-------------------- */
.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

.product-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.product-card .price {
    color: #ff69b4;
    font-size: 20px;
    margin-bottom: 15px;
}

.product-card button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background: #ff69b4;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.product-card button:hover {
    background: #ff1493;
}

/* ── Toast ──────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--color-text-main);
    color: #fff;
    padding: 13px 22px;
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-family: var(--font-sans);
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.38s var(--ease-smooth), opacity 0.3s ease;
    pointer-events: none;
    max-width: calc(100vw - 56px);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: #77dd77 !important;
    flex-shrink: 0;
}


/* ── Mobile adjustments ─────────────────────────────────── */
@media (max-width: 600px) {
    .cart-form-grid {
        grid-template-columns: 1fr;
    }

    .cart-form-group.full {
        grid-column: 1;
    }

    .cart-summary-col {
        position: static;
    }

    .checkout-step span {
        display: none; /* show just circles on mobile */
    }

    .checkout-step-line {
        min-width: 14px;
    }
}