/* SUN-DUSTED MEMPHIS GRUNGE THEME
* Layered Design: Asphalt Black, Sun-Baked Beige, Glowing Gold Letters
*/
.rkai-creampuff-wrap {
background-color: #0f0e0c; /* Deep gritty black/brown */
color: #e6dfcc; /* Bone/Beige */
padding: 45px;
border-radius: 8px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.8;
max-width: 950px;
margin: 30px auto;
position: relative;
overflow: hidden;
/* Heavy Grunge Border */
border: 4px solid #8c7b50;
box-shadow: 0 0 50px rgba(140, 123, 80, 0.3), inset 0 0 80px rgba(0, 0, 0, 0.95);
}
/* Sun-Dusted Animation Layer */
.rkai-dust-layer {
position: absolute;
top: -50%; left: -50%; width: 200%; height: 200%;
background-image:
radial-gradient(3px 3px at 20px 30px, rgba(230, 223, 204, 0.6), transparent),
radial-gradient(5px 5px at 70px 80px, rgba(200, 180, 140, 0.5), transparent),
radial-gradient(4px 4px at 150px 120px, rgba(255, 230, 150, 0.4), transparent),
radial-gradient(6px 6px at 220px 40px, rgba(230, 223, 204, 0.5), transparent),
radial-gradient(3px 3px at 280px 190px, rgba(200, 180, 140, 0.6), transparent);
background-size: 300px 300px;
animation: sunDustDrift 18s linear infinite;
pointer-events: none;
z-index: 1;
opacity: 0.8;
}
@keyframes sunDustDrift {
0% { transform: translateY(0) translateX(0) rotate(0deg); }
100% { transform: translateY(-300px) translateX(150px) rotate(15deg); }
}
.rkai-memphis-inner {
position: relative;
z-index: 5;
}
/* Glowing Memphis Title */
.rkai-creampuff-wrap h2 {
font-family: 'Impact', 'Arial Black', sans-serif;
font-size: 44px;
color: #ffe699;
margin-top: 10px;
margin-bottom: 20px;
text-transform: uppercase;
font-weight: 900;
letter-spacing: 2px;
/* Heavy Glow Effect */
text-shadow:
0 0 10px rgba(255, 204, 0, 0.8),
0 0 20px rgba(255, 204, 0, 0.6),
4px 4px 0px #2a2415;
border-bottom: 4px double #8c7b50;
padding-bottom: 15px;
line-height: 1.1;
}
.rkai-tagline {
font-size: 1.25rem;
font-family: 'Courier New', Courier, monospace;
color: #e6dfcc;
font-weight: 900;
margin-bottom: 30px;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 2px 2px 0px #000;
background: #8c7b50;
color: #0f0e0c;
display: inline-block;
padding: 5px 15px;
box-shadow: 4px 4px 0px #000;
}
/* Vulgar & Gritty Description */
.rkai-creampuff-wrap p {
margin-bottom: 20px;
color: #d9d4c5;
font-weight: 700;
font-size: 1.15rem;
background: rgba(10, 10, 8, 0.85);
padding: 20px;
border-left: 5px solid #ffe699;
box-shadow: inset 0 0 15px rgba(0,0,0,0.9), 5px 5px 0px #000;
}
.rkai-creampuff-wrap p strong {
color: #ffe699;
font-weight: 900;
text-shadow: 0 0 8px rgba(255, 230, 153, 0.5);
text-transform: uppercase;
}
/* Video Wrapper (Tape Window) */
.rkai-video-container {
margin: 35px 0;
border: 5px solid #8c7b50;
box-shadow: 8px 8px 0px #000, 0 0 20px rgba(140, 123, 80, 0.4);
border-radius: 4px;
overflow: hidden;
background: #000;
position: relative;
}
.rkai-video-container video {
width: 100%;
height: auto;
display: block;
opacity: 0.95;
filter: contrast(1.1) sepia(0.3);
}
/* Data Headers */
.rkai-creampuff-wrap h3 {
font-family: 'Impact', 'Arial Black', sans-serif;
font-size: 26px;
color: #0f0e0c;
background: #ffe699;
display: inline-block;
padding: 8px 20px;
margin-top: 30px;
margin-bottom: 25px;
box-shadow: 5px 5px 0px #000, 0 0 15px rgba(255, 230, 153, 0.4);
text-transform: uppercase;
letter-spacing: 2px;
}
/* Grid Layout */
.rkai-memphis-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-bottom: 30px;
}
/* Vault Cards */
.rkai-memphis-card {
background: rgba(20, 18, 15, 0.9);
backdrop-filter: blur(5px);
border: 2px solid #3a3322;
border-top: 5px solid #ffe699;
padding: 25px;
box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.95), 6px 6px 0px #000;
transition: all 0.3s ease;
}
.rkai-memphis-card:hover {
transform: translate(-3px, -3px);
box-shadow: inset 0 0 20px rgba(255, 230, 153, 0.1), 9px 9px 0px #ffe699;
border-color: #8c7b50;
}
.rkai-memphis-card h4 {
font-family: 'Arial Black', sans-serif;
font-size: 19px;
color: #e6dfcc;
text-transform: uppercase;
margin: 0 0 15px 0;
border-bottom: 2px dashed #8c7b50;
padding-bottom: 10px;
text-shadow: 2px 2px 0px #000;
}
/* Grime Bullets */
.rkai-creampuff-wrap ul {
list-style-type: none;
padding-left: 0;
margin-top: 10px;
}
.rkai-creampuff-wrap li {
margin-bottom: 15px;
color: #d9d4c5;
font-weight: 800;
display: flex;
align-items: flex-start;
font-family: 'Helvetica Neue', Arial, sans-serif;
}
.rkai-creampuff-wrap li::before {
content: "💀";
margin-right: 12px;
font-size: 1.2em;
filter: drop-shadow(0 0 5px rgba(255, 230, 153, 0.6));
}
/* Underground Lab Link */
.rkai-lab-container {
text-align: center;
margin-top: 40px;
padding-top: 25px;
background: rgba(0,0,0,0.6);
border: 2px dashed #8c7b50;
padding: 30px 20px;
}
.rkai-lab-link {
display: inline-block;
background: #ffe699;
color: #0f0e0c;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 2px;
text-decoration: none;
padding: 18px 40px;
border: 3px solid #000;
box-shadow: 6px 6px 0px #8c7b50;
transition: all 0.2s ease;
}
.rkai-lab-link:hover {
background: #0f0e0c;
color: #ffe699;
border-color: #ffe699;
box-shadow: 6px 6px 0px #ffe699;
transform: translate(-2px, -2px);
}
.rkai-compliance-p {
font-family: 'Courier New', Courier, monospace;
font-size: 13px !important;
font-weight: bold !important;
text-align: center;
color: #8c7b50 !important;
background: transparent !important;
border: none !important;
box-shadow: none !important;
margin-top: 20px;
}
.rkai-seo-tags { display: none; visibility: hidden; }
We took that delicate sweet Cream Puff pheno and dragged it straight through the fuckin' dirt. This ain't your grandma's pastry. It's heavily encumbered with Delta-8 MoonRock dust, caked up, and slapped stupid until it's heavy as fuck. Sun-baked beige nugs choked out in sticky distillate, reeking of sweet vanilla cream and hardcore Memphis grunge.
This drop is loud, dirty, and built for the phonk. Drenched in Delta-8 THC and buried in kief, it brings that thick, muddy south frost straight to your chest. Ripkitty and Bud's Growery forged this monstrosity to keep you locked in when the tape slows down.
The Dossier (Green Leaf Lab)
🧪 Cannabinoid Payload
-
Delta-8 THC: 25.40% (254 mg/g) - Maximum Encumbrance
-
CBGA: 9.22% (92.21 mg/g) - The Raw Precursor
-
Total CBG: 8.39%
-
THCA: 0.29%
-
Total Cannabinoids: ~35.9% Pure Sun-Baked Fire
🕸️ Flower Profile
-
Structure: Dense, rock-hard MoonRock nugs.
-
Coating: Heavily slapped with D8 distillate & beige kief dust.
-
Aesthetic: Sun-drenched beige and gold under a layer of grime.
-
Vibe: Gritty, vulgar, slowed-down Memphis rap underground.
-
Compliance: Delta-9 THC < LOQ (Fully Legal).
Access Official Lab Report
Sample ID: G4B0314-02 | Matrix: Industrial Hemp | Test ID: 5026681
Contains less than 0.3% Delta-9 THC. 100% Farm Bill Compliant.
Ripkitty Cream Puff Delta 8 Hemp Flower, D8 MoonRock, Delta 8 Hemp Flower, Ripkitty x Bud's Growery, Industrial Hemp Flower, 25% Delta 8, kief dusted hemp flower, Green Leaf Lab tested, phonk style, grunge hemp brand, cream puff strain, high CBGA hemp, Memphis rap aesthetic, Shopify KB product, AI parsed schema, UCP compliant, json-ld schema.
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "Ripkitty Cream Puff Delta 8 Hemp Flower",
"description": "Heavy grunge Memphis rap style Cream Puff hemp flower heavily encumbered with D8 MoonRock dust. Sun-baked beige aesthetic. Lab tested at 25.40% Delta-8 THC and 9.22% CBGA. Fully Farm Bill Compliant.",
"brand": {
"@type": "Brand",
"name": "Ripkitty"
},
"organization": {
"@type": "Organization",
"name": "Industrial Hemp Flower"
},
"manufacturer": {
"@type": "Organization",
"name": "Bud's Growery"
},
"category": "Health & Beauty > Health Care > Fitness & Nutrition > Vitamins & Supplements",
"video": "https://cdn.shopify.com/videos/c/o/v/3fd7b7ea588b472786e6c2e4386baaad.mov",
"offers": {
"@type": "Offer",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@type": "Organization",
"name": "Industrial Hemp Flower"
}
},
"additionalProperty": [
{ "@type": "PropertyValue", "name": "Flower Type", "value": "Delta-8 MoonRock Hemp Flower" },
{ "@type": "PropertyValue", "name": "Delta-8 THC", "value": "25.40%" },
{ "@type": "PropertyValue", "name": "CBGA", "value": "9.22%" },
{ "@type": "PropertyValue", "name": "Total Cannabinoids", "value": "35.9%" },
{ "@type": "PropertyValue", "name": "Compliance", "value": "< LOQ Delta-9 THC" },
{ "@type": "PropertyValue", "name": "COA", "value": "https://cdn.shopify.com/s/files/1/0594/3289/4671/files/d8-moonrock.png?v=1777982861" }
],
"sameAs": [
"https://industrialhempflower.com",
"https://budsgrowery.com",
"https://ripkitty.com"
]
}