.pco-card{
background:#f7f7f7;
padding:20px;
border-radius:16px;
text-align:center;
}

.price{color:#1db954;font-weight:bold;}

.view-btn,.get-btn{
padding:8px 12px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin:5px;
}

.view-btn{background:#28a745;color:#fff;}
.get-btn{background:#0a3d2e;color:#fff;border:none;cursor:pointer;}

#pco-popup{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-content{
background:#fff;
padding:30px;
width:400px;
border-radius:10px;
}



/* ===== SINGLE PAGE LAYOUT ===== */

.pco-single-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* ===== GALLERY GRID ===== */

.pco-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pco-gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: pointer;
}

.pco-gallery-grid img:hover {
    transform: scale(1.03);
}

/* ===== DETAILS SECTION ===== */

.pco-details-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.pco-price {
    font-size: 22px;
    font-weight: bold;
    color: #1db954;
    margin-bottom: 20px;
}

.pco-specs div {
    margin-bottom: 10px;
    font-size: 16px;
}

.pco-description {
    margin: 25px 0;
    line-height: 1.6;
}

.get-btn {
    padding: 14px 24px;
    background: #0a3d2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.get-btn:hover {
    background: #000;
}

/* ===== RESPONSIVE ===== */

@media(max-width: 992px) {
    .pco-single-wrapper {
        grid-template-columns: 1fr;
    }

    .pco-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .pco-gallery-grid {
        grid-template-columns: 1fr;
    }
}




.pco-car-card {
    background: #f7f7f7;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
}

.pco-car-card:hover {
    transform: translateY(-5px);
}

.pco-car-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.pco-car-img img {
    max-height: 180px;
    object-fit: contain;
}

.pco-car-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pco-price {
    color: #1db954;
    font-weight: bold;
    margin-bottom: 15px;
}

.pco-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.pco-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.view-btn,
.get-btn {
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;

    text-align: center;
    cursor: pointer;
}

.view-btn {
    background: #2ecc71;
    color: #fff;
    text-decoration: none;
}

.get-btn {
    background: #0a3d2e;
    color: #fff;
    border: none;
}

:root {
    --swiper-navigation-size: 29px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #2ecc71 !important;
    height: 35px !important;
     width: 35px !important;
    background: #0a3d2e;
    border-radius: 50%;
    padding: 10px;
    
}

.swiper-pagination  {
    display: none;
}



.pco-popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pco-popup-content h3 {
    margin-bottom: 20px;
}

.pco-popup-content input,
.pco-popup-content textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.pco-popup-content button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: #0a3d2e;
    color: #fff;
    border: none;
    font-weight: bold;
}



/* ===== POPUP OVERLAY ===== */

#pco-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== POPUP BOX ===== */

.popup-content {
    background: #ffffff;
    width: 460px;
    max-width: 95%;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    position: relative;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.popup-content h3 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

/* ===== CLOSE BUTTON ===== */

.popup-content .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
}

.popup-content .close:hover {
    color: #000;
}

/* ===== FORM STYLING ===== */

#pco-rent-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#pco-rent-form input,
#pco-rent-form select,
#pco-rent-form textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    transition: 0.2s ease;
    background: #fafafa;
}

#pco-rent-form input[type=checkbox] {
    width: 20px;
}

#pco-rent-form select {
    padding: 10px;
}

#pco-rent-form input:focus,
#pco-rent-form select:focus,
#pco-rent-form textarea:focus {
    border-color: #0a3d2e;
    background: #fff;
    outline: none;
}

/* Checkbox row */
#pco-rent-form label {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

/* Submit Button */
#pco-rent-form button {
    margin-top: 10px;
    padding: 14px;
    background: #0a3d2e;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#pco-rent-form button:hover {
    background: #000;
}

/* Response */
#pco-response {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.pco-car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pco-car-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.pco-car-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.pco-price {
    font-weight: 600;
    color: #1e7e34;
    margin: 10px 0;
}

.pco-btns {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.view-btn,
.get-btn {
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.view-btn {
    background: #198754;
    color: #fff;
}


@media (max-width: 992px) {
    .pco-car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pco-car-grid {
        grid-template-columns: 1fr;
    }
}



