.pct-buttons {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pct-btn {
    background: transparent;
    border: 0;
    padding: 0 0 6px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;

}

.product-card .product-icon {
    width: auto;
    height: 50px;
}

.pct-btn .pct-underline {
    display: block;
    height: 4px;
    width: 0;
    border-radius: 3px;
    background: var(--bs-primary);
    transition: width .2s ease;
    margin-top: 10px;
}

.pct-btn.is-active {
    font-weight: 700;
}

.pct-btn.is-active .pct-underline {
    width: 100%;
}

.pct-panel {
    display: none;
}

.pct-panel.is-active {
    display: block;
}

/* new */
.product-card {
    background-color: #f1f1f1;
    border-radius: 0;
    border: 0;
    padding: 30px;
}

.product-card .read-more-btn:hover,
.product-card .read-more-btn:hover i::before {
    color: var(--bs-primary);
}

.prd-read-more-icon {
    width: 18px;
    fill: #c9c9c9;
}
.product-card .read-more-btn:hover .prd-read-more-icon {
    fill: var(--bs-primary);
}

.products-filter-wrapper select {
    border-radius: 0;
}

.products-filter-wrapper select:focus {
    outline: none;
    box-shadow: none;
}

/* faq */

.faqs-section {}

.faqs-section .accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--bs-secondary);
}


@media(max-width:767px) {

    .pct-products .row>.col-md-6:last-child,
    .pct-products .row>.col-lg-4:last-child {
        margin-bottom: 0 !important;
    }
}

@media(max-width:700px) {
    .pct-buttons {
        display: flex;
        gap: 20px;

    }
}


/* Skeleton Base */
.skeleton {
    background: #eee;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    /* adjust for your card height */
}

/* Shimmer effect */
.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.2s infinite;
}

@keyframes loading {
    100% {
        left: 100%;
    }
}

/* Make skeleton card sizes consistent */
.skeleton-card {
    height: 250px;
    /* adjust to match your card */
    margin-bottom: 20px;
}

#productEnquiry #gform_wrapper_4 input.large {
    min-height: 50px;
    background-color: white;
    color: #1c1c1c;
    border: 1px solid #dcdcdc;
    margin-bottom: 0;
    padding: 15px 16px 18px 16px;
    font-family: "Lato";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}