/* ── Page-scoped reset ── */
.lp-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 80px;
}

/* Breadcrumb */
.lp-bc {
  padding: 16px 0 0;
}

.lp-bc-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: .8rem;
  color: #6b7280;
}

.lp-bc-list a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-bc-list .sep {
  color: #d1d5db;
}

/* Title row */
.lp-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 18px;
}

.lp-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0;
}

.lp-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: .85rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}

.lp-action-btn:hover {
  background: #f3f4f6;
}

.lp-action-btn svg {
  flex-shrink: 0;
}

/* Gallery — 3 visible photos */
.lp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  cursor: pointer;
}

.lp-gallery-main {
  grid-row: 1/3;
  overflow: hidden;
}

.lp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}

.lp-gallery:hover .lp-gallery-main img {
  transform: scale(1.03);
}

.lp-gallery-thumb {
  overflow: hidden;
  position: relative;
}

.lp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}

.lp-gallery:hover .lp-gallery-thumb img {
  transform: scale(1.04);
}

.lp-gallery-thumb:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  transition: background .25s;
}

.lp-gallery-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, box-shadow .2s;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.lp-gallery-all:hover {
  background: #f3f4f6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}

/* Lightbox */
.lp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lp-lightbox.active {
  display: flex;
}

.lp-lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}

.lp-lb-close:hover {
  background: rgba(255, 255, 255, .25);
}

.lp-lb-main {
  position: relative;
  max-width: 860px;
  width: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-lb-img {
  max-height: 72vh;
  max-width: 100%;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  transition: opacity .25s;
}

.lp-lb-prev,
.lp-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}

.lp-lb-prev {
  left: -58px;
}

.lp-lb-next {
  right: -58px;
}

.lp-lb-prev:hover,
.lp-lb-next:hover {
  background: rgba(255, 255, 255, .3);
}

.lp-lb-caption {
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  text-align: center;
  margin-top: 14px;
  max-width: 600px;
}

.lp-lb-counter {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
  margin-top: 6px;
}

.lp-lb-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-lb-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: .55;
  border: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
}

.lp-lb-thumb.active,
.lp-lb-thumb:hover {
  opacity: 1;
  border-color: #fff;
}

/* Meta strip */
.lp-meta-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .95rem;
  color: #111827;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.lp-meta-strip .dot {
  color: #d1d5db;
}

.lp-meta-strip strong {
  font-weight: 700;
}

.lp-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
}

.lp-rating .star {
  color: #e91e63;
  font-size: 1rem;
}

.lp-rating a {
  color: #374151;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Two-column body */
.lp-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* Divider */
.lp-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 32px 0;
}

/* Host strip */
.lp-host {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 32px;
}

.lp-host-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lp-host-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 2px;
}

.lp-host-sub {
  font-size: .82rem;
  color: #6b7280;
  margin: 0;
}

/* Feature pills */
.lp-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.lp-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-feature-title {
  font-size: .92rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 2px;
}

.lp-feature-desc {
  font-size: .85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Section headings */
.lp-h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px;
}

.lp-h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 20px 0 8px;
}

/* Highlights */
.lp-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}

.lp-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: #374151;
  line-height: 1.5;
}
.lp-hl-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Itinerary accordion */
.lp-itin {
  display: flex;
  flex-direction: column;
}

.itin-acc {
  border-bottom: 1px solid #e5e7eb;
}

.itin-acc:first-child {
  border-top: 1px solid #e5e7eb;
}

.itin-acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.itin-acc-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.itin-acc-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .3px;
}

.itin-acc-title {
  font-size: .97rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.itin-acc-sub {
  font-size: .78rem;
  color: #9ca3af;
  margin: 3px 0 0;
}

.itin-acc-arrow {
  font-size: .8rem;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform .25s;
}

.itin-acc.open .itin-acc-arrow {
  transform: rotate(180deg);
}

.itin-acc-body {
  display: none;
  padding: 0 0 20px 50px;
}

.itin-acc.open .itin-acc-body {
  display: block;
}

.itin-acc-body h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #111827;
  margin: 16px 0 6px;
}

