/* =============================================
   NORMA JEANS — Custom Stylesheet
   ============================================= */

:root {
  --color-footer:   #6D6875;
  --color-peach:    #FFB4A2;
  --color-blush:    #E5989B;
  --color-mauve:    #B5838D;
  --color-cream:    #FFCDB2;
  --color-white:    #fff9f7;
  --color-dark:     #3a2e32;
  --transition-std: all 0.35s ease;
  --shadow-soft:    0 8px 32px rgba(109,104,117,0.13);
  --radius-lg:      1.25rem;
  --radius-sm:      0.6rem;
}

/* ---------- Base ---------- */
html {
  font-size: 15px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html { font-size: 16px; }
}

body {
  font-family: 'Georgia', serif;
  background-color: var(--color-white);
  color: var(--color-dark);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Palatino Linotype', Palatino, serif;
  letter-spacing: 0.02em;
}

a { color: var(--color-mauve); text-decoration: none; transition: var(--transition-std); }
a:hover { color: var(--color-blush); }

/* ---------- Navbar ---------- */
.navbar-brand-logo {
  font-family: 'Palatino Linotype', Palatino, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-mauve) !important;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-navbar {
  background: rgba(255,249,247,0.97) !important;
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--color-cream) !important;
  box-shadow: 0 2px 16px rgba(181,131,141,0.10);
  transition: var(--transition-std);
  padding: 0.75rem 0;
}

.site-navbar .nav-link {
  color: var(--color-footer) !important;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem !important;
  position: relative;
  transition: var(--transition-std);
}

.site-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--color-blush);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.site-navbar .nav-link:hover { color: var(--color-mauve) !important; }

/* ---------- Buttons ---------- */
.btn-salon {
  background: linear-gradient(135deg, var(--color-blush), var(--color-mauve));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition-std);
  box-shadow: 0 4px 16px rgba(181,131,141,0.3);
}

.btn-salon:hover {
  background: linear-gradient(135deg, var(--color-mauve), var(--color-footer));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109,104,117,0.35);
}

.btn-salon-outline {
  border: 2px solid var(--color-blush);
  color: var(--color-mauve);
  background: transparent;
  border-radius: 50px;
  padding: 0.6rem 1.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition-std);
}

.btn-salon-outline:hover {
  background: var(--color-blush);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Section Headings ---------- */
.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--color-footer);
}

.section-heading::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blush), var(--color-peach));
  border-radius: 2px;
  margin: 0.4rem auto 0;
}

.section-subtitle {
  color: var(--color-mauve);
  font-size: 1.05rem;
  font-style: italic;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  background: #3a2e32 url('/img/m1jpeg.jpg') center top / cover no-repeat;
  overflow: hidden;
}

/* On small screens show less height so the image centre stays visible */
@media (max-width: 575.98px) {
  .hero-section { min-height: 80svh; background-position: 60% top; }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .hero-section { min-height: 85svh; background-position: center top; }
}
/* Ultrawide: cap height so image doesn't over-zoom vertically */
@media (min-width: 1600px) {
  .hero-section { min-height: 90vh; background-size: 100% auto; }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,46,50,0.72) 0%, rgba(109,104,117,0.60) 60%, rgba(181,131,141,0.45) 100%);
  z-index: 1;
}

/* img tag is hidden — only used as a layout signal, not displayed */
.hero-bg-img {
  display: none;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: fadeUp 1s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero-title span { color: var(--color-peach); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-cream);
  margin: 1.2rem 0 2rem;
  font-style: italic;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(255,180,162,0.2);
  border: 1px solid var(--color-peach);
  color: var(--color-cream);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.hero-image-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.hero-image-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-panel:hover img { transform: scale(1.03); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
  color: var(--color-cream);
  opacity: 0.7;
  font-size: 1.6rem;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(90deg, var(--color-mauve), var(--color-blush), var(--color-peach));
  padding: 1.2rem 0;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
  text-transform: uppercase;
}

/* ---------- Treatment Cards (Before/After) ---------- */
.treatments-section {
  padding: 6rem 0;
  background: var(--color-white);
}

.treatment-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-std);
  height: 100%;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(181,131,141,0.25);
}

.before-after-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.before-after-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  top: 0; left: 0;
}

.before-after-wrapper .img-after { opacity: 0; }
.before-after-wrapper:hover .img-before { opacity: 0; transform: scale(1.04); }
.before-after-wrapper:hover .img-after { opacity: 1; transform: scale(1.04); }

.ba-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(109,104,117,0.85);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  z-index: 5;
  transition: var(--transition-std);
}

.before-after-wrapper:hover .ba-label { background: var(--color-blush); }

