/* ==========================================================================
   Swift Traders INC — "What We Sell" Page
   Brand showcase cards, storefront cards, DLNYC spotlight, legal notice.
   ========================================================================== */

/* ---------- Brand cards ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.brand-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-400); }

.brand-mark {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 10px;
  overflow: hidden;
}
.brand-mark img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1;
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}
.wordmark .wm-main { display: block; font-size: 1.7rem; }
.wordmark .wm-sub { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; color: var(--text-secondary); margin-top: 4px; text-transform: uppercase; }

.brand-card h3 { margin-bottom: 8px; }
.brand-card p { font-size: 0.95rem; margin-bottom: 18px; }

.authenticity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}
.authenticity-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- DLNYC spotlight ---------- */
.dlnyc-spotlight {
  background: linear-gradient(135deg, var(--navy-950), var(--blue-800));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.dlnyc-spotlight .dlnyc-logo-wrap {
  background: #000;
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dlnyc-spotlight .dlnyc-logo-wrap img { width: 220px; height: auto; display: block; }
.dlnyc-spotlight .dlnyc-copy .eyebrow { color: var(--gold-400); }
.dlnyc-spotlight .dlnyc-copy h2 { color: var(--white); margin: 10px 0 14px; }
.dlnyc-spotlight .dlnyc-copy p { color: rgba(255,255,255,0.78); font-size: 1.02rem; max-width: 560px; }
.dlnyc-spotlight .dlnyc-copy .authenticity-badge { background: rgba(201,161,90,0.16); color: var(--gold-400); margin-top: 20px; }

/* ---------- Storefront cards ---------- */
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.store-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.store-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-400); }

.store-card .store-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-strong);
  flex-shrink: 0;
}
.store-card .store-icon svg { width: 28px; height: 28px; }
.store-card .store-icon.generated-art { width:76px; height:76px; border-radius:18px; }
.store-card .store-copy h3 { margin-bottom: 4px; }
.store-card .store-copy p { font-size: 0.88rem; margin-bottom: 0; }
.store-card .store-cta {
  margin-left: auto;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-strong);
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.store-card .store-cta svg { width: 18px; height: 18px; }
.store-card:hover .store-cta { background: var(--accent); color: var(--white); transform: translate(2px,-2px); }

/* ---------- Legal / rights notice ---------- */
.rights-notice {
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.rights-notice h3 { margin-bottom: 12px; font-size: 1.1rem; }
.rights-notice p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 12px; }
.rights-notice p:last-child { margin-bottom: 0; }
.rights-notice strong { color: var(--text-primary); }

@media (max-width: 900px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .store-grid { grid-template-columns: 1fr; }
  .dlnyc-spotlight { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .dlnyc-spotlight .dlnyc-copy p { margin-inline: auto; }
}
@media (max-width: 600px) {
  .brand-grid { grid-template-columns: 1fr; }
  .dlnyc-spotlight { padding: 36px 24px; }
}

/* Supplied DLNYC certificate; preview links to the original PDF. */
.certificate-panel { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 32px; margin-top: 32px; padding: 32px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); scroll-margin-top: 110px; }
.certificate-preview { display: block; border: 1px solid var(--border-color); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.certificate-preview img { display: block; width: 100%; height: auto; }
.certificate-copy h2 { margin: 10px 0 16px; }
.certificate-copy p { color: var(--text-secondary); margin-bottom: 16px; font-size: 1rem; }
.certificate-copy { min-width: 0; }
.brand-grid > *, .store-grid > *, .dlnyc-spotlight > *, .store-copy { min-width: 0; }
.store-copy { overflow-wrap: anywhere; }
.dlnyc-spotlight .dlnyc-logo-wrap { max-width: 100%; }
.dlnyc-spotlight .dlnyc-logo-wrap img { max-width: 100%; }
@media (max-width: 400px) { .store-card { padding: 22px 18px; gap: 12px; } }
.certificate-copy .btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.certificate-copy .btn { white-space: normal; text-align: center; }
@media (max-width: 900px) { .certificate-panel { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .certificate-panel { padding: 20px; gap: 24px; } }
