/* ================================================================
   home.css — Alizay Beauty Salon landing page
   Purple gradient brand theme · Bootstrap 5 compatible
   ================================================================ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --ab-purple-deep:   #3b0764;
  --ab-purple-dark:   #5b21b6;
  --ab-purple:        #7c3aed;
  --ab-purple-mid:    #8b5cf6;
  --ab-purple-light:  #c4b5fd;
  --ab-purple-pale:   #f5f3ff;
  --ab-rose:          #f43f5e;
  --ab-gold:          #f59e0b;
  --ab-text:          #1c1b2e;
  --ab-text-muted:    #6b7280;
  --ab-white:         #ffffff;
  --ab-gradient:      linear-gradient(135deg, #3b0764 0%, #5b21b6 35%, #7c3aed 65%, #a855f7 100%);
  --ab-gradient-soft: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  --ab-shadow-sm:     0 2px 8px rgba(109, 40, 217, 0.10);
  --ab-shadow-md:     0 8px 28px rgba(109, 40, 217, 0.18);
  --ab-shadow-lg:     0 16px 48px rgba(59, 7, 100, 0.24);
  --ab-radius-sm:     8px;
  --ab-radius-md:     16px;
  --ab-radius-lg:     24px;
  --ab-transition:    0.3s ease;
}

/* ================================================================
   SHARED BUTTON SYSTEM
   ================================================================ */
.ab-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--ab-transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}
.ab-btn--sm { padding: 9px 22px; font-size: 0.875rem; }

.ab-btn--primary {
  background: var(--ab-gradient);
  color: var(--ab-white);
  box-shadow: 0 4px 18px rgba(109, 40, 217, 0.32);
}
.ab-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.48);
  color: var(--ab-white);
}

.ab-btn--outline {
  background: transparent;
  color: var(--ab-white);
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}
.ab-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ab-white);
  border-color: var(--ab-white);
}

.ab-btn--outline-purple {
  background: transparent;
  color: var(--ab-purple);
  border-color: var(--ab-purple);
}
.ab-btn--outline-purple:hover {
  background: var(--ab-purple);
  color: var(--ab-white);
  transform: translateY(-2px);
}

.ab-btn--ghost {
  background: transparent;
  color: var(--ab-purple);
  border-color: var(--ab-purple-light);
}
.ab-btn--ghost:hover {
  background: var(--ab-purple-pale);
  color: var(--ab-purple-dark);
  border-color: var(--ab-purple-mid);
}

.ab-btn--white {
  background: var(--ab-white);
  color: var(--ab-purple-dark);
  border-color: var(--ab-white);
  font-weight: 700;
}
.ab-btn--white:hover {
  background: var(--ab-purple-pale);
  color: var(--ab-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.ab-btn--outline-white {
  background: transparent;
  color: var(--ab-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.ab-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ab-white);
  border-color: var(--ab-white);
}

/* ── Scroll-reveal animation ──────────────────────────────── */
.ab-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ab-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.ab-section { padding: 88px 0; }

.ab-section__header {
  text-align: center;
  margin-bottom: 52px;
}

.ab-section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ab-purple);
  background: var(--ab-purple-pale);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.ab-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ab-text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.ab-section__title--left { text-align: left; }

.ab-section__subtitle {
  font-size: 1.05rem;
  color: var(--ab-text-muted);
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
}

.ab-section__footer {
  text-align: center;
  margin-top: 44px;
}

@media (max-width: 767px) {
  .ab-section { padding: 60px 0; }
  .ab-section__title { font-size: 1.65rem; }
  .ab-section__header { margin-bottom: 36px; }
}

/* ================================================================
   1. HERO SECTION
   ================================================================ */
.ab-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ab-white);
  overflow: hidden;
}

/* Slides */
.ab-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ab-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* opacity: 0; */
  transition: opacity 1.5s ease-in-out;
}
.ab-hero__slide.active { opacity: 1; }

