/* ═══════════════════════════════════════════
   Design System — Shopee Voucher Tool
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700;800&display=swap');

:root {
  --orange:       #FF8C22;
  --orange-dark:  #FF7A00;
  --orange-pale:  #FFE9C8;
  --orange-hover: #ffd49e;
  --orange-light: #FFF4E6;
  --blue:         #002890;
  --green:        #16a34a;
  --green-bg:     #dcfce7;
  --green-dark:   #15803d;
  --red:          #F85C5C;
  --red-pale:     rgba(248, 92, 92, 0.15);
  --gray:         #848484;
  --gray-light:   #f0f0f0;
  --text:         #1a1a1a;
  --text-muted:   #666;
  --bg:           #eef0f3;
  --card-bg:      #F8F8F8;
  --card-border:  rgba(248, 92, 92, 0.18);
  --white:        #fff;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow-md:    0 2px 14px rgba(0,0,0,.07);
  --shadow-lg:    0 8px 30px rgba(0,0,0,.1);
  --shadow-orange:0 4px 20px rgba(255,140,34,.25);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    16px;
  --radius-xl:    20px;
  --radius-pill:  50px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --font:         'Quicksand', sans-serif;
  --transition:   all .25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
figure { margin: 0; }
ul, ol { list-style: none; }

/* ── Wrapper (mobile max-width) ── */
.wrapper {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0,0,0,.06);
}

/* ── Page container (desktop) ── */
.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ═══════════ HEADER ═══════════ */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #FF8C22, #FF5722);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(255,87,34,.3);
}

.header__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--orange);
  background: var(--orange-light);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--text);
}

.header__icon-btn:hover {
  background: var(--gray-light);
}

/* Mobile nav toggle */
.header__mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__mobile-toggle { display: flex; }
}

/* ═══════════ HERO / SEARCH ═══════════ */
.hero-search {
  padding: 20px 14px;
}

.hero-search__card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-md);
}

.hero-search__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 16px;
  transition: var(--transition);
}

.search-input-row:focus-within {
  box-shadow: 0 0 0 4px rgba(255,140,34,.15);
  border-color: var(--orange-dark);
}

.search-input-row__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 14px;
}

.search-input-row__field {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  outline: none;
}

.search-input-row__field::placeholder {
  color: #b0a090;
  font-weight: 500;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  justify-content: center;
}

.search-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
}

.search-tag:hover {
  background: var(--orange);
  color: white;
}

/* ═══════════ SHOPEE VOUCHER SECTION ═══════════ */
.voucher-section {
  padding: 0 14px 20px;
}

.voucher-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-md);
}

.voucher-card__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.voucher-card__subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ── Link input row ── */
.link-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-dark);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 14px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.link-input-row:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,140,34,.18);
}

.link-input-row__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
}

.link-input-row__field {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  outline: none;
}

.link-input-row__field::placeholder {
  color: #b0a090;
  font-weight: 500;
}

.link-input-row__field--shake {
  animation: shake .4s var(--ease);
}

/* ── Paste button ── */
.btn-paste {
  flex-shrink: 0;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--orange-dark);
  color: var(--orange-dark);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-paste:hover {
  background: var(--orange-pale);
}

.btn-paste:active {
  transform: scale(.93);
}

/* ── Rút Link button ── */
.btn-rut {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 76px;
  padding: 6px 0;
  background: var(--orange);
  color: white;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(255,140,34,.4);
  transition: var(--transition);
}

.btn-rut:hover:not(:disabled) {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
}

.btn-rut:active:not(:disabled) {
  transform: scale(.94);
  box-shadow: none;
}

.btn-rut:disabled {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-rut--clear {
  background: #64748b;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.btn-rut--clear:hover:not(:disabled) {
  background: #475569;
}

/* ═══════════ VOUCHER PREVIEW ═══════════ */
.voucher-preview {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.voucher-preview__img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* ═══════════ STEP CARDS ═══════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px 24px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
}

.step-card--hidden { display: none; }

.step-card--reveal {
  display: block;
  animation: slideUp .35s var(--ease) both;
}

.step-card--hiding {
  animation: slideDown .22s var(--ease) both;
  pointer-events: none;
}

.step-card__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 5px;
}

.step-card__desc {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
}

.step-card__note {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  padding: 12px 10px;
  background: var(--white);
  border-radius: 10px;
  border: 1px dashed #f0a060;
}

.step-card__note strong {
  color: var(--orange-dark);
}

/* ═══════════ PRODUCT CARD (result) ═══════════ */
.product-card {
  background: var(--white);
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-md);
  margin-top: 10px;
}

.product-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card__img-wrap {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-light);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.btn-buy {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  padding: 10px 12px;
  width: 62px;
  height: 62px;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: var(--transition);
}

.btn-buy:hover {
  background: var(--orange-dark);
}

.btn-buy:active {
  transform: scale(.93);
}

/* ═══════════ ACTION BUTTONS ═══════════ */
.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  transition: var(--transition);
}

.btn-action:hover:not(:disabled) {
  background: var(--orange-hover);
}

.btn-action:active:not(:disabled) {
  transform: scale(.97);
}

