:root {
  --ev21vrbu-red: #D91E1E;
  --ev21vrbu-red-dark: #A80000;
  --ev21vrbu-red-light: #FF3B3B;
  --ev21vrbu-red-pale: #FFF0F0;
  --ev21vrbu-red-border: #FFBABA;
  --ev21vrbu-gray: #F5F5F5;
  --ev21vrbu-gray-mid: #CCCCCC;
  --ev21vrbu-text: #1A1A1A;
  --ev21vrbu-text-sub: #666666;
  --ev21vrbu-white: #FFFFFF;
  --ev21vrbu-table-head: #C41414;
  --ev21vrbu-table-row1: #FFF5F5;
  --ev21vrbu-table-row2: #FFEAEA;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: var(--ev21vrbu-text);
}

/* ===================== WRAPPER ===================== */
.ev21vrbu-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

/* ===================== TOP: 2カラム ===================== */
.ev21vrbu-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.ev21vrbu-media-section {
  padding: 16px;
}

.ev21vrbu-media-label {
  font-size: 18px;
  font-weight: 900;
  color: var(--ev21vrbu-red);
  margin-bottom: 12px;
}

.ev21vrbu-price-notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.ev21vrbu-price-notes p {
  font-size: 13px;
  color: var(--ev21vrbu-text-sub);
  line-height: 1.6;
}

.ev21vrbu-media-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ev21vrbu-media-list li {
  font-size: 16px;
  color: var(--ev21vrbu-text);
}

.ev21vrbu-price-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: var(--ev21vrbu-red-pale);
  border: 1.5px solid var(--ev21vrbu-red-border);
  border-radius: 4px;
  margin-bottom: 16px;
}

.ev21vrbu-price-tax-ex,
.ev21vrbu-price-tax-in {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ev21vrbu-price-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ev21vrbu-text-sub);
  width: 30px;
}

.ev21vrbu-price-tax-in .ev21vrbu-price-num {
  font-size: 50px;
  font-weight: 900;
  color: var(--ev21vrbu-red);
}

.ev21vrbu-price-tax-ex .ev21vrbu-price-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--ev21vrbu-text-sub);
}

/* --- 左カラム --- */
.ev21vrbu-left-col {}

.ev21vrbu-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ev21vrbu-gray);
  border: 2px solid var(--ev21vrbu-red-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--ev21vrbu-text-sub);
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.15s ease;
}

.ev21vrbu-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サムネイル列 */
.ev21vrbu-thumbs-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ev21vrbu-thumb-arrow {
  background: none;
  border: 1px solid var(--ev21vrbu-red);
  color: var(--ev21vrbu-red);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.ev21vrbu-thumb-arrow:hover {
  background: var(--ev21vrbu-red);
  color: #fff;
}

.ev21vrbu-thumbs {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.ev21vrbu-thumb {
  flex: 1;
  aspect-ratio: 1;
  background: var(--ev21vrbu-gray);
  border: 1.5px solid var(--ev21vrbu-gray-mid);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ev21vrbu-text-sub);
  cursor: pointer;
  transition: border-color .2s;
  overflow: hidden;
}

.ev21vrbu-thumb:hover,
.ev21vrbu-thumb.active {
  border-color: var(--ev21vrbu-red);
}

.ev21vrbu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 右カラム --- */
.ev21vrbu-right-col {}

.ev21vrbu-product-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--ev21vrbu-text);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ev21vrbu-price-link {
  display: inline-block;
  font-size: 14px;
  color: var(--ev21vrbu-red);
  text-decoration: none;
  border-bottom: 1px solid var(--ev21vrbu-red);
  margin-bottom: 20px;
  transition: opacity .2s;
}

.ev21vrbu-price-link:hover {
  opacity: .7;
}

.ev21vrbu-plan-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--ev21vrbu-red-border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ev21vrbu-text-sub);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23D91E1E'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}

.ev21vrbu-plan-select:focus {
  border-color: var(--ev21vrbu-red);
}

.ev21vrbu-plan-name-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ev21vrbu-text);
  margin-bottom: 16px;
  padding: 8px 12px;
  background: var(--ev21vrbu-red-pale);
  border-left: 3px solid var(--ev21vrbu-red);
  border-radius: 2px;
}

.ev21vrbu-form-placeholder {
  width: 100%;
  /* padding: 28px 16px; */
  background: var(--ev21vrbu-red-pale);
  border: 2px dashed var(--ev21vrbu-red-border);
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ev21vrbu-red-dark);
  line-height: 1.6;
}

/* ===================== 商品詳細スペック ===================== */
.ev21vrbu-detail-section {
  margin-bottom: 36px;
}

.ev21vrbu-detail-heading {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  background: var(--ev21vrbu-red);
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev21vrbu-detail-heading::before {
  content: '▍';
  color: rgba(255,255,255,.5);
  font-size: 14px;
}

.ev21vrbu-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1.5px solid var(--ev21vrbu-red-border);
  border-top: none;
  font-size: 14px;
}