/* Overlay */
.ab-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* background: linear-gradient(
    160deg,
    rgba(59, 7, 100, 0.85) 0%,
    rgba(91, 33, 182, 0.74) 45%,
    rgba(124, 58, 237, 0.55) 75%,
    rgba(168, 85, 247, 0.40) 100%
  ); */
}

/* Content */
.ab-hero__content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 32px 20px;
}

.ab-hero__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ab-purple-light);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.ab-hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.ab-hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.55;
}

.ab-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slide dots */
.ab-hero__dots {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.ab-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--ab-transition);
  padding: 0;
}
.ab-hero__dot.active,
.ab-hero__dot:hover {
  background: var(--ab-white);
  border-color: var(--ab-white);
  transform: scale(1.25);
}

/* Scroll hint */
.ab-hero__scroll-hint {
  position: absolute;
  bottom: 18px;
  right: 36px;
  z-index: 4;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.55);
  animation: abBounce 2.2s ease-in-out infinite;
}
@keyframes abBounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%       { transform: translateY(8px); opacity: 0.9; }
}

@media (max-width: 575px) {
  .ab-hero { min-height: 100svh; }
  .ab-hero__cta { flex-direction: column; align-items: center; }
  .ab-hero__cta .ab-btn { width: 100%; max-width: 300px; }
  .ab-hero__scroll-hint { display: none; }
  .ab-hero__dots { bottom: 28px; }
}

/* ================================================================
   2. BOOKING BAR
   ================================================================ */
.ab-booking-bar {
  background: var(--ab-gradient);
  padding: 22px 0;
}

.ab-booking-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ab-booking-bar__text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ab-white);
  font-size: 1rem;
  font-weight: 500;
}

.ab-booking-bar__icon { font-size: 1.3rem; flex-shrink: 0; }

.ab-booking-bar__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ab-booking-bar__inner { flex-direction: column; text-align: center; }
  .ab-booking-bar__actions { justify-content: center; }
}

/* ================================================================
   3. POPULAR SERVICES / FEATURED TREATMENTS
   ================================================================ */
.ab-services { background: var(--ab-white); }

.ab-treatment-card {
  background: var(--ab-white);
  border-radius: var(--ab-radius-md);
  overflow: hidden;
  box-shadow: var(--ab-shadow-sm);
  transition: all var(--ab-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ede9fe;
}
.ab-treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--ab-shadow-md);
}

.ab-treatment-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--ab-purple-pale);
}
.ab-treatment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ab-treatment-card:hover .ab-treatment-card__img img { transform: scale(1.07); }

.ab-treatment-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  color: var(--ab-purple-light);
}

.ab-treatment-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ab-gradient);
  color: var(--ab-white);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(109, 40, 217, 0.38);
  letter-spacing: 0.02em;
}

.ab-treatment-card__body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ab-treatment-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ab-text);
  margin-bottom: 5px;
}

.ab-treatment-card__meta {
  font-size: 0.85rem;
  color: var(--ab-purple-mid);
  margin-bottom: 10px;
  font-weight: 600;
}

.ab-treatment-card__desc {
  font-size: 0.9rem;
  color: var(--ab-text-muted);
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.55;
}

.ab-treatment-card__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ================================================================
   4. TREATMENT CATEGORIES
   ================================================================ */
.ab-categories { background: var(--ab-gradient-soft); }

.ab-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

@media (max-width: 991px) {
  .ab-categories__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .ab-categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.ab-cat-card {
  display: block;
  text-decoration: none;
  border-radius: var(--ab-radius-md);
  overflow: hidden;
  box-shadow: var(--ab-shadow-sm);
  transition: all var(--ab-transition);
  background: var(--ab-white);
}
.ab-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ab-shadow-md);
  text-decoration: none;
}

.ab-cat-card__img {
  height: 150px;
  overflow: hidden;
}
.ab-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.ab-cat-card:hover .ab-cat-card__img img { transform: scale(1.09); }

.ab-cat-card__label {
  padding: 11px 12px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ab-purple-dark);
  background: var(--ab-white);
}

