/* ========= THE CRIPPLED CREATOR / SALES SYSTEM CSS ========= */
/* Brand variables */
:root {
--tcc-bg: #0a0a0d;
--tcc-bg-soft: #131319;
--tcc-panel: rgba(255,255,255,0.05);
--tcc-panel-strong: rgba(255,255,255,0.08);
--tcc-line: rgba(255,255,255,0.10);
--tcc-text: #f5efe4;
--tcc-muted: #b6ad9c;
--tcc-gold: #d8a84e;
--tcc-gold-bright: #f2c46d;
--tcc-fire: #ff9a3c;
--tcc-shadow: 0 20px 50px rgba(0,0,0,0.45);
--tcc-radius: 22px;
}
/* Optional body styling */
body {
background: radial-gradient(circle at top, #16161d 0%, #0a0a0d 48%, #050507 100%);
color: var(--tcc-text);
}
/* Main section wrapper */
.tcc-shop-section {
position: relative;
padding: 64px 24px;
border-radius: 30px;
overflow: hidden;
background:
linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
radial-gradient(circle at 20% 20%, rgba(216,168,78,0.12), transparent 28%),
radial-gradient(circle at 80% 0%, rgba(255,154,60,0.10), transparent 24%),
#0b0b10;
border: 1px solid rgba(255,255,255,0.08);
box-shadow: var(--tcc-shadow);
}
.tcc-shop-section::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background:
linear-gradient(135deg, transparent 0 42%, rgba(242,196,109,0.08) 50%, transparent 58%),
repeating-linear-gradient(
115deg,
transparent 0 18px,
rgba(255,255,255,0.015) 18px 19px
);
mix-blend-mode: screen;
opacity: 0.55;
}
/* Heading block */
.tcc-heading {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
margin: 0 auto 36px;
}
.tcc-heading h1,
.tcc-heading h2,
.tcc-heading h3 {
margin: 0 0 12px;
color: var(--tcc-text);
line-height: 1.05;
letter-spacing: -0.02em;
text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.tcc-heading .tcc-kicker {
display: inline-block;
padding: 8px 14px;
margin-bottom: 14px;
border-radius: 999px;
color: #1b1406;
background: linear-gradient(135deg, var(--tcc-gold-bright), var(--tcc-fire));
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.tcc-heading p {
margin: 0 auto;
max-width: 700px;
color: var(--tcc-muted);
font-size: 17px;
line-height: 1.65;
}
/* Product grid */
.tcc-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
}
/* Product card */
.tcc-card {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
background:
linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
border: 1px solid var(--tcc-line);
border-radius: var(--tcc-radius);
overflow: hidden;
box-shadow: 0 15px 35px rgba(0,0,0,0.35);
transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
backdrop-filter: blur(10px);
}
.tcc-card:hover {
transform: translateY(-8px);
border-color: rgba(242,196,109,0.35);
box-shadow: 0 28px 55px rgba(0,0,0,0.5);
}
.tcc-card::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
border-radius: inherit;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
/* Image wrap */
.tcc-card-image {
position: relative;
aspect-ratio: 4 / 5;
overflow: hidden;
background: #0b0b10;
}
.tcc-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease, filter 0.35s ease;
}
.tcc-card:hover .tcc-card-image img {
transform: scale(1.04);
filter: saturate(1.04) contrast(1.03);
}
/* Optional badge */
.tcc-badge {
position: absolute;
top: 14px;
left: 14px;
z-index: 3;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 999px;
font-size: 12px;
font-weight: 700;
color: #1c1407;
background: linear-gradient(135deg, var(--tcc-gold-bright), var(--tcc-fire));
box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}
/* Content */
.tcc-card-body {
display: flex;
flex-direction: column;
gap: 12px;
padding: 20px;
flex: 1;
}
.tcc-card-title {
margin: 0;
color: var(--tcc-text);
font-size: 24px;
line-height: 1.1;
}
.tcc-card-text {
margin: 0;
color: var(--tcc-muted);
line-height: 1.6;
font-size: 15px;
}
.tcc-price {
margin-top: auto;
font-size: 28px;
font-weight: 800;
color: var(--tcc-gold-bright);
letter-spacing: -0.02em;
}
/* Buttons */
.tcc-btn,
.tcc-btn a,
a.tcc-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
min-height: 52px;
padding: 14px 18px;
border: 1px solid rgba(242,196,109,0.35);
border-radius: 14px;
background: linear-gradient(135deg, rgba(242,196,109,0.18), rgba(255,154,60,0.12));
color: var(--tcc-text) !important;
text-decoration: none !important;
font-weight: 700;
letter-spacing: 0.02em;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.tcc-btn:hover,
.tcc-btn a:hover,
a.tcc-btn:hover {
transform: translateY(-2px);
background: linear-gradient(135deg, rgba(242,196,109,0.28), rgba(255,154,60,0.20));
border-color: rgba(242,196,109,0.55);
box-shadow: 0 14px 32px rgba(0,0,0,0.26);
}
/* Secondary text under button */
.tcc-meta {
margin-top: 10px;
color: #918977;
font-size: 13px;
line-height: 1.5;
}
/* OG Alien feature card */
.tcc-alien-card {
display: grid;
grid-template-columns: 280px 1fr;
gap: 28px;
align-items: center;
padding: 26px;
border-radius: 28px;
background:
radial-gradient(circle at top left, rgba(114,255,163,0.08), transparent 25%),
linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
border: 1px solid rgba(255,255,255,0.09);
box-shadow: var(--tcc-shadow);
}
.tcc-alien-card img {
width: 100%;
border-radius: 22px;
display: block;
object-fit: cover;
box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.tcc-alien-card h3 {
margin: 0 0 10px;
font-size: 34px;
line-height: 1.05;
}
.tcc-alien-card p {
margin: 0 0 18px;
color: var(--tcc-muted);
line-height: 1.7;
}
/* Hero/feature background using your explosive image */
.tcc-burst-panel {
position: relative;
padding: 70px 28px;
border-radius: 30px;
overflow: hidden;
background: #090909;
isolation: isolate;
}
.tcc-burst-panel::before {
content: "";
position: absolute;
inset: 0;
background-image: url("YOUR-BURST-IMAGE-URL-HERE");
background-size: cover;
background-position: center;
filter: brightness(0.42) saturate(1.05);
transform: scale(1.05);
z-index: -2;
}
.tcc-burst-panel::after {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(180deg, rgba(5,5,7,0.35), rgba(5,5,7,0.85)),
radial-gradient(circle at center, rgba(255,170,70,0.15), transparent 35%);
z-index: -1;
}
.tcc-burst-panel h1,
.tcc-burst-panel h2,
.tcc-burst-panel p {
max-width: 800px;
}
/* Simple CTA row */
.tcc-cta-row {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 22px;
}
.tcc-cta-row .tcc-btn {
width: auto;
min-width: 190px;
}
/* Framed image look for your paintings */
.tcc-framed img {
display: block;
width: 100%;
border-radius: 18px;
border: 1px solid rgba(255,255,255,0.12);
box-shadow:
0 0 0 8px rgba(255,255,255,0.03),
0 22px 45px rgba(0,0,0,0.38);
}
/* Mobile */
@media (max-width: 1024px) {
.tcc-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tcc-alien-card {
grid-template-columns: 1fr;
}
}
@media (max-width: 767px) {
.tcc-shop-section,
.tcc-burst-panel {
padding: 38px 18px;
border-radius: 24px;
}
.tcc-grid {
grid-template-columns: 1fr;
gap: 18px;
}
.tcc-card-title {
font-size: 22px;
}
.tcc-heading p,
.tcc-card-text,
.tcc-alien-card p {
font-size: 15px;
}
.tcc-alien-card h3 {
font-size: 28px;
}
.tcc-cta-row .tcc-btn {
width: 100%;
}
}