.ev21vrbu-spec-table tr {
  border-bottom: 1px solid var(--ev21vrbu-red-border);
}

.ev21vrbu-spec-table tr:last-child {
  border-bottom: none;
}

.ev21vrbu-spec-table th {
  background: var(--ev21vrbu-red-pale);
  color: var(--ev21vrbu-red-dark);
  font-weight: 700;
  padding: 12px 14px;
  white-space: nowrap;
  vertical-align: top;
  width: 110px;
  border-right: 2px solid var(--ev21vrbu-red-border);
}

.ev21vrbu-spec-table th::before {
  content: '■ ';
  color: var(--ev21vrbu-red);
}

.ev21vrbu-spec-table td {
  padding: 12px 16px;
  color: var(--ev21vrbu-text);
  line-height: 1.7;
  vertical-align: top;
}

.ev21vrbu-spec-note {
  font-size: 14px;
  color: var(--ev21vrbu-text-sub);
  margin-top: 3px;
}

.ev21vrbu-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev21vrbu-spec-list li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.7;
}

.ev21vrbu-spec-list li::before {
  content: '・';
  color: var(--ev21vrbu-red);
}

.ev21vrbu-spec-sub {
  font-size: 14px;
  color: var(--ev21vrbu-text-sub);
  padding-left: 1.5em;
  line-height: 1.6;
  display: block;
  margin-top: -2px;
  margin-bottom: 4px;
}

/* ===================== 搬入・機材セクション ===================== */
.ev21vrbu-carry-section {
  margin-bottom: 36px;
  border: 1.5px solid var(--ev21vrbu-red-border);
  border-radius: 6px;
  overflow: hidden;
}

.ev21vrbu-carry-heading {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  background: var(--ev21vrbu-red-dark);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev21vrbu-carry-heading::before {
  content: '▍';
  color: rgba(255,255,255,.4);
}

.ev21vrbu-carry-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ev21vrbu-carry-img {
  background: var(--ev21vrbu-gray);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ev21vrbu-text-sub);
  font-size: 14px;
  border-right: 1.5px solid var(--ev21vrbu-red-border);
}

.ev21vrbu-carry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev21vrbu-carry-text {
  padding: 20px;
  background: var(--ev21vrbu-red-pale);
}

.ev21vrbu-carry-lead {
  font-size: 14px;
  font-weight: 700;
  color: var(--ev21vrbu-text);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--ev21vrbu-red-border);
}

.ev21vrbu-carry-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev21vrbu-carry-checklist li {
  font-size: 14px;
  color: var(--ev21vrbu-text);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.5;
}

.ev21vrbu-carry-checklist li::before {
  content: '✔';
  color: var(--ev21vrbu-red);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ev21vrbu-price-unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--ev21vrbu-text-sub);
}

/* ===================== MIDDLE: TikTok + 詳細 ===================== */
.ev21vrbu-mid-section {
  margin-bottom: 36px;
}

.ev21vrbu-tiktok-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ev21vrbu-text-sub);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev21vrbu-tiktok-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--ev21vrbu-text);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-2.88 2.5 2.89 2.89 0 0 1-2.89-2.89 2.89 2.89 0 0 1 2.89-2.89c.28 0 .54.04.79.1V9.01a6.27 6.27 0 0 0-.79-.05 6.34 6.34 0 0 0-6.34 6.34 6.34 6.34 0 0 0 6.34 6.34 6.34 6.34 0 0 0 6.33-6.34V8.69a8.07 8.07 0 0 0 4.74 1.51V6.69a4.85 4.85 0 0 1-.97-.0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.ev21vrbu-mid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ev21vrbu-video-block {
  /* aspect-ratio: 4/3;
  background: var(--ev21vrbu-text); */
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity .2s;
}

.ev21vrbu-video-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e3d9d9 60%, var(--ev21vrbu-red-dark));
  opacity: .9;
}

.ev21vrbu-video-block span {
  position: relative;
}

.ev21vrbu-video-block:hover {
  opacity: .85;
}

.ev21vrbu-detail-block {
  aspect-ratio: 4/3;
  background: var(--ev21vrbu-gray);
  border: 2px solid var(--ev21vrbu-red-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--ev21vrbu-text-sub);
  overflow: hidden;
}

.ev21vrbu-detail-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== TABLE ===================== */
.ev21vrbu-table-section {}

.ev21vrbu-table-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ev21vrbu-red-dark);
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--ev21vrbu-red);
  display: inline-block;
}

.ev21vrbu-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1.5px solid var(--ev21vrbu-red-border);
}

.ev21vrbu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  white-space: nowrap;
}

