/* =============================================================
   MOBILE PRODUCT PAGE — dedicated mobile layout
   Shows on mobile/tablet (≤1024px), desktop content hidden
   ============================================================= */

/* Hide mobile section on desktop */
.vp-mob-wrap { display: none; }

@media (max-width: 1024px) {
  /* Hide desktop-only content */
  .tgvc-hero { display: none !important; }
  .tgvc-product-title { display: none !important; }
  .tgvc-grid { display: none !important; }
  .tgvc-lb { display: none !important; }
  .vp-mob-extra { display: none !important; }

  /* Show mobile section */
  .vp-mob-wrap { display: block; }

  /* ── Hero ── */
  .vp-mob-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
  }
  .vp-mob-hero img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .vp-mob-hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(20,48,66,0.92));
  }
  .vp-mob-hero-badge {
    display: inline-block;
    background: var(--gold); color: var(--navy);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 5px 12px; border-radius: 4px;
    margin-bottom: 10px;
  }
  .vp-mob-hero-title {
    font-family: var(--font-display);
    color: #fff; font-size: 36px;
    margin-bottom: 6px; line-height: 1;
  }
  .vp-mob-hero-sub {
    color: rgba(255,255,255,0.9);
    font-size: 16px; font-weight: 400;
  }

  /* ── Description ── */
  .vp-mob-desc-section {
    padding: 24px 20px; background: #fff;
  }
  .vp-mob-desc-section p {
    font-size: 15px; line-height: 1.7;
    color: #444; margin-bottom: 14px;
  }
  .vp-mob-desc-section p:last-child { margin-bottom: 0; }
  .vp-mob-desc-section strong { color: var(--navy); }

  /* ── Key Stats ── */
  .vp-mob-key-stats {
    display: flex;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
    margin: 0 20px 24px;
  }
  .vp-mob-key-stat {
    flex: 1; text-align: center;
    padding: 18px 8px;
    border-right: 1px solid var(--light-grey);
  }
  .vp-mob-key-stat:last-child { border-right: none; }
  .vp-mob-key-stat-val {
    font-weight: 700; font-size: 22px;
    color: var(--navy); line-height: 1.2;
    margin-bottom: 4px;
  }
  .vp-mob-key-stat-val img { height: 20px; vertical-align: middle; }
  .vp-mob-key-stat-lbl {
    font-size: 11px; color: var(--mid-grey);
    text-transform: uppercase; letter-spacing: 0.5px;
    font-weight: 600;
  }

  /* ── Pricing Box ── */
  .vp-mob-pricing {
    background: var(--navy);
    padding: 28px 20px; margin: 0 20px 24px;
    border-radius: 4px; text-align: center;
  }
  .vp-mob-pricing-label {
    font-size: 12px; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 1.5px;
    font-weight: 600; margin-bottom: 6px;
  }
  .vp-mob-pricing-amount {
    font-family: var(--font-display);
    font-size: 44px; color: var(--gold);
    margin-bottom: 6px;
  }
  .vp-mob-pricing-note {
    font-size: 13px; color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
  }
  .vp-mob-pricing-cta {
    background: var(--blue); color: #fff;
    padding: 14px 30px; border-radius: 4px;
    font-weight: 700; font-size: 15px;
    text-decoration: none; display: inline-block;
  }

  /* ── CTA Bar ── */
  .vp-mob-cta-bar {
    display: flex; gap: 10px;
    padding: 0 20px 28px;
  }
  .vp-mob-cta-bar a {
    flex: 1; padding: 14px 8px;
    font-weight: 700; font-size: 14px;
    border-radius: 4px; text-decoration: none;
    text-align: center;
  }
  .vp-mob-cta-pri { background: var(--navy); color: #fff; }
  .vp-mob-cta-sec { border: 2px solid var(--navy); color: var(--navy); }

  /* ── Gallery ── */
  .vp-mob-gallery-section {
    padding: 28px 0; background: #fff;
  }
  .vp-mob-gallery-title {
    font-family: var(--font-display);
    color: var(--navy); font-size: 22px;
    text-align: center; margin-bottom: 20px;
    padding: 0 20px;
  }
  .vp-mob-gallery-scroll {
    display: flex; gap: 10px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px; scrollbar-width: none;
  }
  .vp-mob-gallery-scroll::-webkit-scrollbar { display: none; }
  .vp-mob-gallery-card {
    flex: 0 0 300px; scroll-snap-align: start;
    border-radius: 4px; overflow: hidden;
    height: 225px; background: var(--light-grey);
    cursor: pointer;
  }
  .vp-mob-gallery-card img {
    width: 100%; height: 100%;
    object-fit: contain; display: block;
    background: var(--light-grey);
  }
  .vp-mob-gallery-hint {
    text-align: center; font-size: 12px;
    color: var(--mid-grey); margin-top: 12px;
  }

  /* ── Specifications ── */
  .vp-mob-spec-section {
    background: var(--navy); padding: 30px 20px;
  }
  .vp-mob-spec-toggle {
    display: flex; align-items: center;
    justify-content: space-between;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
    position: sticky; top: 0; z-index: 60;
    background: var(--navy);
    padding: 16px 20px; margin: 0 -20px;
    border: none; width: calc(100% + 40px);
  }
  .vp-mob-spec-toggle.stuck {
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .vp-mob-spec-title {
    font-weight: 700; color: #fff;
    font-size: 22px; text-align: left; margin: 0;
  }
  .vp-mob-spec-chevron {
    color: var(--gold); font-size: 14px;
    font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 6px;
    flex-shrink: 0;
  }
  .vp-mob-spec-chevron .chev {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .vp-mob-spec-chevron.open .chev { transform: rotate(180deg); }

  /* Quick stats bar */
  .vp-mob-quick-stats {
    display: flex; gap: 0; margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .vp-mob-quick-stat {
    flex: 1; text-align: center;
    padding: 8px 6px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column;
    justify-content: space-between;
  }
  .vp-mob-quick-stat:last-child { border-right: none; }
  .vp-mob-quick-stat-val {
    font-weight: 700; color: #fff;
    font-size: 20px; line-height: 1.2;
    margin-bottom: 4px;
  }
  .vp-mob-quick-stat-lbl {
    color: var(--gold); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.5px;
    font-weight: 700;
  }

  /* Collapsible spec body */
  .vp-mob-spec-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .vp-mob-spec-body.open { max-height: 3000px; }
  .vp-mob-spec-inner { padding-top: 25px; }

  .vp-mob-spec-item {
    margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .vp-mob-spec-item:last-child { border-bottom: none; }
  .vp-mob-spec-label {
    color: var(--gold); font-size: 13px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 8px;
    display: block;
  }
  .vp-mob-spec-value {
    color: #e2e8f0; font-size: 15px; line-height: 1.6;
  }

  /* Color grid */
  .vp-mob-color-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 10px;
  }
  .vp-mob-color-item { display: flex; align-items: center; gap: 10px; }
  .vp-mob-swatch {
    width: 28px; height: 28px; border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0;
  }
  .vp-mob-color-name { color: #fff; font-weight: 600; font-size: 12px; display: block; }
  .vp-mob-ral { color: #94a3b8; font-size: 11px; display: block; }
  .vp-mob-bespoke {
    grid-column: 1 / -1; text-align: center;
    color: var(--gold); font-weight: 600;
    font-size: 13px; margin-top: 5px;
  }

  /* Collapsible sub-sections */
  .vp-mob-collapsible {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px; overflow: hidden; margin-top: 10px;
  }
  .vp-mob-collapsible-hdr {
    background: rgba(255,255,255,0.08); color: #fff;
    padding: 12px 15px; font-weight: 600; font-size: 14px;
    cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    user-select: none; -webkit-tap-highlight-color: transparent;
  }
  .vp-mob-collapsible-hdr:active { background: rgba(255,255,255,0.12); }
  .vp-mob-collapsible-icon {
    font-size: 14px; transition: transform 0.3s ease; color: var(--gold);
  }
  .vp-mob-collapsible-icon.open { transform: rotate(180deg); }
  .vp-mob-collapsible-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease; padding: 0 15px;
  }
  .vp-mob-collapsible-body.open { max-height: 500px; padding: 15px; }
  .vp-mob-option-list { list-style: none; padding: 0; margin: 0; }
  .vp-mob-option-list li {
    color: #e2e8f0; font-size: 14px;
    padding: 6px 0 6px 16px; position: relative;
  }
  .vp-mob-option-list li::before {
    content: "–"; position: absolute; left: 0; color: var(--gold);
  }
  .vp-mob-option-list li a {
    color: #e2e8f0; text-decoration: none;
  }
  .vp-mob-option-list li a:hover { color: var(--gold); }
  .vp-mob-combo-note {
    text-align: center; color: var(--gold);
    font-size: 12px; font-weight: 600;
    margin-top: 10px; font-style: italic;
  }

  .vp-mob-flag {
    display: inline-block; width: 24px; height: 16px;
    margin-left: 8px; vertical-align: middle;
    background-size: cover;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
  }

  .vp-mob-compare-cta {
    padding: 20px 20px 8px; text-align: center;
    background: var(--navy);
  }
  .vp-mob-compare-cta a {
    display: block; padding: 14px;
    background: var(--blue-bright); border-radius: 8px;
    text-decoration: none; color: #fff;
    font-weight: 700; font-size: 15px;
    text-align: center;
  }

  /* ── Mobile Lightbox ── */
  .vp-mob-lightbox {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95); z-index: 2000;
    display: none; flex-direction: column;
    align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .vp-mob-lightbox.active { display: flex; }
  .vp-mob-lb-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; color: #fff;
    font-size: 32px; font-weight: 300; cursor: pointer;
    z-index: 2010; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
  }
  .vp-mob-lb-counter {
    position: absolute; top: 18px; left: 16px;
    color: rgba(255,255,255,0.6); font-size: 13px;
    font-weight: 600; z-index: 2010;
  }
  .vp-mob-lb-wrap {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; touch-action: pan-y;
  }
  .vp-mob-lb-wrap img {
    max-width: 100%; max-height: 80vh;
    object-fit: contain; border-radius: 4px;
    user-select: none; transition: opacity 0.2s ease;
  }
  .vp-mob-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none;
    color: #fff; font-size: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    z-index: 2010;
  }
  .vp-mob-lb-nav:active { background: rgba(255,255,255,0.3); }
  .vp-mob-lb-prev { left: 10px; }
  .vp-mob-lb-next { right: 10px; }

  /* ── Mobile Why Work With Us ── */
  .vp-mob-why {
    padding: 32px 16px; background: var(--navy);
  }
  .vp-mob-why-eyebrow {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.8px;
    color: var(--gold); text-align: center; margin-bottom: 6px;
  }
  .vp-mob-why-title {
    font-size: 22px; font-weight: 700;
    color: #fff; text-align: center;
    margin-bottom: 6px; letter-spacing: -0.3px;
  }
  .vp-mob-why-sub {
    font-size: 14px; color: rgba(255,255,255,0.55);
    text-align: center; line-height: 1.5;
    margin-bottom: 20px; max-width: 360px;
    margin-left: auto; margin-right: auto;
  }
  .vp-mob-why-grid {
    display: flex; flex-direction: column; gap: 14px;
  }
  .vp-mob-why-card {
    padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .vp-mob-why-card h3 {
    font-size: 16px; font-weight: 600;
    color: var(--gold); margin-bottom: 6px;
  }
  .vp-mob-why-card p {
    font-size: 14px; color: rgba(255,255,255,0.72);
    line-height: 1.55;
  }
  .vp-mob-why-tagline {
    text-align: center; color: #fff;
    font-size: 16px; font-weight: 500;
    line-height: 1.5; padding: 20px 0 4px;
    font-style: italic;
  }

  /* ── Mobile How We Work ── */
  .vp-mob-process {
    padding: 32px 16px; background: #fff;
  }
  .vp-mob-process-title {
    font-size: 22px; font-weight: 700;
    color: var(--navy); text-align: center;
    margin-bottom: 6px; letter-spacing: -0.3px;
  }
  .vp-mob-process-sub {
    font-size: 14px; color: var(--mid-grey);
    text-align: center; line-height: 1.5;
    margin-bottom: 20px;
  }
  .vp-mob-process-cards {
    display: flex; flex-direction: column; gap: 16px;
  }
  .vp-mob-process-card {
    background: #fff; border: 1px solid #dee2e6;
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 1px 6px rgba(20,48,66,0.06);
  }
  .vp-mob-process-card img {
    width: 100%; aspect-ratio: 16/9;
    object-fit: cover; object-position: center top;
  }
  .vp-mob-process-card-body { padding: 14px 16px 16px; }
  .vp-mob-process-card-name {
    font-size: 17px; font-weight: 600;
    color: var(--navy); margin-bottom: 8px;
  }
  .vp-mob-process-card p {
    font-size: 14px; color: #495057;
    line-height: 1.55; margin-bottom: 6px;
  }
  .vp-mob-process-card p:last-child { margin-bottom: 0; }
  .vp-mob-process-cta {
    display: block; text-align: center;
    padding: 13px; margin-top: 20px;
    background: var(--blue); color: #fff;
    text-decoration: none; border-radius: 8px;
    font-weight: 600; font-size: 15px;
    box-shadow: 0 2px 8px rgba(1,133,255,0.25);
  }

  /* ── Mobile CTA ── */
  .vp-mob-cta-section {
    padding: 36px 20px; background: var(--cream);
    text-align: center;
  }
  .vp-mob-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 24px; font-weight: 700;
    color: var(--navy); margin-bottom: 10px;
  }
  .vp-mob-cta-section p {
    font-size: 15px; color: var(--mid-grey);
    line-height: 1.6; margin-bottom: 20px;
  }
  .vp-mob-cta-btns {
    display: flex; flex-direction: column;
    gap: 10px; align-items: center;
  }
  .vp-mob-cta-btns a {
    display: block; width: 280px;
    padding: 14px; border-radius: 8px;
    font-weight: 700; font-size: 15px;
    text-decoration: none; text-align: center;
  }
}