.treatment-body { padding: 1.4rem 1.5rem 1.6rem; }

.treatment-tag {
  display: inline-block;
  background: var(--color-cream);
  color: var(--color-mauve);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

.treatment-title {
  font-size: 1.15rem;
  color: var(--color-footer);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.treatment-desc {
  font-size: 0.9rem;
  color: #7a6770;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.treatment-price {
  color: var(--color-mauve);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- Quote Banner ---------- */
.quote-banner {
  background: linear-gradient(135deg, var(--color-footer), var(--color-mauve));
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 5%;
  font-size: 14rem;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto;
}

.quote-author {
  margin-top: 1.2rem;
  color: var(--color-peach);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

/* ---------- Services Preview Cards ---------- */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-white) 0%, #fff0ea 100%);
}

.service-icon-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-std);
  border-bottom: 4px solid transparent;
  height: 100%;
}

.service-icon-card:hover {
  border-bottom-color: var(--color-blush);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(181,131,141,0.2);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-cream), var(--color-peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  transition: var(--transition-std);
}

.service-icon-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-blush), var(--color-mauve));
}

.service-icon-title {
  color: var(--color-footer);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-icon-desc {
  font-size: 0.88rem;
  color: #8a7275;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 6rem 0;
  background: var(--color-white);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-std);
  position: relative;
  height: 100%;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(181,131,141,0.2); }

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-peach);
  font-family: Georgia, serif;
  line-height: 0.8;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-text { font-style: italic; color: #5a4a50; line-height: 1.7; margin-bottom: 1.2rem; }

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-peach);
}

.testimonial-name { font-weight: 700; color: var(--color-mauve); font-size: 0.9rem; }
.testimonial-stars { color: var(--color-blush); font-size: 0.85rem; }

/* ---------- Gallery Strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  padding: 0.4rem;
}

@media (max-width: 768px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}

.gallery-strip-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-strip-item:hover img { transform: scale(1.1); }

/* ---------- Page Header Banner ---------- */
.page-header-banner {
  background: linear-gradient(135deg, var(--color-footer) 0%, var(--color-mauve) 100%);
  color: #fff;
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--color-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.page-header-sub {
  color: var(--color-cream);
  font-style: italic;
  font-size: 1.1rem;
}

/* ---------- About Page ---------- */
.about-section { padding: 5rem 0; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(109,104,117,0.2);
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-frame:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--color-blush), var(--color-mauve));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.about-badge-num { font-size: 2rem; font-weight: 700; line-height: 1; display: block; }
.about-badge-label { font-size: 0.75rem; letter-spacing: 0.08em; opacity: 0.9; }

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-std);
}

.team-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(181,131,141,0.22); }

.team-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-peach);
  margin: 0 auto 1rem;
  display: block;
  transition: border-color 0.3s ease;
}

.team-card:hover .team-avatar { border-color: var(--color-blush); }
.team-name { color: var(--color-footer); font-size: 1.1rem; font-weight: 700; }
.team-role { color: var(--color-blush); font-size: 0.85rem; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.team-bio { font-size: 0.88rem; color: #8a7275; line-height: 1.6; }

/* ---------- Services Page ---------- */
.services-list-section { padding: 5rem 0; }

.service-list-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  transition: var(--transition-std);
}

.service-list-card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 36px rgba(181,131,141,0.2);
  border-left: 4px solid var(--color-blush);
}

