Product Description
<style>
/* Modern Card UI */
.sleek-product-card {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
max-width: 700px;
margin: 20px auto;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
padding: 32px;
color: #2b2b2b;
border: 1px solid #f0f0f0;
}
.intro-text {
font-size: 1rem;
line-height: 1.5;
color: #4b5563;
margin-bottom: 24px;
}
/* 2-Column Layout */
.product-details-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}
@media (max-width: 600px) {
.product-details-grid { grid-template-columns: 1fr; gap: 24px; }
}
.sleek-section h3 {
font-size: 1.1rem;
/* Black and Grey Gradient */
background: linear-gradient(90deg, #000000, #4b5563, #9ca3af);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
border-bottom: 2px solid transparent;
border-image: linear-gradient(90deg, #000000, #4b5563, #9ca3af) 1;
padding-bottom: 8px;
margin-top: 0;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.sleek-section ul { list-style: none; padding: 0; margin: 0; }
.sleek-section li {
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 12px;
padding-left: 20px;
position: relative;
color: #374151;
}
/* Alternating Black and Grey Bullets */
.sleek-section li:nth-child(3n+1)::before {
content: '•';
color: #000000; /* Black */
font-size: 1.2rem;
position: absolute;
left: 0;
top: -2px;
}
.sleek-section li:nth-child(3n+2)::before {
content: '•';
color: #4b5563; /* Dark Grey */
font-size: 1.2rem;
position: absolute;
left: 0;
top: -2px;
}
.sleek-section li:nth-child(3n)::before {
content: '•';
color: #9ca3af; /* Light Grey */
font-size: 1.2rem;
position: absolute;
left: 0;
top: -2px;
}
.specs strong {
color: #111827;
}
</style>
<div class="sleek-product-card">
<p class="intro-text"><strong>Freax Cityscape Deck</strong></p>
<p class="intro-text">Support the local Colorado skateboarding scene with the Freax Cityscape Deck. </p>
<div class="product-details-grid">
<section class="sleek-section specs">
<h3>Specs</h3>
<ul>
<li><strong>Brand:</strong> Freax Skateboards</li>
<li><strong>Model:</strong> Cityscape</li>
<li><strong>Construction:</strong> 7-Ply North American Maple</li>
</ul>
</section>
<section class="sleek-section features">
<h3>Features</h3>
<ul>
<li>Proudly designed by Freax, an independent skater-owned company out of Colorado Springs</li>
<li>Premium 7-ply maple construction for crisp pop and long-lasting durability</li>
</ul>
</section>
</div>
</div>