/* ── SERVICES ── */
.services-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.each-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 0.7rem;
  gap: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.each-service:hover {
  border-color: rgba(0, 90, 199, 0.4);
  background: rgb(40, 44, 54);
}

.row-div2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.each-service-text {
  flex: 1;
}

.each-service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.each-service-description {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.each-service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  min-width: 52px;
  text-align: right;
}

/* Custom radio */
.radio-wrapper-15 {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: 0.2s ease;
}

.radio-wrapper-15::before,
.radio-wrapper-15::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: 0.25s ease;
}

.radio-wrapper-15::before {
  background: rgb(60, 70, 90);
}

.radio-wrapper-15::after {
  background: rgb(15, 20, 30);
  transform: scale(0);
}

.radio-wrapper-15:checked::after {
  transform: scale(0.7);
}

.radio-wrapper-15:checked::before {
  background: var(--blue);
}

/* ── SIDEBAR ── */
.sidebar {
  padding-left: 2rem;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  margin-bottom: 1.2rem;
}

.sidebar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.barbers-row {
  display: flex;
  gap: 1.2rem;
}

.barber-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.barber-chip img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.barber-chip span {
  font-size: 0.72rem;
  color: var(--muted);
}

.contact-list {
  list-style: none;
}

.contact-list li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.15s;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list li:hover {
  color: var(--blue);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
}

.hours-grid span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.hours-grid span:nth-child(odd) {
  color: var(--muted);
}

/* ── CART POPUP ── */
.cart-popup {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  background: var(--card);
  border: 1px solid rgba(0, 90, 199, 0.4);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  z-index: 300;
  opacity: 0;
  transition: opacity 0.3s, bottom 0.3s;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.cart-popup > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.cart-popup-show {
  opacity: 1;
  bottom: 1.5rem;
}

.all-products {
  margin-bottom: 0.5rem;
}

.each-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.each-product p {
  font-size: 0.85rem;
  color: var(--white);
  margin: 3px 0;
}

.total-price {
  font-weight: 700;
  color: var(--blue);
}

.button-div-book {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}

.button-div-book button,
.book-nu-button {
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.7rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.2s;
}

.button-div-book button:hover,
.book-nu-button:hover {
  background: var(--blue-dk);
}
