/* -------------------
   HERO
------------------- */
.ps-hero {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
}

/* SECTION HEADINGS */
.ps-section, .ps-column {
    padding: 40px 6%;
}

.ps-column h2 {
    margin-bottom: 18px;
    color: #1e3a8a;
    font-size: 1.4rem;
}

/* -------------------
   HORIZONTAL SCROLL
------------------- */


.ps-scroll-x {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: 14px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;       /* Important: prevent wrapping on desktop */
}


/* CARD STYLING */
.ps-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    display: flex;
    gap: 14px;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* CARD IMAGE */
.ps-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #eef2ff;
    border-radius: 12px;
    padding: 8px;
}

/* CARD CONTENT */
.ps-content h3 {
    margin: 0;
    font-size: 1rem;
    color: #111827;
}

.desc {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 6px 0;
    line-height: 1.4;
}

/* META INFO */
.meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 6px 0;
}

.badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge.live {
    background: #dcfce7;
    color: #166534;
}

.badge.ongoing {
    background: #fef3c7;
    color: #92400e;
}

.category {
    font-size: 0.7rem;
    color: #2563eb;
    font-weight: 600;
}

/* PRICE / TYPE */
.price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e3a8a;
}

/* ACTIONS / BUTTONS */
.actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    white-space: nowrap;
}

.btn.demo {
    background: #2563eb;
    color: white;
}

.btn.docs {
    background: #e5e7eb;
    color: #1f2937;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .ps-card {
        min-width: 280px;
        max-width: 280px;
    }
}

/* HIDE SCROLLBAR (optional) 
.ps-scroll-x::-webkit-scrollbar {
    display: none;
}
*/