
/* Podcast Video Embed Styles */
.relative.pb-\[56\.25\%\] {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.relative.pb-\[56\.25\%\] iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Product Page Styles */
.overflow-x-auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.min-w-full {
    min-width: 100%;
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
    border-color: #e5e7eb;
}
.product-page {
    padding-top: 70px;
}

.product-hero {
    background: linear-gradient(135deg, #f36f21 0%, #f6d000 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.product-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-content {
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: #f36f21;
    margin-bottom: 15px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.material-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #f36f21;
}

.material-card h2 {
    color: #333;
    margin-bottom: 15px;
}

.material-card ul {
    padding-left: 20px;
}

.material-card li {
    margin-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f36f21;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2rem;
    }
    
    .features-grid, .materials-grid {
        grid-template-columns: 1fr;
    }
}