/* =========================================
   OUR PRODUCTS PAGE SPECIFIC CSS
   ========================================= */

.product-brand {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

/* Color Themes */
.btn-teal { background-color: #0d9488 !important; }
.btn-gold { background-color: #f59e0b !important; }

.teal-glow::before { background: linear-gradient(135deg, #0d9488, #2dd4bf) !important; }
.gold-glow::before { background: linear-gradient(135deg, #f59e0b, #fbbf24) !important; }

/* Pricing Badge for KundliApp */
.pricing-mini-card {
    background: rgba(245, 158, 11, 0.05);
    border-left: 4px solid #f59e0b;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: inline-block;
}

.old-price { text-decoration: line-through; color: #94a3b8; font-size: 14px; margin-right: 10px; }
.new-price { font-size: 24px; font-weight: 800; color: #f59e0b; }
.price-label { display: block; font-size: 12px; color: #64748b; font-weight: 600; }

/* Product Image Badge */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0d9488;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gold-badge { background: #f59e0b; }

/* Future SaaS Placeholder */
.future-saas-card {
    text-align: center;
    padding: 60px;
    border: 2px dashed #cbd5e1;
    border-radius: 24px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.future-saas-card h3 { font-size: 28px; color: #64748b; }
.future-saas-card p { color: #94a3b8; margin-top: 10px; }

/* Reuse the Zig-Zag Core Styles */
.zigzag-container { display: flex; flex-direction: column; gap: 100px; margin-top: 40px; }
.zigzag-row { display: flex; align-items: center; gap: 60px; }
.zigzag-row.reverse-row { flex-direction: row-reverse; }
.zigzag-image { flex: 1; position: relative; }
.image-border-glow { position: relative; border-radius: 20px; transition: transform 0.4s ease; }
.image-border-glow img { width: 100%; border-radius: 20px; position: relative; z-index: 2; }
.image-border-glow::before { content: ''; position: absolute; inset: -3px; border-radius: 23px; z-index: 1; opacity: 0.3; transition: 0.4s; }
.zigzag-row:hover .image-border-glow { transform: translateY(-10px); }
.zigzag-row:hover .image-border-glow::before { opacity: 0.8; }
.zigzag-content { flex: 1; }
.zigzag-content h3 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.zigzag-features { list-style: none; padding: 0; margin: 20px 0; }
.zigzag-features li { display: flex; align-items: center; gap: 12px; font-weight: 600; margin-bottom: 10px; }
.zigzag-features li svg { width: 20px; height: 20px; flex-shrink: 0; }

.saas-cta { background: linear-gradient(135deg, #0f172a, #2563eb); border-radius: 24px; padding: 60px; text-align: center; color: #fff; }

@media (max-width: 992px) {
    .zigzag-row, .zigzag-row.reverse-row { flex-direction: column; gap: 40px; }
    .zigzag-image { width: 100%; order: 1; }
    .zigzag-content { width: 100%; order: 2; }
}