
:root {
  --black: #050606;
  --panel: #0b0f0c;
  --panel-2: #101612;
  --gold: #d9a928;
  --gold-light: #f3d06a;
  --green: #0f6d37;
  --green-bright: #57cf66;
  --text: #f5f5f0;
  --muted: #b7b9b4;
  --border: rgba(217, 169, 40, 0.38);
  --shadow: 0 18px 55px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  padding-top:90px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(16,88,42,.34), transparent 42rem),
    linear-gradient(180deg, #020303, #071009 48%, #020303);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 30px;

    background: rgba(12,12,12,.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(212,175,55,.35);

    transition: background .3s ease;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-light);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand { font-size: clamp(1.2rem, 2vw, 1.9rem); }
.brand img, .footer-brand img {
  width: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(217,169,40,.22);
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}
.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #eee;
  font-size: .93rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform .22s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-shop {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 1.4rem;
}

.hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 28px);
}
.hero img {
  width: 100%;
  border: 1px solid rgba(217,169,40,.65);
  border-radius: clamp(12px, 2vw, 26px);
  box-shadow: var(--shadow), 0 0 45px rgba(217,169,40,.14);
}

.action-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 24px 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 34px);
}
.action-card {
  text-align: center;
  border-radius: 24px;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(16,76,35,.18), rgba(4,7,5,.92));
  border: 1px solid rgba(217,169,40,.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.action-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,169,40,.62);
  box-shadow: 0 18px 42px rgba(0,0,0,.44);
}
.action-card img {
  width: min(100%, 280px);
  margin: 0 auto 14px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}
.action-card span {
  display: inline-block;
  min-width: 190px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
}

.section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 38px clamp(18px, 3vw, 42px);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}
.section-heading a {
  color: var(--green-bright);
  border: 1px solid rgba(87,207,102,.5);
  border-radius: 999px;
  padding: 8px 14px;
}

.filters {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(8,13,9,.88);
}
.filters label span {
  display: block;
  margin: 0 0 7px 3px;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
input, select {
  width: 100%;
  border: 1px solid rgba(217,169,40,.32);
  border-radius: 10px;
  padding: 12px 13px;
  color: #fff;
  background: #070a08;
  outline: none;
}
input:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,169,40,.12);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.card-item {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(217,169,40,.24);
  border-radius: 16px;
  background: linear-gradient(180deg, #111511, #070907);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.card-item:hover {
  transform: translateY(-7px);
  border-color: rgba(217,169,40,.72);
  box-shadow: 0 18px 36px rgba(0,0,0,.48), 0 0 24px rgba(217,169,40,.10);
}
.card-item img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 10px;
  background: #111;
}
.card-item h3 {
  margin: 13px 0 6px;
  font-size: 1rem;
  line-height: 1.32;
}
.meta {
  color: var(--muted);
  font-size: .88rem;
  min-height: 42px;
}
.price {
  margin-top: 12px;
  color: var(--green-bright);
  font-size: 1.15rem;
  font-weight: 800;
}
.sold-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #8a1f1f;
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
}

.info-panel {
  margin-top: 26px;
  margin-bottom: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(9,14,10,.86);
}
.info-panel p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}
.info-panel a { color: var(--gold-light); }

footer {
  margin-top: 44px;
  padding: 28px clamp(18px,4vw,64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  border-top: 1px solid rgba(217,169,40,.22);
  background: #020303;
}
.footer-brand img { width: 58px; }
.footer-brand span { font-size: 1.25rem; }

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 42px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .filters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 6px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 2px; }
  .header-shop { display: none; }
  .action-grid { grid-template-columns: 1fr; max-width: 430px; }
}
@media (max-width: 660px) {
  .brand span { font-size: 1.05rem; }
  .brand img { width: 44px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .filters { grid-template-columns: 1fr; }
  .section { padding-inline: 14px; }
  .card-item { padding: 9px; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 430px) {
  .card-grid { grid-template-columns: 1fr; }
}


/* Top-left IrishCardGuy name banner */
.brand-banner {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 22vw, 330px);
}
.brand-banner img {
  width: 100%;
  height: auto;
  max-height: 62px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 660px) {
  .brand-banner {
    width: clamp(160px, 55vw, 240px);
  }
  .brand-banner img {
    max-height: 50px;
  }
}
@media (max-width: 768px) {
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 30px;

    background: rgba(12,12,12,.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom:1px solid rgba(212,175,55,.35);

    transition: all .30s ease;
}
.site-header.scrolled{
    padding: 8px 30px;
    background: rgba(8,8,8,.96);
}

.site-header.scrolled .brand-banner img{
    max-height:45px;
}

  .brand-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  .brand-banner img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 55px;
    margin: 0 auto;
  }

  .menu-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .header-shop {
    display: none;
  }
}.collectibles-hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 70px;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(15, 105, 65, 0.32),
      rgba(5, 12, 9, 0.96) 65%
    );
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.collectibles-hero > div {
  width: min(760px, 100%);
}

.collectibles-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
}

.collectibles-hero p {
  max-width: 680px;
  margin: 0 auto;
}

.eyebrow {
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.uploading-placeholder {
  grid-column: 1 / -1;
  width: min(720px, 100%);
  margin: 20px auto;
  padding: 48px 28px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(20, 45, 32, 0.96),
      rgba(7, 14, 10, 0.98)
    );
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 30px rgba(212, 175, 55, 0.04);
}

.uploading-placeholder-icon {
  width: 110px;
  height: 110px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.uploading-placeholder h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.uploading-placeholder p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 26px;
  line-height: 1.7;
}

.collectible-card {
  overflow: hidden;
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0f0c;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-details {
  padding: 20px;
}

.product-category {
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-details h3 {
  margin: 8px 0;
}

.product-details p {
  line-height: 1.55;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #08110c;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #e0c260, #b89122);
  border: 0;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.product-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

@media (max-width: 768px) {
  .collectibles-hero {
    min-height: 280px;
    padding: 110px 20px 50px;
  }

  .uploading-placeholder {
    padding: 38px 20px;
  }

  .product-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-button {
    width: 100%;
  }
}
.uploading-placeholder {
  grid-column: 1 / -1;
  width: min(720px, 100%);
  margin: 20px auto;
  padding: 48px 28px;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(20, 45, 32, 0.96),
    rgba(7, 14, 10, 0.98)
  );
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.uploading-placeholder-icon {
  width: 110px;
  height: 110px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.uploading-placeholder h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.uploading-placeholder p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.eyebrow {
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.shop-page-main {
  padding-top: 110px;
}

@media (max-width: 768px) {
  .shop-page-main {
    padding-top: 90px;
  }
}
/* SOCIALS */

.socials {
    text-align: center;
    padding: 60px 20px;
}

.socials h2 {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 2rem;
}

.social-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 60px;
}

.social-buttons a {
    display: block;
    width: 220px;
    margin: 0 25px;
    transition: transform 0.2s ease;
}

.social-buttons a:hover {
    transform: translateY(-4px);
}

.social-buttons img {
    display: block;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .social-buttons {
        flex-direction: column;
    }

    .social-buttons a {
        width: 220px;
        margin: 0 0 60px;
    }

    .social-buttons a:last-child {
        margin-bottom: 0;
    }

    .social-buttons img {
        width: 220px;
        height: 220px;
    }
}
