/* Product Guides Section */
.product-guides-section {
    margin: 30px 0;
}

.guides-section-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 0 12px 0 !important;
    border-bottom: 2px solid #e5e7eb !important;
}

/* Product Guide Shortcode Styles - Enhanced */
.product-guide-box {
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    transition: all 0.2s ease;
}

.product-guide-box:first-child {
    margin-top: 0;
}

.product-guide-box:last-child {
    margin-bottom: 0;
}

.product-guide-box:hover {
    background: #f8fafc;
    border-color: #d1d5db;
}

.product-guide-box .guide-text {
    flex: 1;
}

.product-guide-box h3 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    line-height: 1.4;
}

.product-guide-box p {
    margin: 6px 0 0 !important;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.product-guide-box .guide-download {
    flex-shrink: 0;
}

.product-guide-box .button {
    background: #3b82f6 !important;
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    font-size: 14px !important;
    font-weight: 500 !important;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.product-guide-box .button:hover {
    background: #2563eb !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.product-guide-box .button:active {
    transform: translateY(0);
}

/* Alternative button style - more subtle */
.product-guide-box.subtle .button {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0;
}

.product-guide-box.subtle .button:hover {
    background: #e2e8f0 !important;
    color: #334155 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(71, 85, 105, 0.2);
}

@media (max-width: 640px) {
    .product-guide-box {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
    }
    
    .product-guide-box .guide-text {
        text-align: center;
    }
    
    .product-guide-box h3 {
        font-size: 15px !important;
    }
    
    .product-guide-box p {
        font-size: 13px;
    }
    
    .product-guide-box .button {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}