
.pesp-steps {
    display: flex;
    gap: 24px;
}

.pesp-step {
    flex: 1;
    text-align: center;
}

.pesp-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}


/* ================================
   Paper & Finishes Grid Layout
================================ */

.pesp-paper-finishes {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 per row */
    gap: 20px; /* 20px horizontal & vertical spacing */
}

/* Tablet (2 columns) */
@media (max-width: 1024px) {
    .pesp-paper-finishes {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 column) */
@media (max-width: 767px) {
    .pesp-paper-finishes {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Card Styling (UNCHANGED)
================================ */

.pesp-paper-card {
    border: px solid #eee;
    border-radius: 12px;
    padding:10px;
    text-align: left;
    transition: all .3s ease;
    background: transparent;
}

.pesp-paper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.pesp-paper-image img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 12px;
}

.pesp-paper-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pesp-paper-content p {
    font-size: 14px;
    color: #666;
}




.pesp-faqs {
    width: 100%;
}

.pesp-faq-item {
    width: 100%;
    border: 1px solid #e5e5e5;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.pesp-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pesp-faq-item summary::after {
    content: '+';
    font-size: 18px;
    margin-left: 15px; /* space between title and icon */
    flex-shrink: 0;
}

.pesp-faq-item[open] summary::after {
    content: '−';
}

.pesp-faq-item p {
    margin-top: 10px;
    color: #555;
}
.pesp-faq-item summary {
    outline: none;
}


.pesp-long-content-wrapper {
    position: relative;
    max-width: 100%;
}

.pesp-long-content {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

/* Fade effect */
.pesp-long-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events: none;
}

.pesp-long-content.expanded {
    max-height: 5000px;
}

.pesp-long-content.expanded::after {
    display: none;
}

.pesp-show-more {
    margin-top: 15px;
    padding: 10px 22px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}
