/* =============================================================================
   VV Marina , Frontend Stylesheet v3
   Author: VV Design (https://vvdesign.co.uk)
   ============================================================================= */

/* ── Tokens ─────────────────────────────────────────────────────────────────── */
:root {
  --vvm-navy:    #0D1B2A;
  --vvm-gold:    #B8966E;
  --vvm-ivory:   #F7F4EF;
  --vvm-border:  #e8e3db;
  --vvm-text:    #1d2327;
  --vvm-muted:   #6b6560;
  --vvm-green:   #16a34a;
  --vvm-blue:    #2563eb;
  --vvm-red:     #dc2626;
  --vvm-radius:  10px;
  --vvm-radius-sm: 6px;
  --vvm-shadow:  0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --vvm-transition: all 0.2s ease;
}

/* ── Boat grid ───────────────────────────────────────────────────────────────── */
.vvm-boats-grid {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.vvm-cols-1 { grid-template-columns: 1fr; }
.vvm-cols-2 { grid-template-columns: repeat(2, 1fr); }
.vvm-cols-3 { grid-template-columns: repeat(3, 1fr); }
.vvm-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .vvm-cols-4 { grid-template-columns: repeat(3, 1fr); }
  .vvm-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vvm-cols-4, .vvm-cols-3, .vvm-cols-2 { grid-template-columns: 1fr; }
}

.vvm-no-boats {
  font-size: 15px;
  color: var(--vvm-muted);
  text-align: center;
  padding: 40px 20px;
}

/* ── Boat card ───────────────────────────────────────────────────────────────── */
.vvm-boat-card {
  background: #fff;
  border: 1px solid var(--vvm-border);
  border-radius: var(--vvm-radius);
  overflow: hidden;
  box-shadow: var(--vvm-shadow);
  transition: var(--vvm-transition);
  display: flex;
  flex-direction: column;
}
.vvm-boat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13,27,42,.12);
  border-color: var(--vvm-gold);
}

.vvm-boat-card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.vvm-boat-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vvm-boat-card:hover .vvm-boat-card__img { transform: scale(1.04); }

.vvm-boat-card__no-img {
  width: 100%; height: 100%;
  background: var(--vvm-ivory);
  display: flex; align-items: center; justify-content: center;
  color: var(--vvm-muted);
}
.vvm-boat-card__no-img .dashicons { font-size: 48px; width: 48px; height: 48px; opacity: .3; }

.vvm-boat-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.vvm-boat-card__badge--sale { background: var(--vvm-navy); color: var(--vvm-gold); }
.vvm-boat-card__badge--hire { background: var(--vvm-blue); color: #fff; }
.vvm-boat-card__badge--reserved { background: #f7ead8; color: #6f4e22; box-shadow: inset 0 0 0 1px rgba(184,150,110,.35); }
.vvm-boat-card__badge--sold {
  background: linear-gradient(135deg, #161616, #5f4b36);
  color: #f5e6cf;
  box-shadow: 0 4px 14px rgba(13,27,42,.24);
}

.vvm-boat-card--status-sold {
  border-color: rgba(184,150,110,.55);
  background: linear-gradient(180deg, #fff 0%, #fbf8f3 100%);
}
.vvm-boat-card--status-sold .vvm-boat-card__img {
  opacity: .62;
  filter: saturate(.75);
}
.vvm-boat-card--status-sold:hover .vvm-boat-card__img {
  transform: none;
}
.vvm-boat-card--status-sold .vvm-boat-card__price {
  color: var(--vvm-muted);
  font-size: 18px;
  font-weight: 700;
}
.vvm-boat-card__sold-ribbon {
  position: absolute;
  right: -34px;
  top: 20px;
  width: 128px;
  padding: 7px 0;
  transform: rotate(38deg);
  transform-origin: center;
  background: linear-gradient(135deg, #0D1B2A, #57442f);
  color: #f4dfbf;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0,0,0,.24);
}

.vvm-boat-card__featured {
  position: absolute; top: 12px; right: 12px;
  background: var(--vvm-gold); color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

.vvm-boat-card__body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column;
  gap: 8px; flex: 1;
}

.vvm-boat-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vvm-gold);
}

.vvm-boat-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: var(--vvm-navy);
}
.vvm-boat-card__title a { text-decoration: none; color: inherit; }
.vvm-boat-card__title a:hover { color: var(--vvm-gold); }

.vvm-boat-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--vvm-muted);
}
.vvm-boat-card__specs span {
  display: flex; align-items: center; gap: 4px;
}

