/* ── Reset & base ── */
.gc-catalogue * { box-sizing: border-box; }
/* ── Hero ── */
.gc-hero {
background: #1A1A1A;
padding: 64px 24px;
margin: 0 calc(-1 * var(--page-width-padding, 20px));
}
.gc-hero__inner { max-width: 1152px; margin: 0 auto; }
.gc-hero h1 {
font-family: Montserrat, sans-serif;
font-size: clamp(28px, 5vw, 48px);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.12em;
color: #ffffff;
margin: 0;
line-height: 1.1;
}
.gc-hero p {
font-family: Montserrat, sans-serif;
font-size: clamp(14px, 2vw, 18px);
font-weight: 400;
color: rgba(255,255,255,0.88);
margin: 16px 0 0;
max-width: 720px;
line-height: 1.65;
}
/* ── Sticky chapter nav ── */
.gc-chapnav {
position: sticky;
top: 0;
z-index: 40;
background: rgba(17,17,17,0.97);
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(255,255,255,0.08);
margin: 0 calc(-1 * var(--page-width-padding, 20px));
}
.gc-chapnav__inner {
max-width: 1152px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 2px;
overflow-x: auto;
padding: 10px 24px;
scrollbar-width: none;
min-height: 48px;
}
.gc-chapnav__inner::-webkit-scrollbar { display: none; }
.gc-chapnav__btn {
flex-shrink: 0;
background: none;
border: none;
cursor: pointer;
padding: 8px 12px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: rgba(255,255,255,0.45);
transition: color 0.15s;
text-decoration: none;
display: inline-block;
white-space: nowrap;
border-bottom: 2px solid transparent;
position: relative;
}
.gc-chapnav__btn:hover { color: inherit; }
.gc-chapnav__btn.is-active {
border-bottom-color: currentColor;
color: inherit;
padding-bottom: 6px;
}
/* ── Search bar ── */
.gc-search-wrap {
max-width: 1152px;
margin: 24px auto 0;
padding: 0 24px;
position: relative;
}
.gc-search-wrap svg {
position: absolute;
left: 36px;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
color: rgba(0,0,0,0.35);
pointer-events: none;
}
.gc-search-input {
width: 100%;
border: 1px solid rgba(74,74,74,0.35);
border-radius: 14px;
padding: 11px 40px 11px 40px;
font-size: 15px;
color: #111;
outline: none;
background: #fff;
transition: border-color 0.15s, box-shadow 0.15s;
}
.gc-search-input:focus {
border-color: #D43790;
box-shadow: 0 0 0 3px rgba(212,55,144,0.15);
}
.gc-search-clear {
position: absolute;
right: 36px;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.12);
border: none;
border-radius: 50%;
width: 20px;
height: 20px;
cursor: pointer;
opacity: 0;
pointer-events: none;
display: flex;
align-items: center;
justify-content: center;
color: rgba(0,0,0,0.5);
transition: opacity 0.15s;
}
.gc-search-clear.is-visible {
opacity: 1;
pointer-events: auto;
}
.gc-search-results {
max-width: 1152px;
margin: 20px auto 0;
padding: 0 24px;
display: none;
}
.gc-search-results.is-visible { display: block; }
.gc-search-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: rgba(0,0,0,0.45);
margin-bottom: 16px;
}
/* ── Section wrapper ── */
.gc-section {
max-width: 1152px;
margin: 48px auto 32px;
padding: 0 24px;
scroll-margin-top: 60px;
}
.gc-section__heading {
font-family: Montserrat, sans-serif;
font-size: 14px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.18em;
color: #fff;
border-left: 3px solid currentColor;
padding-left: 12px;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
}
.gc-section__heading a {
font-size: 11px;
color: rgba(255,255,255,0.45);
text-decoration: none;
font-weight: 600;
letter-spacing: 0.06em;
border-bottom: 1px solid transparent;
transition: color 0.15s;
}
.gc-section__heading a:hover { color: currentColor; border-bottom-color: currentColor; }
/* ── Product grid ── */
.gc-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 12px;
}
/* ── Product tile ── */
.gc-tile {
background: #fff;
border: 1px solid rgba(74,74,74,0.12);
border-radius: 14px;
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform 0.15s, box-shadow 0.15s;
position: relative;
min-height: 260px;
}
.gc-tile:hover {
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.gc-tile__img-wrap {
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;
background: #f5f5f5;
}
.gc-tile__img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s;
}
.gc-tile:hover .gc-tile__img-wrap img { transform: scale(1.04); }
.gc-tile__body {
padding: 8px 10px 10px;
display: flex;
flex-direction: column;
flex: 1;
}
.gc-tile__name {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: #111;
line-height: 1.35;
margin: 0 0 2px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.gc-tile__code {
font-size: 11px;
color: rgba(0,0,0,0.40);
letter-spacing: 0.06em;
text-transform: uppercase;
margin: 0 0 5px;
}
.gc-tile__price {
font-size: 13px;
font-weight: 700;
color: #111;
margin: auto 0 6px;
}
.gc-tile__sold-out {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: rgba(0,0,0,0.35);
margin: auto 0 6px;
}
.gc-tile__atc {
display: block;
width: 100%;
background: #D43790;
color: #fff;
border: none;
border-radius: 8px;
padding: 9px 8px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
cursor: pointer;
transition: background 0.15s;
text-align: center;
text-decoration: none;
min-height: 36px;
}
.gc-tile__atc:hover { background: #b02d7a; color: #fff; }
.gc-tile__atc:disabled {
background: rgba(0,0,0,0.12);
color: rgba(0,0,0,0.35);
cursor: default;
}
.gc-tile__badge {
position: absolute;
top: 6px;
left: 6px;
background: #D43790;
color: #fff;
font-size: 9px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
border-radius: 6px;
padding: 2px 6px;
}
.gc-tile__badge--sold-out {
background: rgba(0,0,0,0.45);
color: #fff;
}
/* ── View all link ── */
.gc-view-all {
text-align: center;
margin: 20px 0 8px;
}
.gc-view-all a {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: rgba(255,255,255,0.55);
text-decoration: none;
border: 1px solid rgba(255,255,255,0.15);
border-radius: 999px;
padding: 8px 20px;
transition: color 0.15s, border-color 0.15s;
}
.gc-view-all a:hover {
color: #D43790;
border-color: #D43790;
}
/* ── Search result empty state ── */
.gc-empty {
border: 1px solid rgba(74,74,74,0.18);
border-radius: 16px;
background: #fff;
padding: 48px 24px;
text-align: center;
color: rgba(0,0,0,0.45);
font-size: 14px;
}
/* ── No products placeholder ── */
.gc-no-products {
grid-column: 1 / -1;
padding: 24px;
text-align: center;
color: rgba(255,255,255,0.35);
font-size: 12px;
}
/* ── Page-level dark background ── */
.gc-catalogue {
background: #1A1A1A;
padding-bottom: 64px;
}
@media (max-width: 640px) {
.gc-hero { padding: 48px 20px; }
.gc-section { padding: 0 16px; margin: 40px auto 24px; }
.gc-search-wrap { padding: 0 16px; }
.gc-search-wrap svg { left: 28px; }
.gc-search-clear { right: 28px; }
.gc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
Shop by category
Explore our curated collections