.service-list-img {
  width: 120px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.service-list-card:hover .service-list-img { transform: scale(1.04); }

.service-list-title { color: var(--color-footer); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
.service-list-desc { font-size: 0.9rem; color: #7a6770; line-height: 1.65; margin-bottom: 0.5rem; }
.service-list-price { color: var(--color-mauve); font-weight: 700; }
.service-list-duration { font-size: 0.8rem; color: #aaa; margin-left: 0.8rem; }

.price-table {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.price-table thead th {
  background: linear-gradient(135deg, var(--color-mauve), var(--color-footer));
  color: #fff;
  border: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.price-table tbody tr {
  border-bottom: 1px solid #f5e8e9;
  transition: background 0.2s ease;
}

.price-table tbody tr:hover { background: #fff5f0; }
.price-table tbody td { padding: 0.9rem 1.2rem; color: #5a4a50; }
.price-table tbody td:last-child { color: var(--color-mauve); font-weight: 700; }

/* ---------- Products Page ---------- */
.products-section { padding: 5rem 0; }

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-std);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(181,131,141,0.25);
}

.product-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-cream), var(--color-peach));
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge-wrap {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-blush);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

.product-body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand { color: var(--color-blush); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.product-name { color: var(--color-footer); font-size: 1rem; font-weight: 600; margin: 0.25rem 0 0.4rem; }
.product-desc { font-size: 0.87rem; color: #8a7275; line-height: 1.55; flex: 1; margin-bottom: 0.8rem; }
.product-price { color: var(--color-mauve); font-weight: 700; font-size: 1.1rem; }
.product-add { margin-left: auto; }

/* ---------- Contact Page ---------- */
.contact-section { padding: 5rem 0; }

.contact-info-card {
  background: linear-gradient(135deg, var(--color-mauve), var(--color-footer));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-info-item:hover .contact-info-icon { background: rgba(255,255,255,0.3); }

.contact-info-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.contact-info-value { font-size: 1rem; color: var(--color-cream); font-weight: 500; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.contact-form-card .form-label { color: var(--color-footer); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; }

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid #f0dde0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--color-blush);
  box-shadow: 0 0 0 3px rgba(229,152,155,0.2);
}

.hours-table td { padding: 0.5rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.85); border: none; }
.hours-table td:first-child { color: var(--color-cream); font-weight: 600; padding-right: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-footer);
  color: rgba(255,249,247,0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-brand {
  font-family: 'Palatino Linotype', Palatino, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cream);
  display: block;
  margin-bottom: 0.8rem;
}

.footer-tagline { font-style: italic; font-size: 0.9rem; color: rgba(255,205,178,0.75); }

.footer-heading {
  color: var(--color-peach);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: sans-serif;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
    .footer-links a {
        color: var(--color-peach);
        font-size: 0.9rem;
        transition: var(--transition-std);
    }
.footer-links a:hover { color: var(--color-peach); padding-left: 4px; }

.footer-social { display: flex; gap: 0.7rem; margin-top: 1rem; }

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-size: 1rem;
  transition: var(--transition-std);
}

.footer-social a:hover { background: var(--color-blush); color: #fff; transform: translateY(-3px); }

.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.2rem; }

.footer-bottom { font-size: 0.82rem; color: rgba(255,249,247,0.5); }

/* ---------- Map placeholder ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 320px;
  margin-top: 2rem;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ---------- Admin Dashboard ---------- */
.admin-stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: var(--transition-std);
}

/* ---------- Treatment Special Badge ---------- */
.treatment-special-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-peach), var(--color-blush));
  color: var(--color-footer);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
}

/* ---------- Admin Treatment Cards ---------- */
.admin-treatment-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition-std);
}

.admin-treatment-card:hover {
  box-shadow: 0 16px 40px rgba(181,131,141,0.2);
}

.treatment-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.tx-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-mauve);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(181,131,141,0.2);
}

.admin-stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 0.8rem;
}

.admin-stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-footer);
  line-height: 1;
}

.admin-stat-label {
  font-size: 0.8rem;
  color: var(--color-mauve);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.role-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
}

.role-admin  { background: #e8d5f5; color: #6a1b9a; }
.role-global { background: #fdebd0; color: #a04000; }
.role-user   { background: var(--color-cream); color: var(--color-mauve); }

.admin-action-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-std);
  letter-spacing: 0.03em;
}

.btn-assign {
  background: linear-gradient(135deg, var(--color-blush), var(--color-mauve));
  color: #fff;
}

.btn-assign:hover {
  background: linear-gradient(135deg, var(--color-mauve), var(--color-footer));
  transform: translateY(-1px);
}

.btn-remove {
  background: #fff3cd;
  color: #856404;
}

.btn-remove:hover { background: #ffe69c; }

.btn-delete {
  background: #f8d7da;
  color: #842029;
}

.btn-delete:hover {
  background: #f5c2c7;
  transform: translateY(-1px);
}

#userTable tbody tr:hover { background: #fff8f5; }

/* ---------- Manage Nav ---------- */
.manage-nav-link {
  display: block;
  padding: 0.7rem 1.4rem;
  color: var(--color-footer);
  font-size: 0.92rem;
  transition: var(--transition-std);
  text-decoration: none;
}

.manage-nav-link:hover {
  background: var(--color-cream);
  color: var(--color-mauve);
  padding-left: 1.7rem;
}

.manage-nav-link.active {
  background: linear-gradient(90deg, var(--color-cream), #fff);
  color: var(--color-mauve);
  font-weight: 600;
  border-left: 3px solid var(--color-blush);
}

/* ---------- Utilities ---------- */
.text-mauve   { color: var(--color-mauve) !important; }
.text-blush   { color: var(--color-blush) !important; }
.text-footer  { color: var(--color-footer) !important; }
.bg-cream     { background-color: var(--color-cream) !important; }
.bg-peach     { background-color: var(--color-peach) !important; }

.focus-ring-salon:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--color-blush);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--color-blush);
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}