.vvm-boat-card__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--vvm-navy);
  letter-spacing: -0.5px;
  margin-top: auto;
}
.vvm-boat-card__price small { font-size: 13px; font-weight: 400; color: var(--vvm-muted); }

.vvm-boat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--vvm-navy);
  color: var(--vvm-gold) !important;
  border-radius: var(--vvm-radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: var(--vvm-transition);
  margin-top: 4px;
  align-self: flex-start;
}
.vvm-boat-card__cta:hover {
  background: #152130;
  transform: translateX(2px);
}
.vvm-boat-card--modal {
  cursor: pointer;
}

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.vvm-form {
  max-width: 900px;
}

.vvm-form__section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vvm-navy);
  border-bottom: 2px solid var(--vvm-gold);
  padding-bottom: 8px;
  margin: 24px 0 16px;
}
.vvm-form__section-title:first-child { margin-top: 0; }

.vvm-form__row { display: grid; gap: 16px; }
.vvm-form__row--2 { grid-template-columns: 1fr 1fr; }
.vvm-form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 768px) {
  .vvm-form__row--2, .vvm-form__row--3 { grid-template-columns: 1fr; }
}

.vvm-form__field { display: flex; flex-direction: column; gap: 6px; }

.vvm-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--vvm-navy);
}

.vvm-form__field input[type="text"],
.vvm-form__field input[type="email"],
.vvm-form__field input[type="tel"],
.vvm-form__field input[type="number"],
.vvm-form__field input[type="date"],
.vvm-form__field select,
.vvm-form__field textarea {
  border: 1.5px solid var(--vvm-border);
  border-radius: var(--vvm-radius-sm);
  padding: 10px 13px;
  font-size: 14px;
  color: var(--vvm-text);
  background: #fff;
  font-family: inherit;
  transition: border-color .15s;
  width: 100%;
  outline: none;
}

.vvm-form__field input:focus,
.vvm-form__field select:focus,
.vvm-form__field textarea:focus {
  border-color: var(--vvm-navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,.08);
}

.vvm-form__field textarea { min-height: 120px; resize: vertical; }
.vvm-form__field input[type="file"] { padding: 8px; font-size: 13px; cursor: pointer; }

.vvm-form__radios { display: flex; gap: 16px; flex-wrap: wrap; }
.vvm-form__radios label { display: flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; }

.vvm-form__hint { font-size: 12px; color: var(--vvm-muted); margin-top: -2px; }

.vvm-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 13px 28px;
  background: var(--vvm-navy);
  color: var(--vvm-gold);
  border: none;
  border-radius: var(--vvm-radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--vvm-transition);
  font-family: inherit;
}
.vvm-form__submit:hover { background: #152130; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,27,42,.2); }

/* ── Form messages ───────────────────────────────────────────────────────────── */
.vvm-form-success,
.vvm-form-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--vvm-radius-sm);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.vvm-form-success { background: #f0fdf4; color: #14532d; border: 1px solid rgba(22,163,74,.2); }
.vvm-form-error   { background: #fef2f2; color: #7f1d1d; border: 1px solid rgba(220,38,38,.2); }

/* ── Single boat template ────────────────────────────────────────────────────── */
.vvm-single-boat { max-width: 1100px; margin: 0 auto; }

.vvm-single-boat__hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .vvm-single-boat__hero { grid-template-columns: 1fr; } }

.vvm-single-boat__gallery { display: flex; flex-direction: column; gap: 10px; }
.vvm-single-boat__main-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--vvm-radius); }
.vvm-single-boat__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.vvm-single-boat__thumb { aspect-ratio: 1; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: border-color .15s; }
.vvm-single-boat__thumb.is-active, .vvm-single-boat__thumb:hover { border-color: var(--vvm-gold); }

