/*
Theme Name: Custom Packaging
Author: Custom Packaging
Description: Custom Packaging
Version: 1.0
Template: hello-elementor
*/

.pcp-category-section {
    margin: 40px 0;
    position: relative;
}

.pcp-category-head {
    text-align: center;
    margin-bottom: 24px;
}

.pcp-category-head span {
    color: #b47b38;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.pcp-category-head h2 {
    color: #07192f;
    font-size: 32px;
    font-weight: 800;
    margin: 8px 0 0;
}

.pcp-category-swiper {
    padding: 8px 42px 22px;
}

.pcp-category-card {
    display: block;
    height: 165px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.pcp-category-card:hover {
    border-color: #b47b38;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.pcp-category-img {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcp-category-img img {
    max-width: 100%;
    max-height: 95px;
    object-fit: contain;
}

.pcp-category-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #07192f;
    margin: 10px 0 0;
    line-height: 1.3;
}

.pcp-arrow {
    width: 34px;
    height: 34px;
    background: #07192f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 5;
    cursor: pointer;
}

.pcp-prev {
    left: 0;
}

.pcp-next {
    right: 0;
}

.pcp-prev:before {
    content: "‹";
}

.pcp-next:before {
    content: "›";
}

.pcp-arrow:before {
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    display: block;
    text-align: center;
}

@media (max-width: 767px) {
    .pcp-category-head h2 {
        font-size: 24px;
    }

    .pcp-category-swiper {
        padding-left: 36px;
        padding-right: 36px;
    }

    .pcp-category-card {
        height: 150px;
    }

    .pcp-category-img {
        height: 90px;
    }
}