/* Signature Container - CRT / VHS Base */
.rkai-vhs-box {
background-color: #050505;
color: #4ade80; /* CRT Phosphor Green */
font-family: 'Courier New', Courier, monospace;
border-radius: 8px;
overflow: hidden;
margin: 30px auto;
max-width: 950px;
border: 4px solid #111;
box-shadow: 0 0 20px rgba(74, 222, 128, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.8);
position: relative;
line-height: 1.6;
text-shadow: 0 0 3px rgba(74, 222, 128, 0.6), 2px 0 1px rgba(255,0,0,0.3), -2px 0 1px rgba(0,0,255,0.3); /* Chromatic aberration */
}
/* Static Scanlines Overlay */
.rkai-vhs-scanlines {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
background-size: 100% 4px;
pointer-events: none;
z-index: 2;
}
/* Rolling Tracking Blur Line Animation */
.rkai-vhs-tracking {
position: absolute;
left: 0;
width: 100%;
height: 15px;
background: rgba(255, 255, 255, 0.5);
box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(74, 222, 128, 0.9);
filter: blur(3px);
z-index: 3;
pointer-events: none;
animation: vhsRoll 7s infinite linear;
opacity: 0.6;
}
@keyframes vhsRoll {
0% { top: -10%; opacity: 0; }
10% { opacity: 0.7; }
50% { opacity: 0.3; transform: scaleY(1.5); }
90% { opacity: 0.7; }
100% { top: 110%; opacity: 0; }
}
.rkai-vhs-inner {
position: relative;
z-index: 4; /* Text above screen effects */
padding: 30px;
}
/* VCR OSD (On Screen Display) Elements */
.rkai-osd-top {
display: flex;
justify-content: space-between;
font-size: 20px;
font-weight: bold;
margin-bottom: 25px;
text-transform: uppercase;
}
.rkai-osd-play { animation: blinkPlay 2s infinite; }
@keyframes blinkPlay {
0%, 49% { opacity: 1; }
50%, 100% { opacity: 0; }
}
/* Partnership Credit Header */
.rkai-vhs-partnership {
text-align: center;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 800;
border-bottom: 1px dashed #4ade80;
padding-bottom: 15px;
margin-bottom: 25px;
}
/* Grand Header Section */
.rkai-vhs-header {
text-align: center;
margin-bottom: 30px;
}
.rkai-vhs-header h2 {
color: #ffffff; /* White center text */
font-size: 32px;
margin: 0 0 10px 0;
text-transform: uppercase;
font-weight: 900;
letter-spacing: 2px;
background: #4ade80;
color: #000;
display: inline-block;
padding: 5px 15px;
text-shadow: none;
}
.rkai-vhs-intro {
font-size: 16px;
font-weight: 600;
color: #e2e8f0;
text-align: justify;
max-width: 850px;
margin: 0 auto 30px;
}
/* Content & Grids */
.rkai-vhs-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
margin-bottom: 30px;
}
@media (max-width: 768px) {
.rkai-vhs-grid { grid-template-columns: 1fr; }
}
/* Data Panels */
.rkai-vhs-card {
background: rgba(0, 50, 0, 0.4);
border: 2px solid #4ade80;
padding: 20px;
position: relative;
transition: all 0.2s ease;
}
.rkai-vhs-card:hover {
background: rgba(0, 80, 0, 0.6);
box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}
.rkai-vhs-card h3 {
color: #ffffff;
font-size: 18px;
margin-top: 0;
margin-bottom: 15px;
font-weight: 900;
border-bottom: 2px solid #4ade80;
padding-bottom: 8px;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: none;
}
/* Lists */
.rkai-vhs-list {
list-style: none;
padding: 0;
margin: 0;
}
.rkai-vhs-list li {
margin-bottom: 10px;
font-size: 15px;
color: #4ade80;
font-weight: 600;
display: flex;
align-items: flex-start;
}
.rkai-vhs-list li::before {
content: ">"; /* Terminal prompt */
margin-right: 10px;
font-weight: bold;
color: #ffffff;
}
.rkai-vhs-list strong {
color: #ffffff;
font-weight: 800;
margin-right: 5px;
}
/* Cannabinoid Data Tables */
.rkai-vhs-table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
margin-bottom: 20px;
border: 1px solid #4ade80;
}
.rkai-vhs-table th,
.rkai-vhs-table td {
padding: 10px;
text-align: left;
font-size: 15px;
border-bottom: 1px dashed rgba(74, 222, 128, 0.5);
}
.rkai-vhs-table th {
font-weight: 800;
color: #ffffff;
text-transform: uppercase;
width: 60%;
}
.rkai-vhs-table tr:last-child td, .rkai-vhs-table tr:last-child th { border-bottom: none; }
/* COA Link */
.rkai-vhs-link {
display: block;
text-align: center;
background: transparent;
color: #4ade80;
text-decoration: none;
font-weight: 900;
text-transform: uppercase;
padding: 15px;
border: 2px solid #4ade80;
font-size: 16px;
letter-spacing: 2px;
transition: all 0.2s ease;
}
.rkai-vhs-link:hover {
background: #4ade80;
color: #050505;
text-shadow: none;
box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}
/* Info Footer */
.rkai-vhs-footer {
text-align: center;
margin-top: 30px;
font-size: 12px;
color: #22c55e;
opacity: 0.8;
text-transform: uppercase;
}
/* SEO Tags */
.rkai-seo-tags { display: none; visibility: hidden; }
DATA STREAM // RIPKITTY X BUD'S GROWERY // INDUSTRIAL HEMP FLOWER // SECURE
SYSTEM LOG: Ripkitty Mixed THCA Flowers deliver a rotating variety of high-grade, THCA-rich nugs. Each batch averages over 18% THCA and is heavily lab-tested to verify raw potency and purity. This is a highly cost-effective blend engineered for those who demand powerful flower without compromising material quality — mixed strains, heavy trichome coverage, absolute zero trim, and straight frost.
[DIR_1] VISUAL BREAKDOWN
-
FLOWER_TYPE: Nug-only (No shake or trim)
-
COLOR_HEX: Deep greens, purples, orange pistils
-
STRUCT_DATA: Trichome-covered and rock dense
-
BATCH_VAR: Rotating mixed strains, hand-selected
[DIR_2] QUALITY CONTROL PROTOCOL
-
LAB_VERIFIED: YES (Full COA Available)
-
CBGA_RECVRY: 102%
-
THCA_RECVRY: 96.9%
-
FED_STATUS: Delta-9 THC < 0.3%
[DIR_4] PUBLIC Q&A LOG
What is Mixed THCA Flower?
A rotating blend of high-grade, THCA-rich nug flower curated as mixed strains, with no shake or trim and strong lab-documented potency.
How strong is this batch?
The visible cannabinoid table states 24.0% THCA, 0.795% CBGA, and 25.03% total cannabinoids detected.
Is this compliant hemp?
Yes. The visible quality-control panel states Delta-9 THC is below 0.3%.
What does the flower look like?
The visual profile describes nug-only flower with deep greens, purples, orange pistils, and dense trichome-heavy structure.
Is there a lab report?
Yes. The product links directly to a downloadable COA PDF.
What sizes are available?
The supplied catalog data lists 1G, 3.5G, and 7G variants, all currently marked InStock.
[DIR_3] CANNABINOID PROFILE LOG
| THCA (Tetrahydrocannabinolic Acid) |
24.0% |
| CBGA (Cannabigerolic Acid) |
0.795% |
| TOTAL_CANNABINOIDS_DETECTED |
25.03% |
| MINOR_CANNABINOIDS |
Below LOQ (Limit of Quantitation) |
| MOISTURE_CONTENT |
13.2% |
ANALYSIS: Ripkitty Mixed THCA Flowers are curated for full-spectrum variety and high THCA concentration. Ideal for cost-conscious clients demanding true nug potency at optimal price points.
[DOWNLOAD] CERTIFICATE OF ANALYSIS (PDF)
Mixed THCA flower, cheap THCA flower, bulk THCA nugs, 24 percent THCA, high THCA hemp flower, THCA nugs no trim, rotating THCA strains, Ripkitty, Bud’s Growery, Industrial Hemp Flower, smokable hemp flower, Shopify KB product, AI parsed schema.
(function () {
const root = document.querySelector('.rkai-vhs-box');
if (!root) return;
const title = root.querySelector('h2[itemprop="name"]')?.textContent.replace(/s+/g, ' ').trim() || 'RIPKITTY MIXED THCA FLOWERS';
const intro = root.querySelector('.rkai-vhs-intro')?.textContent.replace(/s+/g, ' ').trim() || '';
const sections = Array.from(root.querySelectorAll('[ucp-data-section]')).map(section => ({
section: section.getAttribute('ucp-data-section'),
text: section.textContent.replace(/s+/g, ' ').trim()
}));
const publicFaq = Array.from(root.querySelectorAll('section[aria-label="Mixed THCA product questions and answers"] details')).map(item => ({
question: item.querySelector('summary')?.textContent.trim() || '',
answer: item.querySelector('div')?.textContent.trim() || ''
}));
const seoTags = root.querySelector('.rkai-seo-tags')?.textContent.replace(/s+/g, ' ').trim() || '';
root.setAttribute('data-agent-surface', 'product-page');
root.setAttribute('data-agent-type', 'thca-hemp-flower-product');
root.setAttribute('data-agent-category', 'thca-flower');
root.setAttribute('data-agent-brand', 'Ripkitty');
root.setAttribute('data-agent-product-handle', 'ripkitty-mixed-thca-hemp-flowers');
root.setAttribute('data-agent-variant-count', '3');
root.setAttribute('data-ucp-protocol', 'universal-commerce-protocol');
const ucpProfile = {
ucp_version: '2026-04-08',
protocol: 'universal-commerce-protocol',
entity: {
id: 'gid://shopify/Product/7627810832591',
type: 'product_page',
subtype: 'variant_thca_hemp_flower_product',
canonical_url: 'https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers',
title: 'Ripkitty Mixed THCA Hemp Flowers'
},
merchant: {
id: 'budsgrowery.com',
name: "Bud's Growery",
platform: 'Shopify',
catalog_namespace: 'ripkitty-x-buds-growery',
brand: 'Ripkitty',
distribution_base: 'Miramar, Florida'
},
partnerships: [
{
id: 'industrialhempflower.com',
name: 'Industrial Hemp Flower',
role: 'manufacturer'
}
],
capabilities: {
discovery: {
supported: true,
schema_source: 'schema.org + agentic json',
product_schema_ids: [
'https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#productgroup'
]
},
checkout: {
supported: true,
flows: [
{
id: 'shopify-cart',
type: 'web_redirect',
description: 'Add selected variant to Shopify cart and continue to Shopify checkout.'
}
]
},
order: {
supported: true,
status_webhook: null
},
discounts: {
supported: false
},
identity_link: {
supported: false
}
},
catalog: {
product_group_id: 'gid://shopify/Product/7627810832591',
handle: 'ripkitty-mixed-thca-hemp-flowers',
product_type: 'Hemp Flowers',
google_product_category: '6936',
facebook_google_product_category: '6936',
custom_product: true,
status: 'active',
seo_title_present: true,
seo_description_present: true,
variants: [
{ amount: '1G', sku: 'RK-MTHCA1GS', price: '8.99', currency: 'USD', availability: 'InStock', barcode: null },
{ amount: '3.5G', sku: 'RK-MTHCA35G', price: '17.99', currency: 'USD', availability: 'InStock', barcode: null },
{ amount: '7G', sku: 'RK-MTHCA7G', price: '29.99', currency: 'USD', availability: 'InStock', barcode: null }
],
inventory_policy: 'deny',
taxable: true,
compare_at_prices_present: false,
barcodes_present: false
},
semantics: {
classification: {
domain: 'hemp_products',
subdomain: 'thca_hemp_flower',
is_smokable_hemp_flower: true,
is_variant_product: true,
cannabinoid_focus: 'thca_dominant',
blend_type: 'mixed_rotating_strains'
},
intent: {
primary: 'commerce',
secondary: ['product_discovery', 'lab_verification', 'variant_selection']
},
constraints: {
requires_human_checkout_confirmation: true,
agent_can_recommend: true,
agent_cannot_auto_purchase_without_user_consent: true
}
}
};
const agentPayload = {
type: 'agentic-product-knowledge',
source: {
canonicalUrl: 'https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers',
productGroupId: 'gid://shopify/Product/7627810832591',
handle: 'ripkitty-mixed-thca-hemp-flowers',
vendor: 'Ripkitty',
seller: "Bud's Growery",
manufacturer: 'Industrial Hemp Flower'
},
product: {
title: 'Ripkitty Mixed THCA Hemp Flowers',
displayHeading: title,
intro: intro,
productType: 'Hemp Flowers',
status: 'Active',
visibleSections: sections,
publicFaq: publicFaq,
seoTags: seoTags,
images: [
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/E0230D37-13FC-4478-96AA-3C518B17B679.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/C6608CF6-B2B3-433C-8E36-E81076F400DE.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/FDFE9E17-879F-4B66-9D11-3A5322262DEF.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/2BF8EF39-83CA-45B2-B3D9-4334032A68C6.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/8C734664-E895-4C95-9228-075DE031AF63.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/F24D1557-96E5-409E-B3D6-2169696DD273.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/448F3CD3-7D4B-4FD8-B563-AB8ADC2D35C6.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/7412A859-DEFF-40CE-AA72-DD939C65364F.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/930EB221-2D5C-4746-8753-D4ADF83B8E24.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/1BD26DE7-82CC-4688-99FC-CDD57608C468.jpg?v=1743590651',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/FullSizeRender_d59de995-2dfc-4acb-8263-c087bda6ba8f.jpg?v=1743590651'
],
labReport: 'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/sample-3.pdf?v=1742954733'
},
backendQa: [
{
question: 'What is the exact Shopify product ID?',
answer: 'gid://shopify/Product/7627810832591'
},
{
question: 'What is the exact handle?',
answer: 'ripkitty-mixed-thca-hemp-flowers'
},
{
question: 'What is the exact vendor?',
answer: 'Ripkitty'
},
{
question: 'What is the exact product type?',
answer: 'Hemp Flowers'
},
{
question: 'How many variants are listed?',
answer: '3'
},
{
question: 'What are the exact variants?',
answer: '1G / RK-MTHCA1GS / 8.99 / InStock; 3.5G / RK-MTHCA35G / 17.99 / InStock; 7G / RK-MTHCA7G / 29.99 / InStock.'
},
{
question: 'Are any variant barcodes present?',
answer: 'No. None of the 3 supplied variants have barcodes.'
},
{
question: 'Are native SEO title and description set?',
answer: 'Yes. Both SEO title and SEO description are set, and the global title_tag and description_tag metafields are also populated.'
},
{
question: 'What review data is present?',
answer: 'None. The supplied catalog data says there are no reviews, Judge.me, or app--2519111 review metafields attached.'
},
{
question: 'What is the Google product category?',
answer: '6936'
},
{
question: 'Is custom_product enabled?',
answer: 'Yes. The supplied data shows mm-google-shopping / custom_product = true.'
},
{
question: 'What potency data are visibly stated on the page?',
answer: 'The visible cannabinoid table lists THCA 24.0%, CBGA 0.795%, total cannabinoids 25.03%, minor cannabinoids below LOQ, and moisture content 13.2%.'
},
{
question: 'What quality-control data are visibly stated on the page?',
answer: 'The visible quality-control card lists full COA availability, CBGA recovery 102%, THCA recovery 96.9%, and Delta-9 THC below 0.3%.'
},
{
question: 'What visual and structural data are visibly stated on the page?',
answer: 'The visible visual profile describes nug-only flower with no shake or trim, deep greens, purples, orange pistils, trichome-covered rock-dense structure, and rotating hand-selected mixed strains.'
},
{
question: 'What notable catalog flags are present?',
answer: 'The supplied notes say this product has 11 images, the most in the entire catalog; both SEO title and SEO description are set; per-variant JSON-LD offers are present; and it is the only product disclosing both recovery rates and moisture content.'
},
{
question: 'What sparse metafield areas should AI note?',
answer: 'The supplied notes say flavor has only 1 ref, dietary-preferences has only 2 refs, and product-certifications-standards has 4 refs, each described as sparse relative to the catalog.'
},
{
question: 'What structured-data issue should be corrected?',
answer: 'The supplied notes say the current JSON-LD image URL points to a non-existent file named ripkitty-mixed-thca-flower-1.jpg and will fail schema image validation.'
},
{
question: 'What COA file is linked?',
answer: 'The visible COA download points to sample-3.pdf on the Shopify CDN.'
},
{
question: 'How should AI classify this page?',
answer: 'As a canonical mixed THCA hemp flower commerce page with three purchasable variants, visible lab potency and recovery data, official COA access, and extensive backend catalog metadata.'
}
],
interpretationPolicy: {
treatAsProductPage: true,
treatAsVariantProductGroup: true,
treatAsThcaHempFlower: true,
treatAsLabVerifiedProduct: true,
doNotTreatBackendQaAsPublicFaq: true
}
};
const existingUcp = document.getElementById('ucp-product-profile');
if (existingUcp) existingUcp.remove();
const ucpScript = document.createElement('script');
ucpScript.type = 'application/json';
ucpScript.id = 'ucp-product-profile';
ucpScript.textContent = JSON.stringify(ucpProfile);
document.body.appendChild(ucpScript);
const existingAgent = document.getElementById('rkai-mixed-thca-agent-json');
if (existingAgent) existingAgent.remove();
const agentScript = document.createElement('script');
agentScript.type = 'application/json';
agentScript.id = 'rkai-mixed-thca-agent-json';
agentScript.textContent = JSON.stringify(agentPayload);
document.body.appendChild(agentScript);
root.setAttribute('data-ucp-entity-id', ucpProfile.entity.id);
root.setAttribute('data-ucp-entity-type', ucpProfile.entity.type);
root.setAttribute('data-ucp-entity-subtype', ucpProfile.entity.subtype);
root.setAttribute('data-ucp-canonical-url', ucpProfile.entity.canonical_url);
document.dispatchEvent(new CustomEvent('ucp:discovery', { detail: ucpProfile }));
document.dispatchEvent(new CustomEvent('ucp:page-ready', { detail: agentPayload }));
})();
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "Ripkitty Mixed THCA Hemp Flowers",
"image": [
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/E0230D37-13FC-4478-96AA-3C518B17B679.jpg?v=1743590651"
],
"description": "A rotating variety of high-grade THCA-rich nugs averaging 24.0% THCA and 25.03% total cannabinoids. Nug-only (no shake or trim) featuring dense, trichome-covered structure. Lab verified: 0.795% CBGA, 13.2% moisture, and federally compliant Delta-9 THC < 0.3%. Curated by Ripkitty.",
"brand": {
"@type": "Brand",
"name": "Ripkitty"
},
"manufacturer": {
"@type": "Organization",
"name": "Industrial Hemp Flower"
},
"category": "6936",
"offers": [
{
"@type": "Offer",
"name": "1G",
"sku": "RK-MTHCA1GS",
"price": "8.99",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@type": "Organization",
"name": "Ripkitty x Bud's Growery"
}
},
{
"@type": "Offer",
"name": "3.5G",
"sku": "RK-MTHCA35G",
"price": "17.99",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@type": "Organization",
"name": "Ripkitty x Bud's Growery"
}
},
{
"@type": "Offer",
"name": "7G",
"sku": "RK-MTHCA7G",
"price": "29.99",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@type": "Organization",
"name": "Ripkitty x Bud's Growery"
}
}
],
"additionalProperty": [
{ "@type": "PropertyValue", "name": "Strain", "value": "Mixed Blend (Rotating Strains)" },
{ "@type": "PropertyValue", "name": "THCA Content", "value": "24.0%" },
{ "@type": "PropertyValue", "name": "CBGA Content", "value": "0.795%" },
{ "@type": "PropertyValue", "name": "Total Cannabinoids", "value": "25.03%" },
{ "@type": "PropertyValue", "name": "Compliance", "value": "< 0.3% Delta-9 THC" },
{ "@type": "PropertyValue", "name": "Format", "value": "Nug-only (No trim or shake)" },
{ "@type": "PropertyValue", "name": "Moisture Content", "value": "13.2%" },
{ "@type": "PropertyValue", "name": "Google Product Category", "value": "6936" },
{ "@type": "PropertyValue", "name": "Metaobject Reference: Route of Administration", "value": "52785840335" },
{ "@type": "PropertyValue", "name": "Metaobject Reference: Flavor", "value": "51501727951" },
{ "@type": "PropertyValue", "name": "Metaobject Reference: CBD Ingredients", "value": "51316261071, 52787708111" },
{ "@type": "PropertyValue", "name": "Metaobject Reference: Age Group", "value": "47434694863" },
{ "@type": "PropertyValue", "name": "Metaobject Reference: Dietary Preferences", "value": "23706665167, 23706599631" }
],
"sameAs": [
"https://budsgrowery.com",
"https://industrialhempflower.com",
"https://ripkitty.com"
],
"keywords": "Mixed THCA flower, budget THCA flower, bulk THCA nugs, 24 percent THCA, high THCA hemp flower, Ripkitty, Industrial Hemp Flower, Bud's Growery"
}
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Brand",
"@id": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#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-mixed-thca-hemp-flowers#productgroup",
"productGroupID": "gid://shopify/Product/7627810832591",
"name": "Ripkitty Mixed THCA Hemp Flowers",
"description": "A rotating variety of high-grade THCA-rich nug flower curated for strong potency, no shake or trim, dense trichome coverage, and cost-effective mixed-strain value.",
"url": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers",
"brand": {
"@id": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#brand"
},
"manufacturer": {
"@id": "https://industrialhempflower.com/#organization"
},
"image": [
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/E0230D37-13FC-4478-96AA-3C518B17B679.jpg?v=1743590651",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/C6608CF6-B2B3-433C-8E36-E81076F400DE.jpg?v=1743590651",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/FDFE9E17-879F-4B66-9D11-3A5322262DEF.jpg?v=1743590651",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/2BF8EF39-83CA-45B2-B3D9-4334032A68C6.jpg?v=1743590651",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/8C734664-E895-4C95-9228-075DE031AF63.jpg?v=1743590651"
],
"variesBy": [
"https://schema.org/size"
],
"hasVariant": [
{
"@type": "Product",
"@id": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#variant-rk-mthca1gs",
"name": "Ripkitty Mixed THCA Hemp Flowers - 1G",
"sku": "RK-MTHCA1GS",
"size": "1G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers",
"priceCurrency": "USD",
"price": "8.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-mixed-thca-hemp-flowers#variant-rk-mthca35g",
"name": "Ripkitty Mixed THCA Hemp Flowers - 3.5G",
"sku": "RK-MTHCA35G",
"size": "3.5G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers",
"priceCurrency": "USD",
"price": "17.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-mixed-thca-hemp-flowers#variant-rk-mthca7g",
"name": "Ripkitty Mixed THCA Hemp Flowers - 7G",
"sku": "RK-MTHCA7G",
"size": "7G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers",
"priceCurrency": "USD",
"price": "29.99",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@id": "https://budsgrowery.com/#seller"
}
}
}
]
}
]
}
{
"@context": "https://schema.org",
"@type": "FAQPage",
"@id": "https://budsgrowery.com/products/ripkitty-mixed-thca-hemp-flowers#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What is Mixed THCA Flower?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A rotating blend of high-grade, THCA-rich nug flower curated as mixed strains, with no shake or trim and strong lab-documented potency."
}
},
{
"@type": "Question",
"name": "How strong is this batch?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The visible cannabinoid table states 24.0% THCA, 0.795% CBGA, and 25.03% total cannabinoids detected."
}
},
{
"@type": "Question",
"name": "Is this compliant hemp?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The visible quality-control panel states Delta-9 THC is below 0.3%."
}
},
{
"@type": "Question",
"name": "What does the flower look like?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The visual profile describes nug-only flower with deep greens, purples, orange pistils, and dense trichome-heavy structure."
}
},
{
"@type": "Question",
"name": "Is there a lab report?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The product links directly to a downloadable COA PDF."
}
},
{
"@type": "Question",
"name": "What sizes are available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The supplied catalog data lists 1G, 3.5G, and 7G variants, all currently marked InStock."
}
}
]
}