.vvm-single-boat__info { display: flex; flex-direction: column; gap: 16px; }
.vvm-single-boat__type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--vvm-gold); }
.vvm-single-boat__title { font-size: 28px; font-weight: 800; color: var(--vvm-navy); margin: 0; line-height: 1.2; }
.vvm-single-boat__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.vvm-single-boat__badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.vvm-single-boat__badge--sale { background: var(--vvm-navy); color: var(--vvm-gold); }
.vvm-single-boat__badge--hire { background: var(--vvm-blue); color: #fff; }

.vvm-single-boat__price { font-size: 32px; font-weight: 800; color: var(--vvm-navy); }
.vvm-single-boat__price small { font-size: 16px; color: var(--vvm-muted); font-weight: 400; }

.vvm-single-boat__specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: var(--vvm-ivory); border-radius: var(--vvm-radius-sm); padding: 16px;
}
.vvm-single-boat__spec { display: flex; flex-direction: column; gap: 2px; }
.vvm-single-boat__spec dt { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--vvm-muted); }
.vvm-single-boat__spec dd { font-size: 14px; font-weight: 600; color: var(--vvm-navy); margin: 0; }

.vvm-single-boat__cta { display: flex; flex-direction: column; gap: 10px; }
.vvm-single-boat__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; border-radius: var(--vvm-radius-sm); font-size: 15px; font-weight: 600;
  text-decoration: none !important; transition: var(--vvm-transition); text-align: center;
  border: 2px solid transparent;
}
.vvm-single-boat__btn--primary { background: var(--vvm-navy); color: var(--vvm-gold) !important; }
.vvm-single-boat__btn--primary:hover { background: #152130; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(13,27,42,.2); }
.vvm-single-boat__btn--outline { border-color: var(--vvm-navy); color: var(--vvm-navy) !important; background: transparent; }
.vvm-single-boat__btn--outline:hover { background: var(--vvm-navy); color: var(--vvm-gold) !important; }

.vvm-single-boat__description { margin-top: 8px; }
.vvm-single-boat__description h2 { font-size: 18px; font-weight: 700; color: var(--vvm-navy); margin-bottom: 12px; }
.vvm-single-boat__description p { font-size: 15px; line-height: 1.7; color: var(--vvm-text); }

/* ── Hire booking section ────────────────────────────────────────────────────── */
.vvm-hire-section {
  background: var(--vvm-ivory);
  border-radius: var(--vvm-radius);
  padding: 32px;
  margin-top: 40px;
}
.vvm-hire-section h2 { font-size: 20px; font-weight: 700; color: var(--vvm-navy); margin: 0 0 20px; }

.vvm-hire-summary {
  display: flex; gap: 16px;
  background: #fff; border: 1px solid var(--vvm-border);
  border-radius: var(--vvm-radius-sm); padding: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.vvm-hire-summary__item { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 120px; }
.vvm-hire-summary__item dt { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--vvm-muted); }
.vvm-hire-summary__item dd { font-size: 16px; font-weight: 700; color: var(--vvm-navy); margin: 0; }

/* ── Sale card: image/title as button ────────────────────────────────────────── */
button.vvm-boat-card__image-link {
  width: 100%; padding: 0; border: none; background: none; cursor: pointer;
  display: block; position: relative; overflow: hidden; aspect-ratio: 4/3; text-align: left;
}
button.vvm-boat-card__cta {
  font-family: inherit; cursor: pointer; border: none;
}

/* ── Boat modal (vvm-bm) ─────────────────────────────────────────────────────── */
body.vvm-modal-open { overflow: hidden; }

.vvm-bm {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
}
.vvm-bm[hidden] { display: none; }

.vvm-bm__overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vvm-bm.is-open .vvm-bm__overlay { opacity: 1; }

.vvm-bm__wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 1080px; margin: 16px;
  max-height: calc(100vh - 32px);
  display: flex; flex-direction: column;
}