/* ================================================================
   5. WHY CHOOSE ALIZAY
   ================================================================ */
.ab-why { background: var(--ab-white); }

.ab-why-card {
  background: var(--ab-purple-pale);
  border-radius: var(--ab-radius-md);
  padding: 34px 26px;
  text-align: center;
  border: 1px solid #ede9fe;
  transition: all var(--ab-transition);
  height: 100%;
}
.ab-why-card:hover {
  background: var(--ab-gradient);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: var(--ab-shadow-md);
}
.ab-why-card:hover .ab-why-card__title,
.ab-why-card:hover .ab-why-card__desc { color: var(--ab-white); }

.ab-why-card__icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.ab-why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ab-text);
  margin-bottom: 10px;
  transition: color var(--ab-transition);
}
.ab-why-card__desc {
  font-size: 0.9rem;
  color: var(--ab-text-muted);
  line-height: 1.65;
  margin: 0;
  transition: color var(--ab-transition);
}

/* ================================================================
   6. HOW IT WORKS
   ================================================================ */
.ab-how { background: var(--ab-gradient-soft); }

.ab-how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ab-step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  max-width: 220px;
}

.ab-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ab-gradient);
  color: var(--ab-white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.38);
}

.ab-step__icon {
  font-size: 2.1rem;
  margin-bottom: 12px;
  line-height: 1;
}

.ab-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ab-text);
  margin-bottom: 8px;
}

.ab-step__desc {
  font-size: 0.875rem;
  color: var(--ab-text-muted);
  line-height: 1.55;
  margin: 0;
}

.ab-step__connector {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--ab-purple-light), var(--ab-purple));
  align-self: center;
  margin-top: -52px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ab-how__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .ab-step { max-width: 100%; padding: 20px 24px; }
  .ab-step__connector {
    width: 2px;
    height: 36px;
    margin: 0;
    background: linear-gradient(180deg, var(--ab-purple-light), var(--ab-purple));
  }
}

/* ================================================================
   7. STAFF / PROFESSIONALS
   ================================================================ */
.ab-staff { background: var(--ab-white); }

.ab-staff-card {
  text-align: center;
  border-radius: var(--ab-radius-lg);
  padding: 30px 22px 26px;
  box-shadow: var(--ab-shadow-sm);
  border: 1px solid #ede9fe;
  transition: all var(--ab-transition);
  background: var(--ab-white);
}
.ab-staff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ab-shadow-md);
}

.ab-staff-card__img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--ab-purple-light);
  background: var(--ab-purple-pale);
}
.ab-staff-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-staff-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2.6rem;
  color: var(--ab-purple-light);
}

.ab-staff-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ab-text);
  margin-bottom: 5px;
}

.ab-staff-card__role {
  font-size: 0.875rem;
  color: var(--ab-purple-mid);
  margin: 0;
  font-weight: 600;
}

/* ================================================================
   8. TESTIMONIALS / REVIEWS
   ================================================================ */
.ab-reviews { background: var(--ab-gradient-soft); }

.ab-review-card {
  background: var(--ab-white);
  border-radius: var(--ab-radius-md);
  padding: 30px 26px;
  box-shadow: var(--ab-shadow-sm);
  border: 1px solid #ede9fe;
  height: 100%;
  margin: 0;
  transition: all var(--ab-transition);
}
.ab-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ab-shadow-md);
}

.ab-review-card__stars {
  font-size: 1.05rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.ab-review-card__text {
  font-size: 0.95rem;
  color: var(--ab-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
}

.ab-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ab-gradient);
  color: var(--ab-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.ab-review-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ab-text);
  font-weight: 700;
}

.ab-review-card__author span {
  font-size: 0.8rem;
  color: var(--ab-text-muted);
}

/* ================================================================
   9. SPECIAL OFFER BANNER
   ================================================================ */
