:root{
–ct-teal:#18c5c6;
–ct-orange:#f7941d;
–ct-blue:#1f3c88;
–ct-yellow:#ffd23f;
–ct-dark:#14213d;
–ct-light:#ffffff;
–ct-gray:#f4f7fb;
–ct-border:#dde4ee;
–ct-shadow:0 10px 25px rgba(0,0,0,0.08);
}
*{
box-sizing:border-box;
}
body{
margin:0;
padding:0;
}
.ct-store{
font-family:’Nunito’,sans-serif;
color:var(–ct-dark);
max-width:1200px;
margin:auto;
padding:20px;
}
/* HERO */
.ct-hero{
background:linear-gradient(135deg,var(–ct-teal),#0ea5a8);
border-radius:24px;
padding:60px 30px;
text-align:center;
color:white;
margin-bottom:35px;
box-shadow:var(–ct-shadow);
}
.ct-hero-logo{
max-width:180px;
margin-bottom:20px;
}
.ct-hero h1{
font-family:’Baloo 2′,cursive;
font-size:56px;
line-height:1;
margin-bottom:20px;
color:#f7941d;
}
.ct-hero p{
max-width:700px;
margin:auto;
font-size:18px;
line-height:1.7;
}
/* NOTICE */
.ct-notice{
background:#fff7eb;
border:2px solid #ffe0ad;
padding:20px;
border-radius:18px;
margin-bottom:40px;
text-align:center;
font-size:15px;
line-height:1.6;
}
/* SHOP */
.ct-shop{
background:white;
border-radius:28px;
padding:35px;
box-shadow:var(–ct-shadow);
margin-bottom:50px;
}
.ct-shop h2{
font-family:’Baloo 2′,cursive;
color:var(–ct-blue);
font-size:42px;
margin-top:0;
margin-bottom:10px;
}
.ct-shop p{
margin-bottom:30px;
}
/* WOO PRODUCT STYLING */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
background:white;
border-radius:24px;
overflow:hidden;
box-shadow:var(–ct-shadow);
border:1px solid var(–ct-border);
padding:20px !important;
transition:.3s ease;
}
.woocommerce ul.products li.product:hover{
transform:translateY(-4px);
}
.woocommerce ul.products li.product img{
border-radius:18px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
font-family:’Baloo 2′,cursive;
color:var(–ct-blue);
font-size:28px !important;
}
.woocommerce ul.products li.product .price{
color:var(–ct-orange) !important;
font-size:24px !important;
font-weight:700;
}
.button.product_type_variable{
background:var(–ct-yellow) !important;
color:black !important;
border-radius:14px !important;
font-weight:800 !important;
padding:14px 20px !important;
}
.single_add_to_cart_button{
background:var(–ct-yellow) !important;
color:black !important;
border-radius:14px !important;
font-weight:800 !important;
}
.woocommerce div.product form.cart .variations select{
padding:12px;
border-radius:10px;
border:2px solid #dde4ee;
}
/* BUNDLES */
.ct-bundle{
margin-top:60px;
background:white;
border-radius:28px;
padding:35px;
box-shadow:var(–ct-shadow);
}
.ct-bundle h2{
font-family:’Baloo 2′,cursive;
color:var(–ct-blue);
font-size:42px;
margin-top:0;
}
.ct-bundle-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}
.ct-mini-card{
background:var(–ct-gray);
padding:25px;
border-radius:20px;
}
.ct-mini-card h3{
margin-top:0;
color:var(–ct-orange);
font-size:28px;
}
.ct-btn{
width:100%;
border:none;
background:var(–ct-yellow);
color:#000;
padding:16px;
border-radius:16px;
font-size:17px;
font-weight:800;
cursor:pointer;
transition:.2s ease;
display:inline-block;
text-decoration:none;
text-align:center;
margin-top:20px;
}
.ct-btn:hover{
transform:translateY(-2px);
}
/* MISSION */
.ct-mission{
margin-top:60px;
text-align:center;
padding:50px;
background:linear-gradient(135deg,#fdf4e7,#fff);
border-radius:24px;
}
.ct-mission h2{
font-family:’Baloo 2′,cursive;
color:var(–ct-orange);
font-size:42px;
}
.ct-mission p{
max-width:850px;
margin:auto;
line-height:1.8;
font-size:17px;
}
/* EMAIL */
.ct-email{
margin-top:50px;
background:white;
padding:40px;
border-radius:24px;
box-shadow:var(–ct-shadow);
text-align:center;
}
.ct-email h2{
font-family:’Baloo 2′,cursive;
color:var(–ct-blue);
font-size:38px;
}
.ct-email p{
margin-bottom:25px;
}
.ct-email input{
width:100%;
max-width:500px;
padding:16px;
border-radius:14px;
border:2px solid #dde4ee;
margin-bottom:20px;
}
/* SOCIAL */
.ct-social{
margin-top:50px;
text-align:center;
}
.ct-social h2{
font-family:’Baloo 2′,cursive;
color:var(–ct-blue);
font-size:38px;
}
.ct-social-links{
display:flex;
justify-content:center;
gap:20px;
margin-top:25px;
flex-wrap:wrap;
}
.ct-social-links a{
background:var(–ct-gray);
padding:16px 24px;
border-radius:14px;
text-decoration:none;
color:var(–ct-dark);
font-weight:700;
transition:.2s ease;
}
.ct-social-links a:hover{
transform:translateY(-2px);
}
/* COMING SOON */
.ct-coming{
margin-top:50px;
text-align:center;
padding:40px;
background:linear-gradient(135deg,#fdf4e7,#fff);
border-radius:24px;
}
.ct-coming h2{
font-family:’Baloo 2′,cursive;
color:var(–ct-orange);
}
/* FOOTER */
.ct-footer-note{
text-align:center;
margin-top:50px;
opacity:.8;
}
/* MOBILE */
@media(max-width:768px){
.ct-hero{
padding:40px 20px;
}
.ct-hero h1{
font-size:40px;
}
.ct-shop,
.ct-bundle{
padding:25px;
}
.ct-bundle-grid{
grid-template-columns:1fr;
}
}

Creative Talentz Store

Wear your creativity. Every purchase supports confidence-building,
storytelling, and creative expression through Creative Talentz programs and events.


Limited Inventory Notice

Due to limited inventory, some sizes or colors may temporarily sell out.

If your item becomes unavailable after purchase,
we will contact you immediately with updates.

Shop Creative Talentz Apparel

Select your favorite styles, colors, and sizes below.


Bundle Deals

2 T-Shirt Bundle — $50

Perfect for siblings, gifts, or matching styles.


Bundle Checkout

T-Shirt + Hoodie Bundle — $75

Save more while supporting the mission.


Bundle Checkout

More Than Apparel

Creative Talentz empowers youth through creativity,
storytelling, confidence-building, and self-expression.
Every purchase directly supports programs designed to inspire creators
of all abilities to dream bigger and stay creative.

Stay In The Creative Loop

Be the first to know about new drops, workshops, and events.



Follow Creative Talentz


Instagram


TikTok

Coming Soon

Character plushies, keychains, stickers, backpacks,
and more.


© Creative Talentz — Stay Creative

Scroll to Top