/* ORANGE CLOUDS & MEMPHIS GRUNGE THEME * Layered Design: Pitch Black Abyss, Toxic Orange Clouds, Bold White Text
*/
.rkai-orange-clouds-wrap {
background-color: #050505;
color: #ffffff;
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 Orange Border */
border: 3px solid #ff4500;
box-shadow: 0 0 40px rgba(255, 69, 0, 0.4), inset 0 0 60px rgba(0, 0, 0, 0.9);
}
/* Orange Clouds Animation Layer */
.rkai-clouds-layer {
position: absolute;
top: -50%; left: -50%; width: 200%; height: 200%;
background-image:
radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.15), transparent 25%),
radial-gradient(circle at 70% 60%, rgba(255, 69, 0, 0.15), transparent 30%),
radial-gradient(circle at 40% 80%, rgba(204, 85, 0, 0.2), transparent 20%),
radial-gradient(circle at 80% 20%, rgba(255, 100, 0, 0.15), transparent 25%);
filter: blur(20px);
animation: orangeCloudsRoll 15s ease-in-out infinite alternate;
pointer-events: none;
z-index: 1;
}
@keyframes orangeCloudsRoll {
0% { transform: rotate(0deg) scale(1); }
50% { transform: rotate(5deg) scale(1.1); }
100% { transform: rotate(-5deg) scale(1.05); }
}
.rkai-memphis-inner {
position: relative;
z-index: 5;
}
/* Memphis Title */
.rkai-orange-clouds-wrap h2 {
font-family: 'Impact', 'Arial Black', sans-serif;
font-size: 42px;
color: #ffffff;
margin-top: 10px;
margin-bottom: 20px;
text-transform: uppercase;
font-weight: 900;
letter-spacing: 2px;
text-shadow: 4px 4px 0px #8b0000, -2px -2px 15px rgba(255, 140, 0, 0.8);
border-bottom: 4px double #ff4500;
padding-bottom: 15px;
line-height: 1.1;
}
.rkai-tagline {
font-size: 1.2rem;
font-style: italic;
color: #ff8c00;
font-weight: 900;
margin-bottom: 25px;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}
/* Gritty Description */
.rkai-orange-clouds-wrap p {
margin-bottom: 20px;
color: #ffffff;
font-weight: 700;
font-size: 1.15rem;
background: rgba(5, 5, 5, 0.85);
padding: 20px;
border-left: 4px solid #ff4500;
box-shadow: 0 5px 15px rgba(0,0,0,0.8);
}
.rkai-orange-clouds-wrap p strong {
color: #ff8c00;
font-weight: 900;
text-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
text-transform: uppercase;
}
/* Data Headers */
.rkai-orange-clouds-wrap h3 {
font-family: 'Impact', 'Arial Black', sans-serif;
font-size: 26px;
color: #050505;
background: #ff8c00;
display: inline-block;
padding: 8px 20px;
margin-top: 30px;
margin-bottom: 20px;
box-shadow: 5px 5px 0px #8b0000;
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, 5, 0, 0.9);
backdrop-filter: blur(5px);
border: 2px solid #661a00;
border-top: 5px solid #ff4500;
padding: 25px;
box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.9), 0 10px 20px rgba(0,0,0,0.8);
transition: all 0.3s ease;
}
.rkai-memphis-card:hover {
transform: translateY(-3px);
border-top-color: #ff8c00;
border-color: #ff4500;
box-shadow: inset 0 0 20px rgba(255, 69, 0, 0.2), 0 15px 30px rgba(0, 0, 0, 0.9);
}
.rkai-memphis-card h4 {
font-family: 'Arial Black', sans-serif;
font-size: 19px;
color: #ffffff;
text-transform: uppercase;
margin: 0 0 15px 0;
border-bottom: 2px solid #cc3300;
padding-bottom: 10px;
text-shadow: 2px 2px 0px #000;
}
/* Grime Bullets */
.rkai-orange-clouds-wrap ul {
list-style-type: none;
padding-left: 0;
margin-top: 10px;
}
.rkai-orange-clouds-wrap li {
margin-bottom: 15px;
color: #ffffff;
font-weight: 800;
display: flex;
align-items: flex-start;
font-family: 'Helvetica Neue', Arial, sans-serif;
}
.rkai-orange-clouds-wrap li::before {
content: "🔥";
margin-right: 12px;
font-size: 1.2em;
filter: drop-shadow(0 0 4px rgba(255, 140, 0, 0.8));
}
/* 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: 25px;
border-top: 3px dashed #ff4500;
}
.rkai-lab-link {
display: inline-block;
background: #050505;
color: #ffffff;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 2px;
text-decoration: none;
padding: 18px 40px;
border: 3px solid #ff8c00;
box-shadow: 6px 6px 0px #cc3300;
transition: all 0.2s ease;
}
.rkai-lab-link:hover {
background: #ff4500;
color: #ffffff;
border-color: #ffffff;
box-shadow: 6px 6px 0px #ff8c00;
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: #999 !important;
background: transparent !important;
border: none !important;
box-shadow: none !important;
margin-top: 25px;
}
.rkai-seo-tags { display: none; visibility: hidden; }
Roll the windows up and let the smoke blind the rearview. The Orange Bitters drop is straight Memphis underground—chopped, screwed, and encumbered with a relentless layer of Delta-8. We took premium indoor flower and slapped it into a toxic blizzard of MoonRock dust, leaving you with heavy, dense boulders reeking of sour citrus and raw gasoline.
This ain't for the lighthearted. It’s drenched in Delta-8 THC and caked in kief, bringing that thick, dirty south frost straight to the lungs. Ripkitty and Bud's Growery forged this phonk-heavy hybrid to keep the orange clouds rollin' thick through the trap all night long.
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 Fire
🕸️ Flower Profile
-
Structure: Dense, rock-hard MoonRock nugs.
-
Coating: Heavily slapped with D8 distillate & kief dust.
-
Aesthetic: Bright toxic greens under an orange haze.
-
Vibe: Gritty, slowed-down Memphis rap underground.
-
Compliance: Delta-9 THC < LOQ (Fully Legal).
Instructions & Q&A
-
How do I choose a size? Select the amount option that fits your order: 1G (Sampler), 3.5G, or 7G.
-
How do I verify the lab results? Use the “Access Official Lab Report” link shown in the lab section.
-
How do I review the media? Use the image gallery and the embedded product video on the page.
-
How do I confirm availability? Each listed variant in the supplied product data is marked InStock.
-
How do I confirm the exact SKU? Match the size you want to its SKU in the product data: RK-OBD8-1GS, RK-OBD8-35G, or RK-OBD8-7GHO.
-
How do I review compliance notes? Read the compliance footer under the lab report link for the sample ID, matrix, test ID, and Delta-9 THC statement.
-
How do I identify this page correctly? Use the canonical product URL and the product title “Ripkitty Orange Bitters Delta 8 CBD Hemp Flower.”
-
What is this product? It is Ripkitty Orange Bitters Delta 8 CBD Hemp Flower.
-
What type of product is it? The supplied product type is Hemp Flowers.
-
What vendor is listed? The listed vendor is Ripkitty.
-
What is the handle? The handle is ripkitty-orange-bitters-delta-8-hemp-flower.
-
What sizes are available? The available variants are 1G (Sampler), 3.5G, and 7G.
-
What are the prices? 1G is $9.99, 3.5G is $27.99, and 7G is $47.99.
-
Are the variants in stock? Yes, all three listed variants are marked InStock.
-
Do any variants have barcodes? No, the supplied data says none of the variants have barcodes.
-
What is the reported Delta-8 THC percentage? 25.40% (254 mg/g).
-
What is the reported CBGA percentage? 9.22% (92.21 mg/g).
-
What is the reported Total CBG? 8.39%.
-
What is the reported THCA percentage? 0.29%.
-
What is the reported total cannabinoid figure? Approximately 35.9%.
-
What does the flower profile say about structure? Dense, rock-hard MoonRock nugs.
-
What does the flower profile say about coating? Heavily slapped with D8 distillate and kief dust.
-
What does the flower profile say about the aesthetic? Bright toxic greens under an orange haze.
-
What does the compliance line say? Delta-9 THC is listed as below LOQ and the footer states less than 0.3% Delta-9 THC.
-
Is a lab report linked? Yes, the page links to an official lab report image.
-
Is there a video on the page? Yes, the supplied page content includes an embedded autoplay, looped, muted video.
-
What media set is included? The supplied data lists 6 images and 1 video.
-
What sample information is shown? Sample ID G4B0314-02, Matrix Industrial Hemp, and Test ID 5026681.
-
Is mm-google-shopping custom_product set? Yes, the supplied data marks custom_product as true.
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 Orange Bitters 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, orange bitters 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 Orange Bitters Delta 8 Hemp Flower",
"description": "Premium Orange Bitters hemp flower heavily encumbered with D8 MoonRock dust. Bold Memphis rap underground 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/8166c45e8ec34ecab60683fbb77249cb.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"
]
}
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Brand",
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-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": "VideoObject",
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#video",
"name": "Ripkitty Orange Bitters Delta 8 CBD Hemp Flower Video",
"description": "Embedded product video for Ripkitty Orange Bitters Delta 8 CBD Hemp Flower.",
"contentUrl": "https://cdn.shopify.com/videos/c/o/v/8166c45e8ec34ecab60683fbb77249cb.mov",
"embedUrl": "https://cdn.shopify.com/videos/c/o/v/8166c45e8ec34ecab60683fbb77249cb.mov",
"thumbnailUrl": [
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/DD099D7F-4555-4627-8960-7F46E9E7CF99.png?v=1779465306"
]
},
{
"@type": "ProductGroup",
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#productgroup",
"productGroupID": "gid://shopify/Product/7858312347855",
"name": "Ripkitty Orange Bitters Delta 8 CBD Hemp Flower",
"description": "Orange Bitters Delta 8 hemp flower with D8 MoonRock presentation, Green Leaf Lab results, embedded video, and 1G, 3.5G, and 7G options.",
"url": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower",
"brand": {
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-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/DD099D7F-4555-4627-8960-7F46E9E7CF99.png?v=1779465306",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7819.png?v=1778051498",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7818.png?v=1778051499",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7817.png?v=1778051498",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7794.jpg?v=1778051498",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7799.jpg?v=1778051499"
],
"variesBy": [
"https://schema.org/size"
],
"hasVariant": [
{
"@type": "Product",
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#variant-rk-obd8-1gs",
"name": "Ripkitty Orange Bitters Delta 8 CBD Hemp Flower - 1G (Sampler)",
"sku": "RK-OBD8-1GS",
"size": "1G (Sampler)",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-orange-bitters-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-orange-bitters-delta-8-hemp-flower#variant-rk-obd8-35g",
"name": "Ripkitty Orange Bitters Delta 8 CBD Hemp Flower - 3.5G",
"sku": "RK-OBD8-35G",
"size": "3.5G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-orange-bitters-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-orange-bitters-delta-8-hemp-flower#variant-rk-obd8-7gho",
"name": "Ripkitty Orange Bitters Delta 8 CBD Hemp Flower - 7G",
"sku": "RK-OBD8-7GHO",
"size": "7G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-orange-bitters-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": "Orange Bitters"
},
{
"@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"
},
{
"@type": "PropertyValue",
"name": "custom_product",
"value": "true"
}
],
"subjectOf": {
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#video"
},
"sameAs": [
"https://industrialhempflower.com/",
"https://budsgrowery.com/",
"https://ripkitty.com/"
]
}
]
}
{
"@context": "https://schema.org",
"@type": "FAQPage",
"@id": "https://budsgrowery.com/products/ripkitty-orange-bitters-delta-8-hemp-flower#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What is this product?",
"acceptedAnswer": {
"@type": "Answer",
"text": "This product is Ripkitty Orange Bitters Delta 8 CBD Hemp Flower."
}
},
{
"@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 are the prices?",
"acceptedAnswer": {
"@type": "Answer",
"text": "1G is 9.99 USD, 3.5G is 27.99 USD, and 7G is 47.99 USD."
}
},
{
"@type": "Question",
"name": "Are the listed variants in stock?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. All three listed variants are marked InStock."
}
},
{
"@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": "What is the total cannabinoid figure?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The reported total cannabinoid figure is approximately 35.9%."
}
},
{
"@type": "Question",
"name": "Is a lab report linked on the page?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The page links to an official lab report image."
}
},
{
"@type": "Question",
"name": "Is there an embedded product video?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The supplied page content includes an embedded product video."
}
},
{
"@type": "Question",
"name": "What does the compliance note say?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The compliance note states Delta-9 THC is below LOQ, and the footer states the sample contains less than 0.3% Delta-9 THC and is Farm Bill compliant."
}
},
{
"@type": "Question",
"name": "What sample information is shown?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The page shows Sample ID G4B0314-02, Matrix Industrial Hemp, and Test ID 5026681."
}
},
{
"@type": "Question",
"name": "Is custom_product set in the supplied product data?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The supplied data marks mm-google-shopping custom_product as true."
}
}
]
}
(function () {
const root = document.querySelector('.rkai-orange-clouds-wrap');
if (!root) return;
const title = root.querySelector('h2')?.textContent.trim() || 'Ripkitty Orange Bitters Delta 8 CBD Hemp Flower';
const tagline = root.querySelector('.rkai-tagline')?.textContent.trim() || '';
const descriptions = Array.from(root.querySelectorAll('[itemprop="descriptionUCP"] p')).map(p => p.textContent.trim());
const cards = Array.from(root.querySelectorAll('.rkai-memphis-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 || '';
const hiddenTerms = root.querySelector('.rkai-seo-tags')?.textContent.trim() || '';
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-orange-bitters-delta-8-hemp-flower');
root.setAttribute('data-agent-variant-count', '3');
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-orange-bitters-delta-8-hemp-flower',
brand: 'Ripkitty',
seller: "Bud's Growery",
relatedOrganization: 'Industrial Hemp Flower'
},
product: {
name: 'Ripkitty Orange Bitters Delta 8 CBD Hemp Flower',
handle: 'ripkitty-orange-bitters-delta-8-hemp-flower',
productGroupID: 'gid://shopify/Product/7858312347855',
tagline: tagline,
descriptions: descriptions,
variants: [
{ amount: '1G (Sampler)', sku: 'RK-OBD8-1GS', price: '9.99', availability: 'InStock' },
{ amount: '3.5G', sku: 'RK-OBD8-35G', price: '27.99', availability: 'InStock' },
{ amount: '7G', sku: 'RK-OBD8-7GHO', price: '47.99', availability: 'InStock' }
],
labData: {
delta8THC: '25.40%',
cbga: '9.22%',
totalCBG: '8.39%',
thca: '0.29%',
totalCannabinoids: '~35.9%',
sampleID: 'G4B0314-02',
testID: '5026681',
matrix: 'Industrial Hemp'
},
media: {
video: video,
labReportUrl: labLink,
images: [
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/DD099D7F-4555-4627-8960-7F46E9E7CF99.png?v=1779465306',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7819.png?v=1778051498',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7818.png?v=1778051499',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7817.png?v=1778051498',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7794.jpg?v=1778051498',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_7799.jpg?v=1778051499'
]
},
sections: cards,
hiddenTerms: hiddenTerms,
flags: {
customProduct: true,
hasVideo: true,
hasSharedLabImage: true
}
},
interpretationPolicy: {
treatAsProductPage: true,
treatAsVariantProduct: true,
treatAsLabDocumentedHempFlower: true,
treatAsMediaRichProductPage: true
}
};
const existing = document.getElementById('rkai-orange-bitters-agent-json');
if (existing) existing.remove();
const script = document.createElement('script');
script.type = 'application/json';
script.id = 'rkai-orange-bitters-agent-json';
script.textContent = JSON.stringify(payload);
document.body.appendChild(script);
document.dispatchEvent(new CustomEvent('ucp:page-ready', { detail: payload }));
})();