/* Technique chooser on the product page.
   Deliberately reuses the look of .pgr-tshirt-wrap in the theme's
   product-redesign.css (yellow card + big accent CTA), so the block reads as
   the same primary action it replaces — only with a choice in it. */

.eg-teknikval {
  background: linear-gradient(135deg, #fff9ec 0%, #fff3d0 100%);
  border: 2px solid #f0c848;
  border-radius: 12px;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eg-teknikval__label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-dk, #8c4e08);
  margin-bottom: 2px;
}

.eg-teknikval__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 24px;
  border-radius: var(--r, 8px);
  font-family: var(--ff-head, 'Inter', sans-serif);
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  transition: background .15s, box-shadow .15s, transform .1s;
}

.eg-teknikval__btn:hover,
.eg-teknikval__btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.eg-teknikval__btn-main {
  font-size: 19px;
  font-weight: 800;
}

.eg-teknikval__btn-sub {
  font-size: 13px;
  font-weight: 500;
  opacity: .75;
}

/* Print = the familiar accent button (this is the common case). */
.eg-teknikval__btn--tryck {
  background: var(--accent, #ffbc38);
  color: var(--ink, #1a1a1a);
  box-shadow: 0 4px 20px rgba(255, 188, 56, .55);
}

.eg-teknikval__btn--tryck:hover,
.eg-teknikval__btn--tryck:focus {
  background: var(--accent-dk, #8c4e08);
  color: #fff;
  box-shadow: 0 6px 26px rgba(140, 78, 8, .4);
}

/* Embroidery = outlined, so the two never compete for attention. */
.eg-teknikval__btn--brodyr {
  background: #fff;
  color: var(--ink, #1a1a1a);
  border: 2px solid var(--ink, #1a1a1a);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.eg-teknikval__btn--brodyr:hover,
.eg-teknikval__btn--brodyr:focus {
  background: var(--ink, #1a1a1a);
  color: #fff;
}

/* Alone on the card, embroidery is the primary action and gets the accent look. */
.eg-teknikval:not(.eg-teknikval--both) .eg-teknikval__btn--brodyr {
  background: var(--accent, #ffbc38);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 188, 56, .55);
}

.eg-teknikval:not(.eg-teknikval--both) .eg-teknikval__btn--brodyr:hover {
  background: var(--accent-dk, #8c4e08);
  color: #fff;
}

.eg-teknikval__hint {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #5a5a5a;
}

@media (max-width: 480px) {
  .eg-teknikval { padding: 14px 14px 16px; }
  .eg-teknikval__btn { padding: 14px 16px; }
  .eg-teknikval__btn-main { font-size: 17px; }
}