.ab-offer {
  background: var(--ab-gradient);
  padding: 80px 0;
  text-align: center;
  color: var(--ab-white);
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.ab-offer::before,
.ab-offer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ab-offer::before {
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
}
.ab-offer::after {
  bottom: -100px;
  left: -60px;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.04);
}

.ab-offer__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.ab-offer__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ab-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.ab-offer__title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ab-offer__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
  line-height: 1.65;
}

/* ================================================================
   10. LOCAL SEO CONTENT
   ================================================================ */
.ab-local-seo { background: var(--ab-white); }

.ab-local-seo p {
  color: var(--ab-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.97rem;
}
.ab-local-seo strong { color: var(--ab-purple-dark); }

.ab-local-seo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.ab-local-seo__img--large {
  grid-column: 1 / -1;
  border-radius: var(--ab-radius-md);
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.ab-local-seo__img {
  border-radius: var(--ab-radius-sm);
  height: 170px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 575px) {
  .ab-local-seo__grid { grid-template-columns: 1fr; }
  .ab-local-seo__img--large { height: 200px; }
  .ab-local-seo__img { height: 160px; }
}

/* ================================================================
   11. OPENING HOURS & LOCATION
   ================================================================ */
.ab-hours-location { background: var(--ab-white); }

/* ── Opening hours intro text ── */
.ab-hours__intro {
  font-size: 0.97rem;
  color: var(--ab-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── Hours table ── */
.ab-hours__table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--ab-radius-md);
  overflow: hidden;
  border: 1px solid #ede9fe;
  margin-bottom: 32px;
}

.ab-hours__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--ab-white);
  border-bottom: 1px solid #f0ebff;
  transition: background var(--ab-transition);
}
.ab-hours__row:last-child { border-bottom: none; }
.ab-hours__row:nth-child(even) { background: var(--ab-purple-pale); }

/* Today highlight */
.ab-hours__row--today {
  background: var(--ab-gradient) !important;
  border-bottom-color: transparent;
}
.ab-hours__row--today .ab-hours__day,
.ab-hours__row--today .ab-hours__time { color: var(--ab-white); font-weight: 700; }
.ab-hours__row--today .ab-hours__today-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.22);
  color: var(--ab-white);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  vertical-align: middle;
}
.ab-hours__today-badge { display: none; } /* hidden unless .ab-hours__row--today */

.ab-hours__day {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ab-text);
  min-width: 110px;
  transition: color var(--ab-transition);
}

.ab-hours__dots {
  flex: 1;
  border-bottom: 2px dotted #d8b4fe;
  margin: 0 4px 2px;
}
.ab-hours__row--today .ab-hours__dots { border-bottom-color: rgba(255,255,255,0.4); }

.ab-hours__time {
  font-size: 0.9rem;
  color: var(--ab-purple-dark);
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--ab-transition);
}

.ab-hours__cta { margin-top: 4px; }

/* ── Location ── */
.ab-location__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-style: normal;
  font-size: 0.97rem;
  color: var(--ab-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--ab-purple-pale);
  border-radius: var(--ab-radius-sm);
  border-left: 4px solid var(--ab-purple);
}
.ab-location__address strong { color: var(--ab-text); font-size: 1rem; }
.ab-location__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.ab-location__map-wrap {
  border-radius: var(--ab-radius-md);
  overflow: hidden;
  box-shadow: var(--ab-shadow-md);
  border: 1px solid #ede9fe;
  margin-bottom: 20px;
  line-height: 0;
}
.ab-location__map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.ab-location__details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ab-location__detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--ab-text-muted);
  font-weight: 500;
}
.ab-location__detail-icon { font-size: 1.1rem; }

@media (max-width: 991px) {
  .ab-hours-location .ab-section__title--left { font-size: 1.5rem; }
}
@media (max-width: 575px) {
  .ab-hours__day { min-width: 90px; font-size: 0.875rem; }
  .ab-hours__time { font-size: 0.825rem; }
  .ab-location__map-wrap iframe { min-height: 260px; }
  .ab-location__details { flex-direction: column; gap: 10px; }
}
