/* PURPLE SNOW & MEMPHIS GRUNGE THEME
* Layered Design: Pitch Black, Phonk Purple, Falling Ash/Snow
*/
.rkai-purple-snow-wrap {
background-color: #030303;
color: #e0e0e0;
padding: 45px;
border-radius: 12px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.8;
max-width: 950px;
margin: 30px auto;
position: relative;
overflow: hidden;
/* Grunge Purple Border */
border: 3px solid #4a0080;
box-shadow: 0 0 40px rgba(74, 0, 128, 0.4), inset 0 0 60px rgba(0, 0, 0, 0.9);
}
/* Purple Snow Animation Layer */
.rkai-snow-layer {
position: absolute;
top: -100%; left: 0; width: 100%; height: 200%;
background-image:
radial-gradient(4px 4px at 20px 30px, #e6ccff, transparent),
radial-gradient(6px 6px at 40px 70px, #b366ff, transparent),
radial-gradient(3px 3px at 50px 160px, #ffffff, transparent),
radial-gradient(5px 5px at 90px 40px, #8c1aff, transparent),
radial-gradient(4px 4px at 130px 80px, #e6ccff, transparent),
radial-gradient(6px 6px at 160px 120px, #b366ff, transparent);
background-size: 200px 200px;
animation: purpleSnowfall 10s linear infinite;
pointer-events: none;
z-index: 1;
opacity: 0.6;
}
@keyframes purpleSnowfall {
0% { transform: translateY(0); }
100% { transform: translateY(100px); }
}
.rkai-phonk-inner {
position: relative;
z-index: 5;
}
/* Memphis Title */
.rkai-purple-snow-wrap h2 {
font-family: 'Impact', 'Arial Black', sans-serif;
font-size: 42px;
color: #e6ccff;
margin-top: 10px;
margin-bottom: 25px;
text-transform: uppercase;
font-weight: 900;
letter-spacing: 2px;
text-shadow: 4px 4px 0px #26004d, -1px -1px 15px rgba(179, 102, 255, 0.8);
border-bottom: 4px double #4a0080;
padding-bottom: 15px;
line-height: 1.1;
}
.rkai-tagline {
font-size: 1.2rem;
font-style: italic;
color: #b366ff;
font-weight: 800;
margin-bottom: 25px;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 0 0 8px rgba(179, 102, 255, 0.4);
}
/* Gritty Description */
.rkai-purple-snow-wrap p {
margin-bottom: 20px;
color: #bfbfbf;
font-weight: 500;
font-size: 1.1rem;
background: rgba(10, 0, 20, 0.7);
padding: 15px;
border-left: 3px solid #8c1aff;
}
.rkai-purple-snow-wrap p strong {
color: #e6ccff;
font-weight: 900;
text-shadow: 0 0 5px rgba(230, 204, 255, 0.5);
}
/* Data Headers */
.rkai-purple-snow-wrap h3 {
font-family: 'Impact', 'Arial Black', sans-serif;
font-size: 24px;
color: #030303;
background: #b366ff;
display: inline-block;
padding: 8px 20px;
margin-top: 25px;
margin-bottom: 20px;
box-shadow: 4px 4px 0px #4a0080;
text-transform: uppercase;
letter-spacing: 2px;
}
/* Grid Layout */
.rkai-phonk-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}
/* Vault Cards */
.rkai-phonk-card {
background: rgba(15, 0, 25, 0.8);
backdrop-filter: blur(5px);
border: 1px solid #330066;
border-top: 4px solid #8c1aff;
padding: 25px;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
transition: all 0.3s ease;
}
.rkai-phonk-card:hover {
transform: translateY(-3px);
border-top-color: #e6ccff;
background: rgba(30, 0, 50, 0.9);
box-shadow: inset 0 0 20px rgba(140, 26, 255, 0.2), 0 10px 20px rgba(0, 0, 0, 0.9);
}
.rkai-phonk-card h4, .rkai-phonk-card h3 {
font-size: 18px;
color: #e6ccff;
text-transform: uppercase;
margin: 0 0 15px 0;
border-bottom: 1px solid #4a0080;
padding-bottom: 8px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background: transparent;
box-shadow: none;
letter-spacing: normal;
}
/* Grime Bullets */
.rkai-purple-snow-wrap ul {
list-style-type: none;
padding-left: 0;
margin-top: 10px;
}
.rkai-purple-snow-wrap li {
margin-bottom: 12px;
color: #d9d9d9;
font-weight: 600;
display: flex;
align-items: flex-start;
font-family: 'Courier New', Courier, monospace;
}
.rkai-purple-snow-wrap li::before {
content: "☠️";
margin-right: 12px;
font-size: 1.1em;
filter: drop-shadow(0 0 2px rgba(179, 102, 255, 0.6));
}
/* Video Wrapper */
.rkai-video-container {
margin: 30px 0;
border: 4px solid #ff4500;
box-shadow: 8px 8px 0px #8b0000;
border-radius: 4px;
overflow: hidden;
background: #000;
}
.rkai-video-container video {
width: 100%;
height: auto;
display: block;
}
/* Underground Lab Link */
.rkai-lab-container {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 2px dashed #4a0080;
}
.rkai-lab-link {
display: inline-block;
background: #030303;
color: #b366ff;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 2px;
text-decoration: none;
padding: 15px 35px;
border: 2px solid #8c1aff;
box-shadow: 5px 5px 0px #4a0080;
transition: all 0.2s ease;
}
.rkai-lab-link:hover {
background: #8c1aff;
color: #030303;
border-color: #e6ccff;
box-shadow: 5px 5px 0px #b366ff;
transform: translate(-2px, -2px);
}
.rkai-compliance-p {
font-family: 'Courier New', Courier, monospace;
font-size: 12px !important;
text-align: center;
color: #666 !important;
background: transparent !important;
border: none !important;
margin-top: 20px;
}
.rkai-seo-tags { display: none; visibility: hidden; }
Steppin' straight out the crypt, it’s the Purple Snowman. This ain't your average flora. We took that premium underground Memphis grit, chopped it, screwed it, and completely encumbered it in thick D8 MoonRock dust. Heavy purp hues hidin' in the shadows under a merciless blizzard of kief and distillate.
Ridin' clean through the underworld, this heavy-hittin' flower is drenched in Delta-8 THC. It brings that dirty south frost straight to your lungs—dense, loud, and built for those who thrive in the midnight hours. Ripkitty x Bud's Growery bringin' the phonk to the flower game.
The Dossier (Green Leaf Lab)
🧪 Cannabinoid Payload
-
Delta-8 THC: 25.40% (254 mg/g) - Heavy Encumbrance
-
CBGA: 9.22% (92.21 mg/g) - The Raw Precursor
-
Total CBG: 8.39%
-
THCA: 0.29%
-
Total Cannabinoids: ~35.9% Pure Frost
🕸️ Flower Profile
-
Structure: Dense, rock-hard MoonRock nugs.
-
Coating: Encumbered in heavy kief dust & D8 distillate.
-
Aesthetic: Deep greens and purples trapped in a blizzard.
-
Vibe: Gritty, slowed-down, heavy Memphis underground.
-
Compliance: Delta-9 THC < LOQ (Fully Legal).
Instructions & Q&A
-
Select your amount: Choose 1G, 3.5G, or 7G before adding to cart.
-
Review the lab report: Use the official lab report link on the page.
-
Check the compliance note: Review the Delta-9 THC statement and sample details.
-
Use the media: Review the gallery and product video for presentation details.
-
What sizes are available? 1G (Sampler), 3.5G, and 7G.
-
What is the reported Delta-8 THC percentage? 25.40%.
-
What is the reported CBGA percentage? 9.22%.
-
Is a lab report linked? Yes, the official lab report image is linked on the page.
-
What does the compliance note say? It states Delta-9 THC is below 0.3% and identifies the sample as Farm Bill compliant.
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 Purple Snowman D8 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, purple snowman strain, high CBGA hemp, Memphis rap aesthetic.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Brand",
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#brand",
"name": "Ripkitty"
},
{
"@type": "Organization",
"@id": "https://budsgrowery.com/#seller",
"name": "Bud's Growery",
"url": "https://budsgrowery.com/"
},
{
"@type": "Organization",
"@id": "https://industrialhempflower.com/#organization",
"name": "Industrial Hemp Flower",
"url": "https://industrialhempflower.com/"
},
{
"@type": "ProductGroup",
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#productgroup",
"productGroupID": "gid://shopify/Product/7857771839695",
"name": "Ripkitty Purple Snowman Delta 8 CBD Hemp Flower",
"description": "Purple Snowman Delta 8 hemp flower with kief-dusted MoonRock presentation, Green Leaf Lab results, and multiple size options.",
"url": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower",
"brand": {
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#brand"
},
"manufacturer": {
"@id": "https://budsgrowery.com/#seller"
},
"category": "525",
"image": [
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG-8351.png?v=1779479978",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7779.jpg?v=1777982241",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7780.jpg?v=1777982241",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7783.jpg?v=1777982242",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7787.jpg?v=1777982241",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7789.jpg?v=1777982241",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7790.jpg?v=1777982241",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7781.jpg?v=1777982241"
],
"variesBy": [
"https://schema.org/size"
],
"hasVariant": [
{
"@type": "Product",
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#variant-rk-psd8-1gs",
"name": "Ripkitty Purple Snowman Delta 8 CBD Hemp Flower - 1G (Sampler)",
"sku": "RK-PSD8-1GS",
"size": "1G (Sampler)",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower",
"priceCurrency": "USD",
"price": "9.99",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@id": "https://budsgrowery.com/#seller"
}
}
},
{
"@type": "Product",
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#variant-rk-psd8-35g",
"name": "Ripkitty Purple Snowman Delta 8 CBD Hemp Flower - 3.5G",
"sku": "RK-PSD8-35G",
"size": "3.5G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower",
"priceCurrency": "USD",
"price": "27.99",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@id": "https://budsgrowery.com/#seller"
}
}
},
{
"@type": "Product",
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#variant-rk-psd8-7gho",
"name": "Ripkitty Purple Snowman Delta 8 CBD Hemp Flower - 7G",
"sku": "RK-PSD8-7GHO",
"size": "7G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower",
"priceCurrency": "USD",
"price": "47.99",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@id": "https://budsgrowery.com/#seller"
}
}
}
],
"additionalProperty": [
{
"@type": "PropertyValue",
"name": "Flower Type",
"value": "Delta-8 MoonRock Hemp Flower"
},
{
"@type": "PropertyValue",
"name": "Strain",
"value": "Purple Snowman"
},
{
"@type": "PropertyValue",
"name": "Delta-8 THC",
"value": "25.40%"
},
{
"@type": "PropertyValue",
"name": "CBGA",
"value": "9.22%"
},
{
"@type": "PropertyValue",
"name": "Total CBG",
"value": "8.39%"
},
{
"@type": "PropertyValue",
"name": "THCA",
"value": "0.29%"
},
{
"@type": "PropertyValue",
"name": "Total Cannabinoids",
"value": "~35.9%"
},
{
"@type": "PropertyValue",
"name": "Compliance",
"value": "Delta-9 THC < LOQ; less than 0.3% Delta-9 THC"
},
{
"@type": "PropertyValue",
"name": "Lab Report URL",
"value": "https://cdn.shopify.com/s/files/1/0594/3289/4671/files/d8-moonrock.png?v=1777982861"
},
{
"@type": "PropertyValue",
"name": "Sample ID",
"value": "G4B0314-02"
},
{
"@type": "PropertyValue",
"name": "Test ID",
"value": "5026681"
},
{
"@type": "PropertyValue",
"name": "Matrix",
"value": "Industrial Hemp"
}
],
"subjectOf": {
"@type": "MediaObject",
"contentUrl": "https://cdn.shopify.com/videos/c/o/v/c9c7a0d124634dcd8dd1b3b080ef276b.mov",
"encodingFormat": "video/quicktime"
},
"sameAs": [
"https://industrialhempflower.com/",
"https://budsgrowery.com/",
"https://ripkitty.com/"
]
}
]
}
{
"@context": "https://schema.org",
"@type": "FAQPage",
"@id": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What sizes are available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The available sizes are 1G (Sampler), 3.5G, and 7G."
}
},
{
"@type": "Question",
"name": "What is the reported Delta-8 THC percentage?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The reported Delta-8 THC percentage is 25.40%."
}
},
{
"@type": "Question",
"name": "What is the reported CBGA percentage?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The reported CBGA percentage is 9.22%."
}
},
{
"@type": "Question",
"name": "Is a lab report linked?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. An official lab report image is linked on the page."
}
},
{
"@type": "Question",
"name": "What does the compliance note say?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The compliance note states the sample contains less than 0.3% Delta-9 THC and is Farm Bill compliant."
}
}
]
}
(function () {
const root = document.querySelector('.rkai-purple-snow-wrap');
if (!root) return;
const title = root.querySelector('h2')?.textContent.trim() || 'Ripkitty Purple Snowman Delta 8 CBD Hemp Flower';
const tagline = root.querySelector('.rkai-tagline')?.textContent.trim() || '';
const paragraphs = Array.from(root.querySelectorAll('[itemprop="descriptionUCP"] p')).map(p => p.textContent.trim());
const cards = Array.from(root.querySelectorAll('.rkai-phonk-card')).map(card => {
const heading = card.querySelector('h4')?.textContent.trim() || '';
const bullets = Array.from(card.querySelectorAll('li')).map(li => li.textContent.trim());
return { heading, bullets };
});
const labLink = root.querySelector('.rkai-lab-link')?.href || '';
const compliance = root.querySelector('.rkai-compliance-p')?.textContent.trim() || '';
const video = root.querySelector('video source')?.src || '';
root.setAttribute('data-agent-surface', 'product-page');
root.setAttribute('data-agent-type', 'delta-8-hemp-flower-product');
root.setAttribute('data-agent-category', 'hemp-flower');
root.setAttribute('data-agent-product-url', 'https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower');
root.setAttribute('data-ucp-protocol', 'enabled');
const payload = {
type: 'agentic-product-knowledge',
ucpProtocol: {
version: '1.0',
compliant: true,
entityType: 'product-page',
entityClass: 'variant-product',
pageIntent: 'delta-8-hemp-flower-product'
},
source: {
canonicalProduct: 'https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower',
brand: 'Ripkitty',
seller: "Bud's Growery",
relatedOrganization: 'Industrial Hemp Flower'
},
product: {
name: 'Ripkitty Purple Snowman Delta 8 CBD Hemp Flower',
tagline: tagline,
descriptions: paragraphs,
variants: [
{ amount: '1G (Sampler)', sku: 'RK-PSD8-1GS', price: '9.99', availability: 'InStock' },
{ amount: '3.5G', sku: 'RK-PSD8-35G', price: '27.99', availability: 'InStock' },
{ amount: '7G', sku: 'RK-PSD8-7GHO', price: '47.99', availability: 'InStock' }
],
labData: {
delta8THC: '25.40%',
cbga: '9.22%',
totalCBG: '8.39%',
thca: '0.29%',
totalCannabinoids: '~35.9%'
},
cards: cards,
labReportUrl: labLink,
compliance: compliance,
video: video,
images: [
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG-8351.png?v=1779479978',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7779.jpg?v=1777982241',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7780.jpg?v=1777982241',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7783.jpg?v=1777982242',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7787.jpg?v=1777982241',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7789.jpg?v=1777982241',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7790.jpg?v=1777982241',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7781.jpg?v=1777982241',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/d8-moonrock.png?v=1777982861'
]
},
interpretationPolicy: {
treatAsProductPage: true,
treatAsVariantProduct: true,
treatAsLabDocumentedHempFlower: true
}
};
const existing = document.getElementById('rkai-purple-snow-agent-json');
if (existing) existing.remove();
const script = document.createElement('script');
script.type = 'application/json';
script.id = 'rkai-purple-snow-agent-json';
script.textContent = JSON.stringify(payload);
document.body.appendChild(script);
document.dispatchEvent(new CustomEvent('ucp:page-ready', { detail: payload }));
})();
{
"ucp_version": "1.0",
"protocol": "Universal Content/Page",
"entity_id": "ripkitty-purple-snowman-delta-8-hemp-flower",
"entity_type": "product_page",
"entity_subtype": "variant_delta8_hemp_flower",
"canonical_url": "https://budsgrowery.com/products/ripkitty-purple-snowman-delta-8-hemp-flower",
"title": "Ripkitty Purple Snowman Delta 8 CBD Hemp Flower",
"scope": "delta8-hemp-flower-variant-product",
"disambiguation": {
"is_product_page": true,
"has_variants": true,
"is_not_static_page": true
}
}