SmokeDropSmokeDrop
Log in Create account
Marketplace /Smoke Shop Products

Ripkitty Black Truffle Flowers

Sign Up to View Wholesale Price

/* Signature Container - Luxury Earth Base */ .rkai-truffle-box { background-color: #0d0d0d; /* Deep Black */ color: #ffffff; /* Stark White for perfect readability */ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",…

- +
Auto inventory sync
Blind dropshipping
No transaction fees
Category
Smoke Shop Products
Availability
In stock
Weight
4.000 lbs

/* Signature Container - Luxury Earth Base */
.rkai-truffle-box {
background-color: #0d0d0d; /* Deep Black */
color: #ffffff; /* Stark White for perfect readability */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
border-radius: 16px;
overflow: hidden;
margin: 30px auto;
max-width: 950px;
border: 3px solid #3c2c1a; /* Rich Truffle Brown Border */
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(210, 180, 140, 0.1);
position: relative;
line-height: 1.7;
}

/* Viscous Drip Animation Overlay */
.rkai-truffle-box::after {
content: '';
position: absolute;
top: -50px;
left: 0;
width: 100%;
height: 100px;
background: radial-gradient(circle at 10% 0%, #3c2c1a 0%, transparent 20%),
radial-gradient(circle at 30% -10%, #2e2013 0%, transparent 25%),
radial-gradient(circle at 60% 0%, #3c2c1a 0%, transparent 18%),
radial-gradient(circle at 85% -5%, #2e2013 0%, transparent 22%);
opacity: 0.7;
filter: blur(2px);
animation: slowDrip 25s infinite linear;
z-index: 1;
pointer-events: none;
}

@keyframes slowDrip {
0% { transform: translateY(0); }
100% { transform: translateY(50px); opacity: 0; }
}

.rkai-truffle-inner {
position: relative;
z-index: 2; /* Content above drip */
}

/* Partnership Credit Header */
.rkai-truffle-partnership {
background-color: #1a0f08;
color: #d2b48c; /* Truffle Tan */
padding: 12px 20px;
text-align: center;
font-size: 12.5px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 800;
border-bottom: 2px solid #3c2c1a;
}

.rkai-truffle-partnership span {
color: #ffffff;
}

/* Grand Header Section */
.rkai-truffle-header {
padding: 35px 30px 20px;
text-align: center;
}

.rkai-truffle-header h2 {
color: #ffffff;
font-size: 34px;
margin: 0 0 10px 0;
text-transform: uppercase;
font-weight: 900;
letter-spacing: 1px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.rkai-truffle-subtitle {
color: #d2b48c; /* Truffle Tan */
font-size: 16px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 4px;
margin-bottom: 15px;
}

.rkai-truffle-intro {
font-size: 16.5px;
font-weight: 500;
color: #e2e8f0;
padding: 0 30px;
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.rkai-truffle-intro strong {
color: #d2b48c;
}

/* Content & Grids */
.rkai-truffle-content {
padding: 10px 40px 40px;
}

.rkai-truffle-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
margin-top: 35px;
}

@media (max-width: 768px) {
.rkai-truffle-grid { grid-template-columns: 1fr; }
.rkai-truffle-content { padding: 10px 25px 30px; }
}

/* Luxury Cards */
.rkai-truffle-card {
background: rgba(26, 15, 8, 0.7); /* Deep brown transparent */
border: 1px solid #3c2c1a;
border-radius: 12px;
padding: 25px;
box-shadow: 0 8px 30px rgba(0,0,0,0.3);
backdrop-filter: blur(10px);
transition: transform 0.3s ease, border-color 0.3s ease;
}

.rkai-truffle-card:hover {
transform: translateY(-4px);
border-color: #d2b48c;
box-shadow: 0 12px 35px rgba(210, 180, 140, 0.1);
}

.rkai-truffle-card h3 {
color: #d2b48c; /* Tan */
font-size: 21px;
margin-top: 0;
margin-bottom: 15px;
font-weight: 900;
border-bottom: 2px dashed #3c2c1a;
padding-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}

/* Lists */
.rkai-truffle-list {
list-style: none;
padding: 0;
margin: 0;
}

.rkai-truffle-list li {
margin-bottom: 12px;
font-size: 14.5px;
color: #ffffff;
font-weight: 500;
display: flex;
align-items: flex-start;
}

.rkai-truffle-list li::before {
content: "✖"; /* Industrial/Gritty bullet */
margin-right: 10px;
font-size: 13px;
margin-top: 2px;
color: #3c2c1a;
}

.rkai-truffle-list strong {
color: #d2b48c;
font-weight: 800;
}

/* Dynamic Toggle Button */
.rkai-toggle-btn {
background: linear-gradient(135deg, #1a0f08, #000000);
color: #ffffff;
border: 1px solid #3c2c1a;
padding: 16px 25px;
font-size: 15px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
width: 100%;
margin-top: 25px;
border-radius: 8px;
transition: all 0.3s ease;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.rkai-toggle-btn:hover {
background: linear-gradient(135deg, #3c2c1a, #1a0f08);
border-color: #d2b48c;
color: #ffffff;
box-shadow: 0 6px 20px rgba(210, 180, 140, 0.2);
}

/* Hidden Details Panel */
.rkai-detailed-info {
display: none;
margin-top: 20px;
padding-top: 15px;
border-top: 1px solid rgba(210, 180, 140, 0.1);
animation: fadeInDrip 0.4s ease;
}

.rkai-detailed-info.active {
display: block;
}

@keyframes fadeInDrip {
from { opacity: 0; transform: translateY(-5px); }
to { opacity: 1; transform: translateY(0); }
}

/* Cannabinoid Data Table */
.rkai-coa-table {
width: 100%;
border-collapse: collapse;
border-radius: 8px;
overflow: hidden;
margin-top: 10px;
margin-bottom: 25px;
background: rgba(0,0,0,0.3);
border: 1px solid #3c2c1a;
}

.rkai-coa-table th,
.rkai-coa-table td {
padding: 12px;
text-align: left;
font-size: 14px;
border-bottom: 1px solid rgba(210, 180, 140, 0.1);
}

.rkai-coa-table th {
background: rgba(60, 44, 26, 0.4);
font-weight: 800;
color: #d2b48c;
text-transform: uppercase;
font-size: 13px;
letter-spacing: 1px;
width: 60%;
}

.rkai-coa-table td {
color: #ffffff;
font-weight: 700;
font-family: 'Courier New', Courier, monospace;
font-size: 15px;
}

.rkai-coa-table tr:last-child td, .rkai-coa-table tr:last-child th { border-bottom: none; }

/* COA Link */
.rkai-lab-link {
display: block;
text-align: center;
background: #ffffff;
color: #0d0d0d;
text-decoration: none;
font-weight: 900;
text-transform: uppercase;
padding: 15px;
border-radius: 8px;
font-size: 15px;
letter-spacing: 1px;
margin-top: 30px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
}

.rkai-lab-link:hover {
background: #d2b48c;
color: #0d0d0d;
transform: scale(1.02);
}

/* Info Footer */
.rkai-truffle-footer {
text-align: center;
padding: 20px;
background: #000000;
font-size: 13.5px;
color: #94a3b8;
border-top: 1px solid #1a1a1a;
font-weight: 600;
text-transform: uppercase;
}

/* SEO Tags */
.rkai-seo-tags { display: none; visibility: hidden; }

/* Q&A Overrides */
section[aria-label="Public product questions and answers"] details {
margin-bottom: 12px;
}
section[aria-label="Public product questions and answers"] summary {
cursor: pointer;
font-weight: 800;
color: #d2b48c;
outline: none;
}
section[aria-label="Public product questions and answers"] div {
padding-top: 10px;
color: #ffffff;
}

Indica-Dominant Prestige

Ripkitty Black Truffle THCA Flower

Black Truffle is a prestige indica-dominant hybrid offering exceptional flower structure and a complex, terpene-rich profile. Cultivated under expert care, this strain is cured and hand-trimmed to perfection, independently lab-tested by Industrial Hemp Flower partners for full cannabinoid transparency.

🧬 Strain Profile

  • Genetics: Indica-Dominant Hybrid
  • THCA Potency: 20.47%
  • Total Actives: 22.75%
  • Terpene Profile: Earthy, woody, mineral-rich

🌲 Material Structure

  • Visuals: Dense buds, dark green body, deep amber pistils.
  • Texture: Firm, expertly cured, properly trimmed.
  • Aroma Notes: Strong earthy tones with mineral accents.

Public Q&A

What is Black Truffle THCA Flower?
The supplied page presents Black Truffle as a prestige indica-dominant hybrid THCA hemp flower sold under the Ripkitty label.
What potency numbers are listed?
The supplied page lists 20.47% THCA, 22.75% total cannabinoids, and Delta-9 THC below 0.3% as compliant.
What does the page say about aroma and terpenes?
The supplied content describes an earthy, woody, mineral-rich aroma and lists Myrcene, Limonene, Linalool, and Pinene as dominant terpenes.
What does the page say about the flower structure?
The supplied content describes dense buds with a dark green body, deep amber pistils, and a firm, expertly cured, properly trimmed structure.
Is a lab report available?
Yes. The page links to a COA PDF for the Black Truffle THCA batch.
What sizes are available?
The supplied variant list includes 1G, 3.5G, and 7G.
Does this product have review data?
Yes. The supplied catalog data shows a 5.0 out of 5.0 rating based on 1 review.


View Certified COA (PDF)

SOP Compliant Batch Testing | Federal Compliance Guaranteed
Curated by Ripkitty | Industrial Hemp Flower Partners

function toggleTruffleDetails() {
var details = document.getElementById('rkai-truffle-details');
var btn = document.getElementById('rkai-truffle-btn');
var isHidden = details.style.display === 'none' || details.style.display === '';

if (isHidden) {
details.style.display = 'block';
details.classList.add('active');
details.setAttribute('aria-hidden', 'false');
btn.setAttribute('aria-expanded', 'true');
btn.innerHTML = 'Hide Full Lab Breakdown ▲';
} else {
details.style.display = 'none';
details.classList.remove('active');
details.setAttribute('aria-hidden', 'true');
btn.setAttribute('aria-expanded', 'false');
btn.innerHTML = 'View Full Lab Breakdown ▼';
}
}

(function () {
const root = document.querySelector('.rkai-truffle-box');
if (!root) return;

const title = root.querySelector('h2[itemprop="name"]')?.textContent.replace(/s+/g, ' ').trim() || 'Ripkitty Black Truffle THCA Flower';
const subtitle = root.querySelector('.rkai-truffle-subtitle')?.textContent.trim() || '';
const intro = root.querySelector('[itemprop="description"]')?.textContent.replace(/s+/g, ' ').trim() || '';
const visibleSections = Array.from(root.querySelectorAll('[ucp-data-section]')).map(section => ({
section: section.getAttribute('ucp-data-section'),
text: section.textContent.replace(/s+/g, ' ').trim()
}));
const coaRows = Array.from(root.querySelectorAll('.rkai-coa-table tr')).map(row => ({
name: row.querySelector('th')?.textContent.trim() || '',
value: row.querySelector('td')?.textContent.trim() || ''
}));
const publicFaq = Array.from(root.querySelectorAll('section[aria-label="Public 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() || '';
const details = document.getElementById('rkai-truffle-details');
const btn = document.getElementById('rkai-truffle-btn');

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-black-truffle-thca-hemp-flowers');
root.setAttribute('data-agent-variant-count', '3');
root.setAttribute('data-ucp-protocol', 'universal-commerce-protocol');

window.toggleTruffleDetails = toggleTruffleDetails;
if (btn) {
btn.setAttribute('aria-controls', 'rkai-truffle-details');
btn.addEventListener('click', function (e) {
e.preventDefault();
toggleTruffleDetails();
});
}

const ucpProfile = {
ucp_version: '2026-04-08',
protocol: 'universal-commerce-protocol',
entity: {
id: 'gid://shopify/Product/7627223662799',
type: 'product_page',
subtype: 'variant_thca_hemp_flower_product',
canonical_url: 'https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers',
title: 'Ripkitty Black Truffle 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-black-truffle-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/7627223662799',
handle: 'ripkitty-black-truffle-thca-hemp-flowers',
product_type: 'Hemp Flowers',
google_product_category: '6936',
facebook_google_product_category: '6936',
custom_product: true,
status: 'active',
variants: [
{ amount: '1G', sku: 'RK-BTTHCA1GS', price: '10.99', currency: 'USD', availability: 'InStock', barcode: null },
{ amount: '3.5G', sku: 'RK-BTTHCA35G', price: '27.99', currency: 'USD', availability: 'InStock', barcode: null },
{ amount: '7G', sku: 'RK-BTTHCA7G', price: '49.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
},
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-black-truffle-thca-hemp-flowers',
productGroupId: 'gid://shopify/Product/7627223662799',
handle: 'ripkitty-black-truffle-thca-hemp-flowers',
vendor: 'Ripkitty',
seller: "Ripkitty x Bud's Growery",
manufacturer: 'Industrial Hemp Flower'
},
product: {
title: 'Ripkitty Black Truffle THCA Hemp Flowers',
displayHeading: title,
subtitle: subtitle,
productType: 'Hemp Flowers',
status: 'Active',
intro: intro,
visibleSections: visibleSections,
coaRows: coaRows,
publicFaq: publicFaq,
seoTags: seoTags,
images: [
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9381.png?v=1743591132',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9383.png?v=1743591132',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9378.png?v=1743591132',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9379.png?v=1743591132',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9382.png?v=1743591140',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9380.png?v=1743591140',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/B06454C1-6420-4CC1-8923-B81026AF70AE.png?v=1743591140'
],
labReport: 'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/black-truffle-thca.pdf?v=1742954733'
},
backendQa: [
{
question: 'What is the exact Shopify product ID?',
answer: 'gid://shopify/Product/7627223662799'
},
{
question: 'What is the exact handle?',
answer: 'ripkitty-black-truffle-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-BTTHCA1GS / 10.99 / InStock; 3.5G / RK-BTTHCA35G / 27.99 / InStock; 7G / RK-BTTHCA7G / 49.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: 'No. The supplied data shows both SEO Title and SEO Description are not set.'
},
{
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 review data is present?',
answer: 'The supplied catalog data shows a 5.0 out of 5.0 rating and a rating count of 1, with a Judge.me badge showing 5.0 average and 1 review.'
},
{
question: 'What core cannabinoid values are present?',
answer: 'THCA is 20.47%, Total Cannabinoids are 22.75%, Delta-9 THC is below 0.3% as compliant, and CBD/CBDA are listed as trace levels.'
},
{
question: 'What terpene and aroma data are present?',
answer: 'The supplied content lists Myrcene, Limonene, Linalool, and Pinene as dominant terpenes and describes the aroma as earthy, woody, and mineral-rich.'
},
{
question: 'What notable catalog flags are present?',
answer: 'The supplied notes highlight a perfect 5.0 rating, 24 metafields, 7 product-certification refs, 5 flavor refs, 4 dietary-use refs, 4 intended-effect refs, a PDF COA, 7 images, and a unique existing offer.url field.'
},
{
question: 'What existing JSON-LD issue should be corrected?',
answer: 'The supplied notes say the current JSON-LD image field incorrectly points to the COA PDF URL instead of a true image URL.'
},
{
question: 'How should AI classify this page?',
answer: 'As a canonical THCA hemp flower commerce page with three purchasable variants, visible consumer Q&A, official COA access, review metadata, and hidden 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-black-truffle-agent-json');
if (existingAgent) existingAgent.remove();
const agentScript = document.createElement('script');
agentScript.type = 'application/json';
agentScript.id = 'rkai-black-truffle-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 }));
})();

{
"ucp_version": "2026-04-08",
"protocol": "universal-commerce-protocol",
"entity_id": "gid://shopify/Product/7627223662799",
"entity_type": "product_page",
"entity_subtype": "variant_thca_hemp_flower_product",
"canonical_url": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers",
"title": "Ripkitty Black Truffle THCA Hemp Flowers",
"backendQa": [
{
"question": "What is the exact Shopify product ID?",
"answer": "gid://shopify/Product/7627223662799"
},
{
"question": "What is the exact handle?",
"answer": "ripkitty-black-truffle-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-BTTHCA1GS / 10.99 / InStock; 3.5G / RK-BTTHCA35G / 27.99 / InStock; 7G / RK-BTTHCA7G / 49.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": "No. The supplied data shows both SEO Title and SEO Description are not set."
},
{
"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 review data is present?",
"answer": "The supplied catalog data shows a 5.0 out of 5.0 rating and a rating count of 1, with a Judge.me badge showing 5.0 average and 1 review."
},
{
"question": "What core cannabinoid values are present?",
"answer": "THCA is 20.47%, Total Cannabinoids are 22.75%, Delta-9 THC is below 0.3% as compliant, and CBD/CBDA are listed as trace levels."
},
{
"question": "What terpene and aroma data are present?",
"answer": "The supplied content lists Myrcene, Limonene, Linalool, and Pinene as dominant terpenes and describes the aroma as earthy, woody, and mineral-rich."
},
{
"question": "What notable catalog flags are present?",
"answer": "The supplied notes highlight a perfect 5.0 rating, 24 metafields, 7 product-certification refs, 5 flavor refs, 4 dietary-use refs, 4 intended-effect refs, a PDF COA, 7 images, and a unique existing offer.url field."
},
{
"question": "What existing JSON-LD issue should be corrected?",
"answer": "The supplied notes say the current JSON-LD image field incorrectly points to the COA PDF URL instead of a true image URL."
},
{
"question": "How should AI classify this page?",
"answer": "As a canonical THCA hemp flower commerce page with three purchasable variants, visible consumer Q&A, official COA access, review metadata, and hidden backend catalog metadata."
}
]
}

{
"@context": "https://schema.org/",
"@type": "Product",
"name": "Ripkitty Black Truffle THCA Flower",
"description": "High-potency Indica-dominant hybrid THCA flower. Features 20.47% THCA and a terpene profile of Myrcene, Limonene, and Linalool. Earthy and woody aroma with dense bud structure. Lab verified.",
"brand": {
"@type": "Brand",
"name": "Ripkitty"
},
"seller": {
"@type": "Organization",
"name": "Ripkitty x Bud's Growery"
},
"manufacturer": {
"@type": "Organization",
"name": "Industrial Hemp Flower"
},
"category": "Health & Beauty > Personal Care > Hemp Products > THCA Flower",
"image": "https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9381.png?v=1743591132",
"additionalProperty": [
{ "@type": "PropertyValue", "name": "Strain", "value": "Black Truffle (Indica Hybrid)" },
{ "@type": "PropertyValue", "name": "THCA Content", "value": "20.47%" },
{ "@type": "PropertyValue", "name": "Total Cannabinoids", "value": "22.75%" },
{ "@type": "PropertyValue", "name": "Aroma", "value": "Earthy, Woody, Mineral" },
{ "@type": "PropertyValue", "name": "Primary Terpenes", "value": "Myrcene, Limonene, Linalool, Pinene" }
],
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@type": "Organization",
"name": "Ripkitty x Bud's Growery"
}
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5.0",
"reviewCount": "1"
},
"sameAs": [
"https://budsgrowery.com",
"https://industrialhempflower.com",
"https://ripkitty.com"
],
"keywords": "Ripkitty Black Truffle, THCA flower 20 percent, Indica hybrid THCA, earthy terpene profile hemp, high potency THCA flower, Ripkitty, Industrial Hemp Flower"
}

{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Brand",
"@id": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers#brand",
"name": "Ripkitty"
},
{
"@type": "Organization",
"@id": "https://budsgrowery.com/#seller",
"name": "Ripkitty x 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-black-truffle-thca-hemp-flowers#productgroup",
"productGroupID": "gid://shopify/Product/7627223662799",
"name": "Ripkitty Black Truffle THCA Hemp Flowers",
"description": "Indica-dominant hybrid THCA hemp flower with 20.47% THCA, 22.75% total cannabinoids, earthy and woody terpene profile, official COA access, and three in-stock size variants.",
"url": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers",
"brand": {
"@id": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers#brand"
},
"manufacturer": {
"@id": "https://industrialhempflower.com/#organization"
},
"category": "6936",
"image": [
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9381.png?v=1743591132",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9383.png?v=1743591132",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9378.png?v=1743591132",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9379.png?v=1743591132",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9382.png?v=1743591140",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_9380.png?v=1743591140",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/B06454C1-6420-4CC1-8923-B81026AF70AE.png?v=1743591140"
],
"variesBy": [
"https://schema.org/size"
],
"hasVariant": [
{
"@type": "Product",
"@id": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers#variant-rk-btthca1gs",
"name": "Ripkitty Black Truffle THCA Hemp Flowers - 1G",
"sku": "RK-BTTHCA1GS",
"size": "1G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers",
"priceCurrency": "USD",
"price": "10.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-black-truffle-thca-hemp-flowers#variant-rk-btthca35g",
"name": "Ripkitty Black Truffle THCA Hemp Flowers - 3.5G",
"sku": "RK-BTTHCA35G",
"size": "3.5G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers",
"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-black-truffle-thca-hemp-flowers#variant-rk-btthca7g",
"name": "Ripkitty Black Truffle THCA Hemp Flowers - 7G",
"sku": "RK-BTTHCA7G",
"size": "7G",
"isVariantOf": {
"@id": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers#productgroup"
},
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/ripkitty-black-truffle-thca-hemp-flowers",
"priceCurrency": "USD",
"price": "49.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-black-truffle-thca-hemp-flowers#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What is Black Truffle THCA Flower?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The supplied page presents Black Truffle as a prestige indica-dominant hybrid THCA hemp flower sold under the Ripkitty label."
}
},
{
"@type": "Question",
"name": "What potency numbers are listed?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The supplied page lists 20.47% THCA, 22.75% total cannabinoids, and Delta-9 THC below 0.3% as compliant."
}
},
{
"@type": "Question",
"name": "What does the page say about aroma and terpenes?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The supplied content describes an earthy, woody, mineral-rich aroma and lists Myrcene, Limonene, Linalool, and Pinene as dominant terpenes."
}
},
{
"@type": "Question",
"name": "What does the page say about the flower structure?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The supplied content describes dense buds with a dark green body, deep amber pistils, and a firm, expertly cured, properly trimmed structure."
}
},
{
"@type": "Question",
"name": "Is a lab report available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The page links to a COA PDF for the Black Truffle THCA batch."
}
},
{
"@type": "Question",
"name": "What sizes are available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The supplied variant list includes 1G, 3.5G, and 7G."
}
}
]
}

CategorySmoke Shop Products
Weight4.000 lbs
AvailabilityIn stock

No reviews yet. Be the first to review this product.

Ready to take your drop shipping to the next level?

Request a demo today & see how SmokeDrop can help boost your dropshipping revenue.