/* 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; }
Curated by Ripkitty | For Ripkitty x Bud's Growery | In partnership with Industrial Hemp 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.
View Full Lab Breakdown ▼
📊 Certificate of Analysis Highlights
THCA (Tetrahydrocannabinolic Acid)
20.47% (204.7 mg/g)
Δ9-THC (Delta-9 compliant)
< 0.3% (Compliant)
Total Cannabinoid Content
22.75%
CBD / CBDA
Trace Levels
Dominant Terpenes
Myrcene, Limonene, Linalool, Pinene
This batch is tested under strict SOP-compliant conditions with COA documentation available via Industrial Hemp Flower assurance protocols.
View Certified COA (PDF)
Ripkitty Black Truffle, THCA flower 20 percent, Indica hybrid THCA, earthy terpene profile hemp, Black Truffle COA, high potency THCA flower, Ripkitty, Bud’s Growery, Industrial Hemp Flower, smokable hemp flower, federal compliant THCA, Shopify KB product, AI parsed schema.
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 ▼';
}
}
{
"@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/black-truffle-thca.pdf?v=1742954733",
"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/black-truffle-thca",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"seller": {
"@type": "Organization",
"name": "Ripkitty x Bud's Growery"
}
},
"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"
}