    :root {
      --card-bg: rgba(255,255,255,0.72);
      --card-border: rgba(0,0,0,0.12);
      --text-dark: #1d1d1d;
      --muted: rgba(0,0,0,0.72);
      --shadow: 0 8px 18px rgba(0,0,0,0.16);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
    }

    .page {
      min-height: 100vh;
    }

	.top-nav {
	  width: 100%;
	  padding-left: 8px;
      text-align: left;
	}

.top-bar {
  width: 100%;
}

.top-bar-inner {
  width: min(920px, calc(100% - 28px));
  margin: 4px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

	.home-link {
	  font-size: 14px;
	  color: var(--text-dark);
	  text-decoration: none;
	  font-weight: 500;
	  justify-self: start;
	}

	.home-link:hover {
	  text-decoration: underline;
	}


	.purchase-link {
	  font-size: 18px;
	  color: #000000;
	  text-decoration: underline;
	  font-weight: 500;
	  justify-self: start;
	}

	.purchase-link:hover {
	  text-decoration: underline;
	}


   .main-inner {
      width: min(920px, calc(100% - 28px));
      margin: 0 auto;
      padding: 0 0 24px;
    }

    .merch-hero {
      margin: 0;
      padding: 2px 0 8px;
      text-align: center;
    }

    .intro {
      margin: 0;
      line-height: 1.4;
    }

.intro-secondary {
  font-size: 14px;
  line-height: 1.5;
  color: var(--card-bg);
  font-style: italic;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}



    .design-stack {
      display: flex;
      flex-direction: column;
      gap: 26px;
      margin-top: 16px;
    }

    .design-card {
      display: flex;
      align-items: stretch;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow);
      backdrop-filter: blur(3px);
    }
    
.design-media {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 14px 0 14px 14px;
  min-width: 120px;
  }

.design-image {
  display: block;
  height: 140px;
  width: auto;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #000;

}

.design-link {
  display: block;
  line-height: 0;
  border: none;
  outline: none;
  box-shadow: none;
}



.design-body {
  flex: 1;
  padding: 18px 18px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

    .design-name {
      font-size: clamp(18px, 2.2vw, 22px);
      line-height: 1.2;
      margin: 0 0 8px;
      color: var(--text-dark);
    }

    .design-copy {
      font-size: 14px;
      line-height: 1.5;
      margin: 0 0 14px;
      color: var(--muted);
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .design-size {
      font-size: 12.5px;
      letter-spacing: 0.02em;
      font-style: italic;
      color: var(--muted);
      margin: -10px 0 6px;
	}

    .button-row {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

.view-larger {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: #000; /* black */
  margin-top: 6px;
  opacity: 0.8;
  cursor: pointer;
  margin-top: 0px;
}



.merch-heading {
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 0.7;
  margin: 6px 0 6px;
  color: #ece1cb;
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  justify-self: center;
}

    .merch-btn {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.01em;
      transition: transform 0.18s ease, opacity 0.18s ease;
      white-space: nowrap;
    }

    .merch-btn:hover,
    .merch-btn:focus {
      transform: translateY(-1px);
      opacity: 0.92;
    }

    .merch-btn-primary {
      background: #1d1d1d;
      color: #fff;
    }

    .merch-btn-secondary {
      background: #555;
      color: #fff;
      border: none;
    }

    .footer {
      margin-top: 34px;
      text-align: center;
    }
    
.product-description {
  width: min(920px, calc(100% - 28px));
  margin: 6px auto 14px;
  text-align: center;
  color: var(--card-bg);
}

.product-intro {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin: 2px 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}



.expand-view {
  text-align: center;
  margin-top: 12px;
}

.expand-title {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 6px;
  color: var(--text-dark);
}

.expand-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--card-bg);
  font-style: italic;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin: 0 0 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.expand-image-wrap {
  margin: 10px 0 14px;
}

.expand-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #000;
  box-shadow: var(--shadow);
}


    @media (max-width: 768px) {
      .design-card {
        flex-direction: column;
      }

      .design-link,
      .design-body {
        flex: 0 0 100%;
        max-width: 100%;
      }


  .design-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 14px 4px;
  }

  .design-body {
    text-align: center;
    padding-top: 6px;
  }

  .button-row {
    justify-content: center;
      }
    }