.itin-acc-body h4:first-child {
  margin-top: 0;
}

.itin-acc-body p {
  font-size: .88rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0 0 10px;
}

.itin-acc-body ul {
  padding-left: 18px;
  margin: 6px 0 12px;
}

.itin-acc-body ul li {
  font-size: .87rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 3px;
  text-align: justify;
}

.itin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

.itin-tags span {
  background: #f3f4f6;
  color: #374151;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Inc/Exc */
.lp-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-inc,
.lp-exc {
  border-radius: 12px;
  padding: 18px 20px;
}

.lp-inc {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.lp-exc {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.lp-inc h3 {
  font-size: .9rem;
  font-weight: 700;
  color: #166534;
  margin: 0 0 12px;
}

.lp-exc h3 {
  font-size: .9rem;
  font-weight: 700;
  color: #9f1239;
  margin: 0 0 12px;
}

.lp-inc ul,
.lp-exc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lp-inc ul li,
.lp-exc ul li {
  font-size: .84rem;
  color: #374151;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.lp-inc ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.lp-exc ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

/* FAQ */
.lp-faq {
  display: flex;
  flex-direction: column;
}

.faq-acc {
  border-bottom: 1px solid #e5e7eb;
}

.faq-acc:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-acc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-acc-head h3 {
  font-size: .92rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  flex: 1;
}

.faq-acc-arrow {
  color: #6b7280;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-acc.open .faq-acc-arrow {
  transform: rotate(180deg);
}

.faq-acc-body {
  display: none;
  padding: 0 24px 16px 0;
}

.faq-acc.open .faq-acc-body {
  display: block;
}

.faq-acc-body p {
  font-size: .87rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

.faq-acc-body a {
  color: #e91e63;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Sticky Sidebar Card ── */
.lp-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-book-card {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.lp-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.lp-price-old {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.lp-price-new {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
}

.lp-price-per {
  font-size: .85rem;
  color: #6b7280;
  font-weight: 500;
}

.lp-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* Date/guest selector strip */
.lp-book-fields {
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.lp-book-field {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border-bottom: 1.5px solid #d1d5db;
}

.lp-book-field:last-child {
  border-bottom: none;
}

.lp-book-field label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #6b7280;
  margin-bottom: 3px;
}

.lp-book-field span {
  font-size: .9rem;
  color: #374151;
  font-weight: 500;
}

.lp-book-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lp-book-field-row .lp-book-field {
  border-bottom: none;
}

.lp-book-field-row .lp-book-field:first-child {
  border-right: 1.5px solid #d1d5db;
}

.lp-book-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(233, 30, 99, .3);
  transition: opacity .2s, transform .2s;
}

.lp-book-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.lp-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: 13px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
  transition: opacity .2s;
}

.lp-wa-btn:hover {
  opacity: .9;
}

.lp-book-note {
  font-size: .75rem;
  color: #9ca3af;
  text-align: center;
  margin: 0 0 16px;
}

.lp-book-divider {
  border: none;
  border-top: 1px solid #f3f4f6;
  margin: 16px 0;
}

/* Price breakdown */
.lp-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-pb-row {
  display: flex;
  justify-content: space-between;
  font-size: .86rem;
  color: #374151;
}

.lp-pb-row.total {
  font-weight: 800;
  color: #111827;
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  margin-top: 4px;
}

/* Quick facts strip */
.lp-qfacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-qf {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #374151;
}

.lp-qf-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Rating card */
.lp-rating-card {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 20px 22px;
}

.lp-rating-big {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
}

.lp-rating-stars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-stars-row {
  display: flex;
  gap: 2px;
  color: #e91e63;
  font-size: .9rem;
}

.lp-rating-count {
  font-size: .78rem;
  color: #6b7280;
}

.lp-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-rb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: #374151;
}

.lp-rb-label {
  width: 80px;
  flex-shrink: 0;
}

.lp-rb-bar {
  flex: 1;
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.lp-rb-fill {
  height: 100%;
  background: #111827;
  border-radius: 3px;
}

.lp-rb-fill-94 {
  width: 94%;
}

.lp-rb-fill-96 {
  width: 96%;
}

.lp-rb-fill-98 {
  width: 98%;
}

.lp-rb-fill-100 {
  width: 100%;
}

/* Related */
.lp-related {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 20px;
}

.lp-related-title {
  font-size: .9rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px;
}

.lp-related-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: opacity .2s;
}

.lp-related-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp-related-item:hover {
  opacity: .75;
}

.lp-related-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.lp-related-name {
  font-size: .84rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2px;
}

.lp-related-dur {
  font-size: .74rem;
  color: #9ca3af;
  margin: 0;
}

/* Alternating section backgrounds */
.lp-alt-bg {
  background: #f0f2f5;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 32px;
}

/* ── Inline style replacements ── */
.lp-itin-section {
  margin-bottom: 32px;
}

.lp-itin-subtitle {
  font-size: .88rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.lp-note-p {
  font-size: .88rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: justify;
}

.lp-note-p-last {
  font-size: .88rem;
  color: #4b5563;
  line-height: 1.75;
}

.lp-pink-link {
  color: #e91e63;
  text-decoration: underline;
}

.lp-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.lp-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
}

.lp-best-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.lp-custom-pkg-note {
  font-size: .9rem;
  color: #6b7280;
  margin: 0;
  font-weight: 600;
}

.lp-save-icon {
  transition: fill .2s;
}

/* Mobile */
@media (max-width:1024px) {
  .lp-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-sidebar {
    position: static;
    order: -1;
  }

  .lp-gallery {
    grid-template-rows: 200px 200px;
  }

  .lp-lb-prev {
    left: -44px;
  }

  .lp-lb-next {
    right: -44px;
  }
}

@media (max-width:640px) {
  .lp-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px;
  }

  .lp-gallery-main {
    grid-row: auto;
  }

  .lp-gallery-thumb {
    display: none;
  }

  .lp-title {
    font-size: 1.35rem;
  }

  .lp-highlights {
    grid-template-columns: 1fr;
  }

  .lp-inc-exc {
    grid-template-columns: 1fr;
  }

  .lp-title-row {
    flex-direction: column;
    gap: 10px;
  }

  .lp-lb-prev {
    left: 4px;
  }

  .lp-lb-next {
    right: 4px;
  }

  .lp-lb-main {
    width: 100%;
  }
}

.lp-note-block {
  margin-bottom: 14px;
}

.lp-note-heading {
  margin: 0 0 4px;
  font-size: .95rem;
  color: #111827;
}

.lp-gallery-placeholder img {
  opacity: .75;
}

/* ── Booking Form (lp-book-card) ── */
.bk-field {
  margin-bottom: 11px;
}

.bk-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}

.bk-req {
  color: #e67e22;
}

.bk-package-name {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .82rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.bk-input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .875rem;
  color: #1e293b;
  background: #fff;
  outline: none;
  transition: border-color .18s;
  box-sizing: border-box;
}

.bk-input:focus {
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, .12);
}

.bk-input::placeholder {
  color: #94a3b8;
}

/* Counter row */
.bk-persons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.bk-person-field {
  text-align: center;
}

.bk-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.bk-cnt-btn {
  background: #f8fafc;
  border: none;
  width: 28px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
  color: #475569;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: background .15s;
}

.bk-cnt-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.bk-cnt-input {
  width: 36px;
  border: none;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  color: #1e293b;
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
}

.bk-cnt-input::-webkit-outer-spin-button,
.bk-cnt-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bk-age-note {
  font-size: .63rem;
  color: #94a3b8;
  display: block;
  margin-top: 3px;
}

/* Submit button */
.bk-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s, transform .15s;
  margin-bottom: 0;
}

.bk-submit-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.bk-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}