.ev21vrbu-table thead tr:first-child th {
  background: var(--ev21vrbu-table-head);
  color: #fff;
  padding: 8px 10px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}

.ev21vrbu-table thead tr:first-child th:first-child {
  background: var(--ev21vrbu-red-dark);
}

.ev21vrbu-table thead tr:nth-child(2) th {
  background: #e83030;
  color: #fff;
  padding: 6px 10px;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  font-size: 14px;
}

.ev21vrbu-table tbody tr:nth-child(odd) td {
  background: var(--ev21vrbu-table-row1);
}

.ev21vrbu-table tbody tr:nth-child(even) td {
  background: var(--ev21vrbu-table-row2);
}

.ev21vrbu-table tbody tr:hover td {
  background: #ffd5d5;
}

.ev21vrbu-table td {
  padding: 7px 12px;
  text-align: center;
  border-right: 1px solid var(--ev21vrbu-red-border);
  border-bottom: 1px solid var(--ev21vrbu-red-border);
  color: var(--ev21vrbu-text);
}

.ev21vrbu-table td:first-child {
  background: var(--ev21vrbu-red) !important;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 40px;
}

.ev21vrbu-table td:last-child,
.ev21vrbu-table th:last-child {
  border-right: none;
  text-align: left;
  white-space: normal;
  max-width: 180px;
  font-size: 14px;
}

.ev21vrbu-table tbody tr:hover td:first-child {
  background: var(--ev21vrbu-red-dark) !important;
}

/* 色変更 */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(255, 199, 199, 0.2),
    rgba(255, 82, 82, 0.4)
  );
}

.hero-section::after {
  background: #ff6b6b;
}

.balloonb {
  background-color: #f3a3a3;
}

.balloonb::before {
  background-color: #f3a3a3;
}

.balloonb::after {
  background-color: #f3a3a3;
}

#sign-rec section:nth-child(even) .balloonb::before {
  background-color: #f3a3a3;
}

#sign-rec section:nth-child(even) .balloonb::after {
  background-color: #f3a3a3;
}

.toiawase-btn {
  background: linear-gradient(to right, #f09b9b, #ec5252);
}

.toiawase-btn-text {
  color: #4a1f1f;
}

.toiawase-btn-icon {
  color: #4a1f1f;
}

.step-card {
  border: 2px solid #e15353;
}

.step-num {
  color: #e15353;
}

.step-label {
  color: #e15353;
}

.arrow {
  border-left: 20px solid #e15353;
  
}

@media (max-width: 780px) {
  .arrow {
border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-top: 20px solid #e15353;
        border-bottom: none;
  }
}

.card.featured {
  background: #fdeaea;
}

.badge {
  border: 1px solid rgba(225,83,83,0.4);
}

.btn {
  border: 2px solid rgba(225,83,83,0.35);
}

.btn:hover {
  background: rgba(225,83,83,0.08);
}

.feature-item {
  box-shadow: 0 4px 24px rgba(232,91,91,0.1), 0 1px 4px rgba(170,26,26,0.06);
  border: 1.5px solid rgba(243,163,163,0.5);
}

.feature-item:hover {
  box-shadow: 0 12px 40px rgba(232,91,91,0.22), 0 2px 8px rgba(170,26,26,0.1);
}

.cta-btn {
  box-shadow: 0 6px 24px rgba(170,26,26,0.3);
}

.cta-btn:hover {
  box-shadow: 0 10px 32px rgba(170,26,26,0.4);
}

:root {
  --gold: #e15353;
  --gold-light: #f38b8b;
  --border: rgba(225,83,83,0.2);

  --primary: #f3a3a3;
  --primary-dark: #e56b6b;
  --accent: #aa1a1a;
  --accent-deep: #821111;
  --light: #fbd0d0;
  --pale: #fdeeee;
  --text-dark: #3f0d0d;
  --text-mid: #803333;
  --text-light: #ce6a6a;
  --border: rgba(243,163,163,0.4);
}

.ryoukin-table-outer {
  box-shadow: 0 8px 40px rgba(232,91,91,0.15);
}

.ryoukin-cell.ryoukin-cell-accent {
  background: rgba(243,163,163,0.08);
}

.ryoukin-btn-outline:hover {
  box-shadow: 0 4px 16px rgba(232,91,91,0.25);
}

@media screen and (max-width: 768px) {
  .ryoukin-table-outer {
    box-shadow: 0 4px 20px rgba(232,91,91,0.12);
  }
}

/* Youtubeリンク */
.ev21vrbu-ticker-section {
  width: 100%;
  background: var(--ev21vrbu-red);
  padding: 48px 0;
  overflow: hidden;
}

.ev21vrbu-ticker-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.ev21vrbu-ticker-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ev21vrbu-ticker 58s linear infinite;
}

.ev21vrbu-ticker-track span {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  opacity: .95;
}