.btn-action--done {
  background: var(--green-bg) !important;
  border-color: var(--green) !important;
  color: var(--green-dark) !important;
}

.btn-action--pop {
  animation: btnPop .3s cubic-bezier(.4,0,.2,1) both;
}

.btn-action--comment {
  background: #e8f0fe;
  border-color: #1877f2;
  color: #1877f2;
}

.btn-action--comment:hover {
  background: #d0e2ff !important;
}

/* ═══════════ VOUCHER COPY BUTTON ═══════════ */
.voucher-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  max-width: 100%;
  height: 43px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-dark);
  border-radius: 17px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  margin: 8px auto 0;
}

.voucher-copy-btn:hover:not(:disabled) {
  background: #ffd49a;
}

.voucher-copy-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.voucher-copy-btn--done {
  background: var(--green-bg) !important;
  border-color: var(--green) !important;
  color: var(--green-dark) !important;
}

/* ═══════════ COPY LINK BUTTON ═══════════ */
.btn-copy-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 300px;
  margin: 12px auto 0;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
  border: 1.5px solid #5b8def;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  cursor: pointer;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-copy-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(59,130,246,.12));
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.btn-copy-link:hover::before {
  opacity: 1;
}

.btn-copy-link:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 12px rgba(37,99,235,.2);
  transform: translateY(-1px);
}

.btn-copy-link:active {
  transform: scale(.96) translateY(0);
  box-shadow: none;
}

.btn-copy-link--copied {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5) !important;
  border-color: var(--green) !important;
  color: var(--green-dark) !important;
  animation: btnPop .3s cubic-bezier(.4,0,.2,1) both;
}

.btn-copy-link svg {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-copy-link span {
  position: relative;
  z-index: 1;
}

/* ═══════════ LINK PREVIEW BOX ═══════════ */
.link-preview-box {
  margin-top: 14px;
  padding: 10px;
  background: var(--gray-light);
  border: 1px dashed var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.link-preview-box__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.link-preview-box__input {
  width: 100%;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 11px;
  color: var(--text-muted);
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
}

.link-preview-box__input:focus {
  border-color: var(--orange);
  color: var(--text);
}

/* ═══════════ SECTION TITLES ═══════════ */
.sec-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  padding: 24px 0 14px;
}

.sec-title::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ═══════════ VIDEO SLIDER ═══════════ */
.video-section {
  padding: 0 14px 20px;
}

.video-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.video-slider::-webkit-scrollbar {
  display: none;
}

.video-card {
  width: calc((100vw - 48px) / 2.4);
  min-width: 140px;
  max-width: 180px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease);
}

.video-card:hover {
  transform: translateY(-2px);
}

.video-card__thumb {
  width: 100%;
  padding-top: 177.78%; /* 9:16 aspect ratio */
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
}

.video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__info {
  padding: 8px 8px 6px;
}

.video-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.video-card__time {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 4px;
}

/* ═══════════ PRODUCT GRID ═══════════ */
.product-section {
  padding: 0 14px 20px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  padding: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.prod-card__thumb {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.prod-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  line-height: 1.4;
}

.prod-card__prices {
  margin-top: auto;
  text-align: center;
}

.prod-card__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  display: block;
}

.prod-card__oldprice {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  text-decoration: line-through;
  display: block;
}

/* ═══════════ VIEW MORE ═══════════ */
.btn-more {
  display: block;
  margin: 12px auto 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--orange);
  background: transparent;
  transition: var(--transition);
  max-width: 200px;
}

.btn-more:hover {
  background: var(--orange);
  color: white;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--white);
  border-top: 1px solid #e3e3e0;
  padding: 24px 16px;
  text-align: center;
  margin-top: auto;
}

.footer__text {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.footer__link {
  color: var(--orange);
  font-weight: 600;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--orange-dark);
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(10px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: scale(.96); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-7px); }
  75%      { transform: translateX(7px); }
}

@keyframes btnPop {
  0%   { transform: scale(1); }
  30%  { transform: scale(.88); }
  65%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .5; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in  { animation: fadeIn .38s var(--ease) .05s both; }
.fade-out { animation: fadeOut .28s var(--ease) both; }
.hidden   { display: none !important; }
.spin     { animation: spin .7s linear infinite; }

/* ═══════════ SKELETON LOADING ═══════════ */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ═══════════ ERROR MESSAGE ═══════════ */
.error-msg {
  display: none;
  text-align: center;
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
  padding: 8px;
  background: #fef2f2;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  border: 1px solid #fecaca;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (min-width: 768px) {
  .page-container {
    max-width: 1080px;
    padding: 0 24px;
  }

  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .video-card {
    width: calc((100% - 30px) / 4);
    max-width: 240px;
  }
}

@media (min-width: 1024px) {
  .prod-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════ SALE PAGE SPECIFIC ═══════════ */
.sale-page {
  background: var(--bg);
}

.sale-page .wrapper {
  padding-top: 0;
}

.page-title {
  padding: 20px 16px 0;
  text-align: center;
}

.page-title__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.2px;
}

/* ═══════════ YouTube Button ═══════════ */
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 16px auto;
  transition: var(--transition);
}

.btn-youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
}

.btn-youtube__icon {
  width: 20px;
  height: 20px;
}
