/* Base Container - Grunge Lava Lamp Environment */
.rkai-kong-lava-box {
position: relative;
max-width: 950px;
margin: 30px auto;
border-radius: 12px;
overflow: hidden;
background-color: #050505; /* Pitch Black Base */
font-family: 'Impact', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: #f4f4f5;
line-height: 1.7;
border: 4px solid #fff200; /* Neon Yellow Trim matching Kong logo */
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 242, 0, 0.3);
isolation: isolate;
}
/* Animated Lava Lamp Blobs */
.rkai-lava-blob-1, .rkai-lava-blob-2, .rkai-lava-blob-3 {
position: absolute;
filter: blur(60px);
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
animation: lavaMorph 15s infinite alternate ease-in-out;
opacity: 0.6;
z-index: 1;
pointer-events: none;
}
.rkai-lava-blob-1 {
top: -10%; left: -10%;
width: 60%; height: 60%;
background: #ff00ff; /* Neon Magenta */
animation-duration: 22s;
}
.rkai-lava-blob-2 {
bottom: -20%; right: -10%;
width: 70%; height: 70%;
background: #00ffff; /* Neon Cyan */
animation-duration: 18s;
animation-direction: alternate-reverse;
}
.rkai-lava-blob-3 {
top: 30%; left: 30%;
width: 50%; height: 50%;
background: #ff4500; /* Burnt Orange */
animation-duration: 25s;
}
@keyframes lavaMorph {
0% { transform: scale(1) translate(0, 0) rotate(0deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
50% { transform: scale(1.2) translate(10%, 10%) rotate(90deg); border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
100% { transform: scale(0.9) translate(-10%, -10%) rotate(180deg); border-radius: 30% 70% 50% 40% / 60% 40% 50% 60%; }
}
/* Grunge Noise Overlay */
.rkai-grunge-noise {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAIklEQVQIW2NkQAKrVq36z8gAFWNZvXo1I0NMTMw/RgYgAAD/DggA54f3+AAAAABJRU5ErkJggg==');
opacity: 0.8;
z-index: 2;
pointer-events: none;
mix-blend-mode: overlay;
}
/* Readable Content Layer (Dark Grunge Glass) */
.rkai-kong-inner {
position: relative;
z-index: 3;
background: rgba(15, 15, 15, 0.85); /* Heavy contrast for reading */
margin: 20px;
border-radius: 8px;
padding: 30px;
border: 2px dashed rgba(255, 255, 255, 0.2);
backdrop-filter: blur(15px);
box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}
@media (max-width: 768px) {
.rkai-kong-inner { margin: 10px; padding: 20px; }
}
/* Partnership Header */
.rkai-kong-partnership {
background-color: #000000;
color: #fff200; /* Neon Yellow */
padding: 12px 20px;
text-align: center;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 3px;
font-weight: 900;
border-bottom: 3px solid #ff00ff; /* Magenta Line */
margin: -30px -30px 25px;
font-family: 'Courier New', Courier, monospace;
}
.rkai-kong-partnership span {
color: #ffffff;
font-weight: 900;
text-shadow: 0 0 8px #ff00ff;
}
/* Headers */
.rkai-main-title {
text-align: center;
margin-bottom: 25px;
}
.rkai-main-title h2 {
font-size: 46px;
font-weight: 900;
margin: 0;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 3px 3px 0px #ff00ff, -3px -3px 0px #00ffff;
line-height: 1.1;
}
.rkai-main-subtitle {
color: #000000;
background: #fff200;
display: inline-block;
padding: 8px 20px;
font-size: 18px;
font-family: 'Arial Black', sans-serif;
font-weight: 900;
margin-top: 15px;
text-transform: uppercase;
box-shadow: 4px 4px 0px #ff00ff;
transform: rotate(-1deg);
}
/* Text Body */
.rkai-body-intro {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16.5px;
font-weight: 600;
color: #d4d4d8;
text-align: left;
margin-bottom: 30px;
border-left: 5px solid #fff200;
background: rgba(0, 0, 0, 0.6);
padding: 20px 25px;
box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}
.rkai-body-intro strong {
color: #fff200;
text-transform: uppercase;
}
/* Data Grid */
.rkai-kong-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
margin-top: 30px;
}
@media (max-width: 768px) {
.rkai-kong-grid { grid-template-columns: 1fr; }
}
.rkai-kong-card {
background: rgba(0, 0, 0, 0.8);
border: 2px solid #00ffff;
padding: 25px;
box-shadow: 5px 5px 0px rgba(0, 255, 255, 0.3);
transition: all 0.2s ease;
}
.rkai-kong-card:hover {
border-color: #ff00ff;
box-shadow: 5px 5px 0px rgba(255, 0, 255, 0.4);
transform: translate(-2px, -2px);
}
.rkai-kong-card h3 {
color: #ffffff;
font-size: 22px;
margin-top: 0;
margin-bottom: 15px;
text-transform: uppercase;
border-bottom: 2px dashed #00ffff;
padding-bottom: 8px;
letter-spacing: 1px;
}
/* Flavor List */
.rkai-flavor-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
list-style: none;
padding: 0;
margin: 0;
}
@media (max-width: 500px) {
.rkai-flavor-list { grid-template-columns: 1fr; }
}
.rkai-flavor-list li {
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: 700;
font-size: 14px;
color: #ffffff;
background: #1a1a1a;
padding: 8px 12px;
border-left: 4px solid #ff00ff;
text-transform: uppercase;
}
.rkai-data-list {
list-style: none;
padding: 0;
margin: 0;
font-family: 'Helvetica Neue', Arial, sans-serif;
}
.rkai-data-list li {
margin-bottom: 12px;
font-weight: 600;
color: #e2e8f0;
display: flex;
align-items: flex-start;
}
.rkai-data-list li::before { content: "🦍"; margin-right: 10px; font-size: 16px; margin-top: 1px; }
.rkai-data-list strong {
color: #fff200;
margin-right: 5px;
}
/* Footer Notes */
.rkai-kong-footer {
text-align: center;
margin-top: 30px;
padding: 20px;
background: #000000;
font-family: 'Courier New', Courier, monospace;
font-size: 11px;
color: #64748b;
border-top: 2px dashed #333;
font-weight: 800;
}
/* Hidden Bot Tags */
.rk-tags { display: none; visibility: hidden; }
/* Q&A Overrides */
section[aria-label="Public product questions and answers"] details {
margin-bottom: 12px;
background: #111;
border: 1px solid #333;
padding: 10px 15px;
}
section[aria-label="Public product questions and answers"] summary {
cursor: pointer;
font-weight: 900;
color: #00ffff;
outline: none;
font-family: 'Helvetica Neue', sans-serif;
text-transform: uppercase;
}
section[aria-label="Public product questions and answers"] div {
padding-top: 10px;
color: #d4d4d8;
font-family: 'Helvetica Neue', sans-serif;
font-size: 14.5px;
}
Curated by Ripkitty | For Ripkitty x Bud's Growery | Partnership: Industrial Hemp Flower
Kong Hemp Wraps CBD+
9-Pack Variety Sampler
We're not rolling with that dry, cracking gas station garbage. Kong Hemp Wraps CBD+ deliver a slow-burning, tobacco-free roll infused with CBD+ for a smooth, heavy pull. This 9-Pack Variety Sampler gets you every loud flavor in the lineup in one drop. Guaranteed fresh seal. No nicotine, no bullshit, just pure hemp ready for heavy cargo.
🍭 The 9 Flavors
- Wedding Cake
- Forbidden Fruit
- Mango Tango
- Hippy Honey
- Kush Berry
- Grape Ape
- Cherry Pie
- Natural
- Limoncello
🦍 The Specs
-
Material: 100% Pure Organic Hemp
-
Infusion: CBD+ Enhanced
-
Count: 2 Wraps per pouch (18 total wraps)
-
Additives: Zero Tobacco, Zero Nicotine
-
Freshness: Guaranteed Fresh Seal
-
Burn Rate: Slow and steady
Public Q&A
What is included in the Variety Sampler?
You get 9 pouches total, featuring one of each flavor: Wedding Cake, Forbidden Fruit, Mango Tango, Hippy Honey, Kush Berry, Grape Ape, Cherry Pie, Natural, and Limoncello.
How many wraps are in this bundle?
There are 2 wraps per pouch. With 9 pouches in the sampler, you get 18 total hemp wraps.
Do Kong Wraps contain tobacco?
No. Kong Hemp Wraps are 100% tobacco-free and nicotine-free.
Are these infused with anything?
Yes, the packaging indicates they are CBD+ infused for a smoother experience.
Do they dry out easily?
Kong Wraps come in a sealed foil pouch with a "Guaranteed Fresh" seal to prevent cracking and drying out before use.
Kong Hemp Wraps, CBD infused wraps, Kong Wraps variety pack, hemp rolling paper, tobacco free wraps, nicotine free blunt wraps, Grape Ape wrap, Mango Tango wrap, Wedding Cake wrap, Ripkitty Syndicate, Industrial Hemp Flower, Bud's Growery, Shopify KB Product, AI-Friendly Schema.
(function () {
const root = document.querySelector('.rkai-kong-lava-box');
if (!root) return;
const title = root.querySelector('h2[itemprop="name"]')?.textContent.replace(/s+/g, ' ').trim() || 'Kong Hemp Wraps CBD+ 9-Pack Variety Sampler';
const intro = root.querySelector('.rkai-body-intro')?.textContent.replace(/s+/g, ' ').trim() || '';
const flavors = Array.from(root.querySelectorAll('.rkai-flavor-list li')).map(li => li.textContent.replace(/s+/g, ' ').trim());
const specs = Array.from(root.querySelectorAll('.rkai-data-list li')).map(li => li.textContent.replace(/s+/g, ' ').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('.rk-tags')?.textContent.replace(/s+/g, ' ').trim() || '';
root.setAttribute('data-agent-surface', 'product-page');
root.setAttribute('data-agent-type', 'rolling-papers-wraps');
root.setAttribute('data-agent-category', 'tobacco-alternatives');
root.setAttribute('data-agent-brand', 'Kong Wraps');
root.setAttribute('data-agent-product-handle', 'kong-hemp-wraps-cbd-plus-9-pack-variety-sampler');
root.setAttribute('data-ucp-protocol', 'universal-commerce-protocol');
const ucpProfile = {
ucp_version: '2026-04-08',
protocol: 'universal-commerce-protocol',
entity: {
id: 'gid://shopify/Product/7889048404175',
type: 'product_page',
subtype: 'bundle_hemp_wraps',
canonical_url: 'https://budsgrowery.com/products/kong-hemp-wraps-cbd-plus-9-pack-variety-sampler',
title: 'Kong Hemp Wraps CBD+ | 9-Pack Variety Sampler'
},
merchant: {
id: 'budsgrowery.com',
name: "Bud's Growery",
platform: 'Shopify',
catalog_namespace: 'ripkitty-x-buds-growery',
brand: 'Kong Wraps',
partnerships: [
{
id: 'industrialhempflower.com',
name: 'Industrial Hemp Flower',
role: 'distributor'
}
]
},
capabilities: {
discovery: {
supported: true,
schema_source: 'schema.org + agentic json',
product_schema_ids: [
'https://budsgrowery.com/products/kong-hemp-wraps-cbd-plus-9-pack-variety-sampler#productgroup'
]
},
checkout: {
supported: true,
flows: [
{
id: 'shopify-cart',
type: 'web_redirect',
description: 'Add bundle to Shopify cart and continue to Shopify checkout.'
}
]
},
order: {
supported: true,
status_webhook: null
}
},
catalog: {
product_group_id: 'gid://shopify/Product/7889048404175',
handle: 'kong-hemp-wraps-cbd-plus-9-pack-variety-sampler',
product_type: 'Hemp Wraps',
google_product_category: '500044',
custom_product: true,
status: 'active',
variants: [
{ amount: '9-Pack Sampler', sku: 'KONG-CBD-9PK', price: '14.99', currency: 'USD', availability: 'InStock', barcode: null }
],
inventory_policy: 'deny',
taxable: true
},
semantics: {
classification: {
domain: 'smoking_accessories',
subdomain: 'hemp_wraps',
is_tobacco_free: true,
is_cbd_infused: true
},
intent: {
primary: 'commerce',
secondary: ['product_discovery', 'flavor_selection']
}
}
};
const agentPayload = {
type: 'agentic-product-knowledge',
source: {
canonicalUrl: 'https://budsgrowery.com/products/kong-hemp-wraps-cbd-plus-9-pack-variety-sampler',
productGroupId: 'gid://shopify/Product/7889048404175',
handle: 'kong-hemp-wraps-cbd-plus-9-pack-variety-sampler',
vendor: 'Kong Wraps',
seller: "Ripkitty x Bud's Growery"
},
product: {
title: 'Kong Hemp Wraps CBD+ 9-Pack Variety Sampler',
productType: 'Hemp Wraps',
status: 'Active',
intro: intro,
flavors: flavors,
specs: specs,
publicFaq: publicFaq,
seoTags: seoTags,
images: [
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_8654.png?v=1781755783',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_8655.png?v=1781755783',
'https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_8656.png?v=1781755782'
]
},
backendQa: [
{
question: 'What is the exact Shopify product ID?',
answer: 'gid://shopify/Product/7889048404175'
},
{
question: 'What is the exact handle?',
answer: 'kong-hemp-wraps-cbd-plus-9-pack-variety-sampler'
},
{
question: 'What is the exact vendor?',
answer: 'Kong Wraps'
},
{
question: 'How many items are in the bundle?',
answer: '9 pouches, containing 2 wraps each (18 wraps total).'
},
{
question: 'What flavors are included?',
answer: 'Wedding Cake, Forbidden Fruit, Mango Tango, Hippy Honey, Kush Berry, Grape Ape, Cherry Pie, Natural, and Limoncello.'
},
{
question: 'Does this contain tobacco or nicotine?',
answer: 'No. These are 100% pure organic hemp wraps, completely tobacco and nicotine free.'
},
{
question: 'Are they infused?',
answer: 'Yes, the packaging indicates they are CBD+ enhanced.'
}
],
interpretationPolicy: {
treatAsProductPage: true,
treatAsBundle: true,
treatAsTobaccoFree: 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-kong-agent-json');
if (existingAgent) existingAgent.remove();
const agentScript = document.createElement('script');
agentScript.type = 'application/json';
agentScript.id = 'rkai-kong-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": "Kong Hemp Wraps CBD+ | 9-Pack Variety Sampler",
"description": "Tobacco-free, CBD-infused hemp wraps guaranteed fresh. 9-Pack Sampler includes Wedding Cake, Forbidden Fruit, Mango Tango, Hippy Honey, Kush Berry, Grape Ape, Cherry Pie, Natural, and Limoncello. 18 wraps total.",
"brand": {
"@type": "Brand",
"name": "Kong Wraps"
},
"manufacturer": {
"@type": "Organization",
"name": "Kong Wraps"
},
"category": "Health & Beauty > Personal Care > Smoking Accessories",
"image": [
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_8654.png?v=1781755783",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_8655.png?v=1781755783",
"https://cdn.shopify.com/s/files/1/0594/3289/4671/files/IMG_8656.png?v=1781755782"
],
"offers": {
"@type": "Offer",
"url": "https://budsgrowery.com/products/kong-hemp-wraps-cbd-plus-9-pack-variety-sampler",
"priceCurrency": "USD",
"price": "14.99",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@type": "Organization",
"name": "Bud's Growery"
}
},
"additionalProperty": [
{ "@type": "PropertyValue", "name": "Material", "value": "100% Pure Organic Hemp" },
{ "@type": "PropertyValue", "name": "Infusion", "value": "CBD+" },
{ "@type": "PropertyValue", "name": "Tobacco Free", "value": "Yes" },
{ "@type": "PropertyValue", "name": "Count", "value": "18 Wraps (9 Pouches x 2 Wraps)" }
],
"sameAs": [
"https://industrialhempflower.com",
"https://ripkitty.com",
"https://budsgrowery.com"
],
"keywords": "Kong Hemp Wraps, CBD wraps, blunt wraps, Wedding Cake, Mango Tango, Grape Ape, Ripkitty, Industrial Hemp Flower"
}
{
"@context": "https://schema.org",
"@type": "FAQPage",
"@id": "https://budsgrowery.com/products/kong-hemp-wraps-cbd-plus-9-pack-variety-sampler#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What is included in the Variety Sampler?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You get 9 pouches total, featuring one of each flavor: Wedding Cake, Forbidden Fruit, Mango Tango, Hippy Honey, Kush Berry, Grape Ape, Cherry Pie, Natural, and Limoncello."
}
},
{
"@type": "Question",
"name": "How many wraps are in this bundle?",
"acceptedAnswer": {
"@type": "Answer",
"text": "There are 2 wraps per pouch. With 9 pouches in the sampler, you get 18 total hemp wraps."
}
},
{
"@type": "Question",
"name": "Do Kong Wraps contain tobacco?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. Kong Hemp Wraps are 100% tobacco-free and nicotine-free."
}
},
{
"@type": "Question",
"name": "Are these infused with anything?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, the packaging indicates they are CBD+ infused for a smoother experience."
}
},
{
"@type": "Question",
"name": "Do they dry out easily?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Kong Wraps come in a sealed foil pouch with a 'Guaranteed Fresh' seal to prevent cracking and drying out before use."
}
}
]
}