.ev21vrbu-ticker-track span::after {
  content: ' ✦';
  opacity: .4;
}

@keyframes ev21vrbu-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ev21vrbu-yt-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  aspect-ratio: 21/9;
}

.ev21vrbu-yt-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}



/* ===================== RESPONSIVE ===================== */

/* タブレット（～960px） */
@media screen and (max-width: 960px) {

  .ev21vrbu-section {
    padding: 24px 16px 40px;
  }

  .ev21vrbu-product-title {
    font-size: 26px;
  }

  .ev21vrbu-price-tax-in .ev21vrbu-price-num {
    font-size: 38px;
  }

  .ev21vrbu-yt-wrap {
    aspect-ratio: 16/9;
  }

  .ev21vrbu-ticker-track span {
    font-size: clamp(32px, 5vw, 60px);
  }
}

/* スマホ（～768px） */
@media screen and (max-width: 768px) {

  /* 上段2カラム → 縦1列 */
  .ev21vrbu-top-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* TikTok＋メディア2カラム → 縦1列 */
  .ev21vrbu-mid-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 搬入セクション → 縦1列 */
  .ev21vrbu-carry-body {
    grid-template-columns: 1fr;
  }

  .ev21vrbu-carry-img {
    aspect-ratio: 16/9;
    border-right: none;
    border-bottom: 1.5px solid var(--ev21vrbu-red-border);
  }

  /* チェックリスト → 1列 */
  .ev21vrbu-carry-checklist {
    grid-template-columns: 1fr;
  }

  /* 商品タイトル */
  .ev21vrbu-product-title {
    font-size: 22px;
  }

  /* 税込金額 */
  .ev21vrbu-price-tax-in .ev21vrbu-price-num {
    font-size: 32px;
  }

  /* メイン画像比率 */
  .ev21vrbu-main-img {
    aspect-ratio: 3/2;
  }

  /* サムネイル文字 */
  .ev21vrbu-thumb {
    font-size: 11px;
  }

  /* スペックテーブル */
  .ev21vrbu-spec-table th {
    width: 80px;
    font-size: 12px;
    padding: 10px 8px;
  }

  .ev21vrbu-spec-table td {
    font-size: 12px;
    padding: 10px 10px;
  }

  .ev21vrbu-spec-note,
  .ev21vrbu-spec-sub {
    font-size: 11px;
  }

  /* 搬入テキスト */
  .ev21vrbu-carry-lead {
    font-size: 13px;
  }

  .ev21vrbu-carry-checklist li {
    font-size: 13px;
  }

  /* ティッカー */
  .ev21vrbu-ticker-section {
    padding: 32px 0;
  }

  .ev21vrbu-ticker-track span {
    font-size: clamp(28px, 8vw, 48px);
  }

  .ev21vrbu-ticker-wrap {
    margin-bottom: 28px;
  }

  /* YouTube */
  .ev21vrbu-yt-wrap {
    aspect-ratio: 16/9;
    padding: 0 12px;
  }

  /* メディア実績 */
  .ev21vrbu-media-section {
    padding: 16px 8px;
  }

  .ev21vrbu-media-label {
    font-size: 16px;
  }

  .ev21vrbu-media-list li {
    font-size: 13px;
  }

  /* 料金注記 */
  .ev21vrbu-price-notes p {
    font-size: 11px;
  }

  /* 詳細見出し */
  .ev21vrbu-detail-heading {
    font-size: 14px;
  }

  .ev21vrbu-carry-heading {
    font-size: 14px;
  }
}

/* 小型スマホ（～480px） */
@media screen and (max-width: 480px) {

  .ev21vrbu-section {
    padding: 16px 12px 32px;
  }

  .ev21vrbu-product-title {
    font-size: 20px;
  }

  .ev21vrbu-price-tax-in .ev21vrbu-price-num {
    font-size: 28px;
  }

  .ev21vrbu-price-tax-ex .ev21vrbu-price-num {
    font-size: 14px;
  }

  .ev21vrbu-price-unit {
    font-size: 12px;
  }

  .ev21vrbu-spec-table th {
    width: 70px;
    font-size: 11px;
    padding: 8px 6px;
    white-space: normal;
  }

  .ev21vrbu-thumbs-row {
    gap: 4px;
  }

  .ev21vrbu-ticker-track {
    gap: 40px;
  }

  .ev21vrbu-ticker-track span {
    font-size: clamp(22px, 7vw, 36px);
  }
}


@media screen and (max-width: 768px) {
  .ev21vrbu-top-grid {
    display: flex;
    flex-direction: column;
  }
  .ev21vrbu-left-col { order: 2; }
  .ev21vrbu-right-col { order: 1; }
  .ev21vrbu-product-title { order: -1; }
  .ev21vrbu-right-col {
    display: flex;
    flex-direction: column;
  }
}