.bag-graphic-wrap { margin: 24px 0 40px; display: flex; flex-direction: column; align-items: center; }
.bag-graphic-caption { color: var(--muted); font-size: 13px; margin: 14px 0 0; }

.bag-body {
  position: relative;
  width: 380px;
  max-width: 100%;
  background: #e4e8e1;
  border: 5px solid var(--ink);
  border-radius: 160px 160px 60px 60px / 170px 170px 40px 40px;
  padding: 26px;
}
.bag-body::before {
  content: "";
  position: absolute;
  top: -26px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 44px; background: var(--ink); border-radius: 5px;
}
.tray {
  background: #2a332c;
  border: 4px solid #10160f;
  border-radius: 120px 120px 30px 30px / 130px 130px 20px 20px;
  padding: 16px 12px;
  min-height: 90px;
}
.tray-row { display: flex; }
.tray-row:not(:last-child) { border-bottom: 3px solid #10160f; }
.tray-slot {
  color: #fff;
  padding: 12px 8px;
  text-align: center;
  flex: 1;
  min-width: 0;
}
.tray-slot:not(:last-child) { border-right: 3px solid #10160f; }
.tray-slot .name { font-size: 11px; font-weight: 600; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tray-slot .price { font-size: 12px; color: #a6e08f; margin-top: 2px; }
.tray-slot.empty .name { color: #6b7a6e; font-weight: 400; }
.tray-empty-msg { color: #a6b0a3; font-size: 13px; text-align: center; padding: 10px; }

.bag-picker-section, .club-picker-section, .accessory-picker-section, .shopping-list-section {
  margin: 0 0 48px;
}
.bag-picker-section h2, .club-picker-section h2, .accessory-picker-section h2, .shopping-list-section h2 {
  font-size: 22px;
  margin: 0 0 6px;
}
.section-sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.bag-picker-grid, .accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .bag-picker-grid, .accessory-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .bag-picker-grid, .accessory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bag-picker-grid, .accessory-grid { grid-template-columns: 1fr; }
}

.pick-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pick-card:hover { transform: translateY(-2px); }
.pick-card.selected { border-color: var(--green); }
.pick-card .thumb { aspect-ratio: 4/3; background: #f1f2ef; overflow: hidden; }
.pick-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pick-card .thumb.icon-thumb { display: flex; align-items: center; justify-content: center; }
.pick-card .thumb.icon-thumb img { width: 56px; height: 56px; object-fit: contain; }
.pick-card .pick-body { padding: 14px; }
.pick-card h4 { font-size: 14px; margin: 0 0 6px; line-height: 1.35; min-height: 38px; }
.pick-card .pick-price { font-weight: 700; color: var(--ink); font-size: 15px; margin: 0 0 10px; }
.pick-card button {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  background: var(--green-pale);
  color: var(--green-dark);
}
.pick-card.selected button { background: var(--green); color: #fff; }

.accessory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.accessory-tab {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.accessory-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.shopping-list-empty {
  background: #f7f8f6;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.shopping-list { display: flex; flex-direction: column; gap: 12px; }
.shopping-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}
.shopping-list-item .sl-thumb {
  width: 56px; height: 56px; border-radius: 8px; background: #f1f2ef;
  overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.shopping-list-item .sl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shopping-list-item .sl-thumb.icon-thumb img { width: 32px; height: 32px; object-fit: contain; }
.shopping-list-item .sl-info { flex: 1 1 auto; min-width: 0; }
.shopping-list-item .sl-info h4 { font-size: 14px; margin: 0 0 4px; }
.shopping-list-item .sl-info .sl-tag { font-size: 11px; color: var(--muted); }
.shopping-list-item .sl-price { font-weight: 700; font-size: 15px; white-space: nowrap; }
.shopping-list-item .sl-buy {
  background: var(--green); color: #fff; border-radius: 999px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.shopping-list-item .sl-remove {
  background: none; border: none; color: var(--muted); cursor: pointer; font-size: 18px; padding: 4px 8px;
}
.shopping-list-item .sl-remove:hover { color: #d9432e; }

.shopping-list-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--ink);
  margin-top: 16px;
  padding-top: 16px;
  font-size: 18px;
}
.shopping-list-total strong { font-size: 22px; }

.shopping-list-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.btn-clear-list {
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.btn-clear-list:hover { color: #d9432e; border-color: #d9432e; }

@media (max-width: 600px) {
  .shopping-list-item { flex-wrap: wrap; }
  .shopping-list-item .sl-info { flex-basis: 100%; order: 3; }
}

.picker-search { margin: 14px 0; }
.picker-search input {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow);
}
.picker-search input:focus { outline: 2px solid var(--green); border-color: var(--green); }

.quick-picks-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 18px 0 12px;
}
.quick-picks-label .quip {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--muted);
}
