/** Shopify CDN: Minification failed

Line 258:10 Unexpected "{"
Line 258:19 Expected ":"
Line 259:14 Expected identifier but found whitespace
Line 259:16 Unexpected "{"
Line 259:25 Expected ":"
Line 259:65 Expected ":"
Line 260:17 Expected identifier but found whitespace
Line 260:19 Unexpected "{"
Line 260:28 Expected ":"
Line 260:71 Expected ":"

**/
/* ============================================================
   Gift Football Jersey Section — Dawn Theme 2.0
   File: assets/gift-jersey-section.css
   ============================================================ */

.gift-jersey-section {
  font-family: var(--font-body-family);
  color: var(--color-foreground);
}

/* ─── Locked ─── */
.gift-jersey__locked {
  border: 2px dashed rgba(var(--color-foreground-rgb, 26 26 26) / 0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  background: rgba(var(--color-foreground-rgb, 26 26 26) / 0.02);
}
.gift-jersey__locked-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gift-jersey__lock-icon { font-size: 2.5rem; flex-shrink: 0; }
.gift-jersey__locked-text { flex: 1; min-width: 220px; }
.gift-jersey__locked-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 .25rem; }
.gift-jersey__locked-sub   { font-size: .88rem; opacity: .7; margin: 0 0 .75rem; }
.gift-jersey__progress-bar {
  height: 8px;
  background: rgba(var(--color-foreground-rgb, 26 26 26) / 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: .5rem;
}
.gift-jersey__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f5a623, #e53e3e);
  border-radius: 99px;
  transition: width .6s ease;
}
.gift-jersey__progress-label { font-size: .78rem; opacity: .6; margin: 0; }

/* ─── Header ─── */
.gift-jersey__header { text-align: center; margin-bottom: 1.75rem; }
.gift-jersey__header-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5a623, #e53e3e);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: .28rem 1rem;
  border-radius: 99px;
  margin-bottom: .6rem;
}
.gift-jersey__title    { font-size: clamp(1.3rem, 4vw, 1.9rem); font-weight: 700; margin: 0 0 .4rem; }
.gift-jersey__subtitle { font-size: .9rem; opacity: .7; margin: 0; }

/* ─── Cards grid ─── */
.gift-jersey__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .gift-jersey__cards { grid-template-columns: repeat(3, 1fr); }
}

.gift-jersey__card { cursor: pointer; }
.gift-jersey__radio { position: absolute; opacity: 0; pointer-events: none; }

.gift-jersey__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 1rem .6rem .8rem;
  border: 2px solid rgba(var(--color-foreground-rgb, 26 26 26) / 0.13);
  border-radius: 14px;
  background: var(--color-background);
  position: relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.gift-jersey__card:hover .gift-jersey__card-inner {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
}
.gift-jersey__card--selected .gift-jersey__card-inner {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.18);
  transform: translateY(-4px);
}

/* ─── Image inside card ─── */
.gift-jersey__card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(var(--color-foreground-rgb, 26 26 26) / 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-jersey__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .22s ease;
}
.gift-jersey__card:hover .gift-jersey__card-img { transform: scale(1.05); }

/* Placeholder when no image set */
.gift-jersey__card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  width: 100%;
  height: 100%;
  padding: .5rem;
}
.gift-jersey__card-placeholder--other { background: rgba(var(--color-foreground-rgb, 26 26 26) / 0.03); }
.gift-jersey__flag-big { font-size: 2.2rem; line-height: 1; }
.gift-jersey__placeholder-label {
  font-size: .62rem;
  text-align: center;
  opacity: .5;
  line-height: 1.3;
}

.gift-jersey__flag-small   { font-size: 1rem; line-height: 1; }
.gift-jersey__country-name { font-size: .78rem; font-weight: 600; text-align: center; }

/* Check badge */
.gift-jersey__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: #e53e3e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity .18s;
}
.gift-jersey__card--selected .gift-jersey__check { opacity: 1; }

/* ─── Custom input ─── */
.gift-jersey__custom-field  { margin-bottom: 1.5rem; }
.gift-jersey__custom-label  { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .45rem; }
.gift-jersey__custom-input  {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid rgba(var(--color-foreground-rgb, 26 26 26) / 0.22);
  border-radius: 8px;
  font-size: .92rem;
  background: var(--color-background);
  color: var(--color-foreground);
  box-sizing: border-box;
  transition: border-color .18s;
}
.gift-jersey__custom-input:focus {
  outline: none;
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}

/* ─── Size ─── */
.gift-jersey__size-wrap  { margin-bottom: 1.5rem; }
.gift-jersey__size-label { font-size: .92rem; font-weight: 700; margin: 0 0 .65rem; }
.gift-jersey__sizes { display: flex; gap: .5rem; flex-wrap: wrap; }
.gift-jersey__size-btn { cursor: pointer; }
.gift-jersey__size-radio { position: absolute; opacity: 0; pointer-events: none; }
.gift-jersey__size-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 42px;
  padding: 0 .75rem;
  border: 2px solid rgba(var(--color-foreground-rgb, 26 26 26) / 0.18);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  background: var(--color-background);
  transition: all .18s;
}
.gift-jersey__size-btn:hover span { border-color: #e53e3e; color: #e53e3e; }
.gift-jersey__size-btn--selected span { background: #e53e3e; border-color: #e53e3e; color: #fff; }

/* ─── Confirm ─── */
.gift-jersey__confirm-wrap { text-align: center; }
.gift-jersey__confirm-btn {
  max-width: 360px;
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
}
.gift-jersey__confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229,62,62,.35);
}
.gift-jersey__note { font-size: .76rem; opacity: .5; margin: .7rem 0 0; }

/* ─── Success ─── */
.gift-jersey__success {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 2px solid #48bb78;
  border-radius: 14px;
  background: rgba(72,187,120,.06);
}
.gift-jersey__success-icon { display: block; font-size: 3rem; margin-bottom: 1rem; }
.gift-jersey__success-msg  { font-size: 1.05rem; font-weight: 600; margin: 0 0 1rem; }
.gift-jersey__change-btn {
  background: none;
  border: 1.5px solid currentColor;
  border-radius: 6px;
  padding: .4rem .9rem;
  font-size: .82rem;
  cursor: pointer;
  opacity: .65;
  transition: opacity .18s;
}
.gift-jersey__change-btn:hover { opacity: 1; }

/* ─── Padding utility ─── */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | default: 36 }}px;
  padding-bottom: {{ section.settings.padding_bottom | default: 36 }}px;
}
