/* Samma bakgrund som pricing & intro */
.shop-header {
  height: 400px;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header-text */
.shop-header-text {
    
  text-align: center;
  position: relative;
}


/* SHOP – snett ovanför */
.shop-tag {
  position: absolute;
  top: -30px;
  left: 15%;
  transform: translateX(-50%) rotate(-8deg);
  font-family:'Rockwell Nova Extra Bold', sans-serif;
  font-size: 40px;
  letter-spacing: 6px;
  color: #db0202;
  font-weight: 600;
}

/* A Mi Talla */
.shop-header-text h1 {
  font-family: 'Broadway', serif;
  font-size: 72px;
  color: white;
  margin: 0;
}


/* Subtext */
.shop-header-text p {
  font-family: 'Candara', sans-serif;
  font-size: 30px;
  color: #b7b7b7;
  margin-top: -30px;
}


/* Intro section */
.shop-intro {
  background-color: #545051; /* samma som pricing */
  padding: 120px 20px;
  text-align: center;
  color: white;
}

.shop-intro h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.shop-intro p {
  font-size: 18px;
  opacity: 0.85;
}

/* T-SHIRT SECTION */
.tshirt-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

/* CARD */
.tshirt-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  max-width: 380px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.tshirt-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.tshirt-image {
  position: relative;
  background: #111;
  padding: 40px;
  text-align: center;
}

.tshirt-image img {
  width: 100%;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

.tshirt-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: white;
  opacity: 0.9;
  z-index: 2;              /* 🔥 VIKTIG */
  pointer-events: none;
}

/* INFO */
.tshirt-info {
  padding: 30px;
  text-align: center;
}

.tshirt-info h3 {
  margin-bottom: 10px;
}

.tshirt-info p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* BUTTON */
.tshirt-btn {
  background: black;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tshirt-btn:hover {
  background: #222;
}

/* INPUT FIELD */
#nameInput {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 30px;
  border: none;
  text-align: center;
  font-size: 14px;
  outline: none;
}