.vvm-bm__panel {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: calc(100vh - 32px);
  position: relative;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.25,.46,.45,.94), opacity 0.28s ease;
  box-shadow: 0 32px 80px rgba(13,27,42,0.28), 0 4px 16px rgba(13,27,42,0.1);
}
.vvm-bm.is-open .vvm-bm__panel { transform: translateY(0) scale(1); opacity: 1; }

/* Close */
.vvm-bm__close {
  position: absolute; top: 14px; right: 14px; z-index: 20;
  width: 38px; height: 38px;
  background: rgba(13,27,42,0.75); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, transform 0.18s;
}
.vvm-bm__close:hover { background: var(--vvm-navy); transform: scale(1.08); }

/* Two-column layout */
.vvm-bm__layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

/* ── Gallery column ─── */
.vvm-bm__gallery {
  background: var(--vvm-navy);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.vvm-bm__gallery-stage {
  position: relative; flex: 1; min-height: 0;
  overflow: hidden;
}

.vvm-bm__main-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 0.2s ease;
}

.vvm-bm__no-img {
  width: 100%; height: 100%; min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  background: var(--vvm-navy); color: rgba(255,255,255,.2);
}

.vvm-bm__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(13,27,42,0.7); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, transform 0.18s;
  z-index: 2;
}
.vvm-bm__arrow:hover { background: var(--vvm-gold); transform: translateY(-50%) scale(1.08); }
.vvm-bm__arrow--prev { left: 12px; }
.vvm-bm__arrow--next { right: 12px; }

.vvm-bm__thumbs {
  display: flex; gap: 6px; padding: 8px 10px;
  overflow-x: auto; flex-shrink: 0;
  background: rgba(13,27,42,0.95);
  scrollbar-width: thin; scrollbar-color: rgba(184,150,110,.5) transparent;
}
.vvm-bm__thumbs::-webkit-scrollbar { height: 4px; }
.vvm-bm__thumbs::-webkit-scrollbar-thumb { background: rgba(184,150,110,.5); border-radius: 2px; }

.vvm-bm__thumb {
  flex-shrink: 0; width: 62px; height: 52px;
  border: 2px solid transparent; border-radius: 6px;
  overflow: hidden; cursor: pointer; padding: 0; background: none;
  transition: border-color 0.15s, transform 0.15s;
}
.vvm-bm__thumb.is-active,
.vvm-bm__thumb:hover { border-color: var(--vvm-gold); transform: scale(1.04); }
.vvm-bm__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Info column ─── */
.vvm-bm__info {
  display: flex; flex-direction: column; gap: 18px;
  padding: 30px 26px; overflow-y: auto;
}

.vvm-bm__header { display: flex; flex-direction: column; gap: 6px; }

.vvm-bm__type {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--vvm-gold);
}

.vvm-bm__title {
  font-size: 24px; font-weight: 800;
  color: var(--vvm-navy); margin: 0; line-height: 1.2;
}

.vvm-bm__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.vvm-bm__badge { padding: 3px 10px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.vvm-bm__badge--sale { background: var(--vvm-navy); color: var(--vvm-gold); }
.vvm-bm__badge--hire { background: var(--vvm-blue); color: #fff; }
.vvm-bm__badge--reserved { background: #f7ead8; color: #6f4e22; box-shadow: inset 0 0 0 1px rgba(184,150,110,.35); }
.vvm-bm__badge--sold { background: linear-gradient(135deg, #161616, #5f4b36); color: #f5e6cf; }

.vvm-bm__price {
  font-size: 28px; font-weight: 800;
  color: var(--vvm-navy); letter-spacing: -0.5px;
}

/* Specs grid */
.vvm-bm__specs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  background: var(--vvm-ivory); border-radius: 10px; padding: 14px 16px; margin: 0;
}
.vvm-bm__spec { display: flex; flex-direction: column; gap: 2px; }
.vvm-bm__spec dt { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--vvm-muted); }
.vvm-bm__spec dd { font-size: 13px; font-weight: 600; color: var(--vvm-navy); margin: 0; }

/* Description */
.vvm-bm__description p { font-size: 13px; line-height: 1.7; color: #444; margin: 0 0 6px; }
.vvm-bm__description p:last-child { margin-bottom: 0; }

/* Additional specs */
.vvm-bm__addl-specs { border-top: 1px solid var(--vvm-border); padding-top: 14px; }
.vvm-bm__addl-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--vvm-muted); margin: 0 0 6px; }
.vvm-bm__addl-specs p { font-size: 13px; line-height: 1.6; color: #555; margin: 0; }

/* Actions */
.vvm-bm__actions {
  display: flex; flex-direction: column; gap: 9px;
  margin-top: auto; padding-top: 4px;
}

.vvm-bm__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  text-decoration: none !important;
  transition: all 0.18s ease; text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.vvm-bm__btn--enquire { background: var(--vvm-navy); color: var(--vvm-gold) !important; border-color: var(--vvm-navy); }
.vvm-bm__btn--enquire:hover { background: #152130; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,27,42,.22); }
.vvm-bm__btn--enquire:disabled {
  cursor: default;
  background: #f3eee7;
  color: #6f6358 !important;
  border-color: rgba(184,150,110,.45);
  box-shadow: none;
  transform: none;
}
.vvm-bm--sold .vvm-bm__price {
  color: var(--vvm-muted);
  font-size: 23px;
}

.vvm-bm__contact {
  border-top: 1px solid var(--vvm-border);
  padding-top: 16px;
}
.vvm-bm__direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.vvm-bm__direct-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--vvm-border);
  border-radius: var(--vvm-radius-sm);
  color: var(--vvm-navy);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.vvm-bm__direct-contact a:hover {
  border-color: var(--vvm-navy);
  background: var(--vvm-ivory);
}
.vvm-bm__form {
  max-width: none;
}
.vvm-bm__form .vvm-form__row {
  gap: 10px;
}
.vvm-bm__form .vvm-form__field {
  margin-bottom: 10px;
}
.vvm-bm__form .vvm-form__field textarea {
  min-height: 96px;
}
.vvm-bm__form .vvm-form-success,
.vvm-bm__form .vvm-form-error {
  margin-top: 10px;
  padding: 11px 13px;
  font-size: 13px;
}
.vvm-bm__form .vvm-form__submit {
  margin-top: 12px;
  padding: 11px 18px;
  font-size: 13px;
}

/* ── Responsive ─── */
@media (max-width: 880px) {
  .vvm-bm__layout { grid-template-columns: 1fr; overflow: visible; }
  .vvm-bm__gallery { max-height: 52vw; min-height: 220px; }
  .vvm-bm__gallery-stage { height: 100%; }
  .vvm-bm__info { max-height: none; padding: 22px 18px; }
  .vvm-bm__panel { max-height: 92vh; overflow-y: auto; }
  .vvm-bm__wrap { margin: 8px; max-height: calc(100vh - 16px); }
  .vvm-bm__title { font-size: 20px; }
}

@media (max-width: 480px) {
  .vvm-bm__price { font-size: 22px; }
  .vvm-bm__specs-grid { grid-template-columns: 1fr; }
  .vvm-bm__info { padding: 18px 14px; }
  .vvm-bm__actions { flex-direction: column; }
}
