﻿/* ===============================
   SERVICE CARD
================================ */
.service-card {
    position: relative;
    background: linear-gradient(180deg, #f5f5f5, #dbfbff);
    border-radius: 22px;
    padding: 0px;
    margin: 18px;
    box-shadow: 0 16px 40px rgb(0, 0, 0, 0.23);
    overflow: hidden;
}
.service-card .contenter {
    
    padding: 18px;
    
    
}

/* ===============================
   RIBBON
================================ */
.ribbon {
    position: absolute;
    top: 0px;
    left: -28px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 52px;
     box-shadow: 0 6px 16px rgb(199, 49, 49, 0.56);
}

/* ===============================
   HEADER
================================ */
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-text h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #111;
}

.service-text .sub {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
}

/* Floating Image */
.service-img {
    width: 100%;
    height: 150px;
    border-radius: 0px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

/* ===============================
   POINTS
================================ */
.service-points {
    margin: 14px 0 0;
    padding-left: 0;
    list-style: none;
    font-size: 14px;
    color: #444;
}

    .service-points li {
        margin-bottom: 6px;
    }

/* ===============================
   PRICE ROW
================================ */
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.price .old {
    text-decoration: line-through;
    color: #aaa;
    font-size: 13px;
    margin-right: 6px;
}

.price .new {
    font-size: 24px;
    font-weight: 900;
    color: #111;
}

/* ===============================
   ADD BUTTON
================================ */
/* ADD button */ .add-btn {
    border: 2px solid #e53935;
    background: #fff;
    color: #e53935;
    border-radius: 12px;
    padding: 6px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .add-btn:hover {
        background: #e53935;
        color: #fff;
    }
    /* Add animation */

    .add-btn.added {
        background: #22c55e;
        border-color: #22c55e;
        color: #fff;
        animation: pulse 0.4s ease;
    }
/* ===============================
   OFFER BOX
================================ */
.offer-box {
    margin-top: 14px;
    background: linear-gradient(135deg, #eef2ff, #f5f7ff);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.offer-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
}



.pdp-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 20px;
}

/* Header */
.pdp-header h1 {
    margin: 0;
    font-size: 24px;
}

.city {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* Highlights */
.pdp-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

    .highlight span {
        font-size: 22px;
    }

/* Sections */
.pdp-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.included-list {
    padding-left: 18px;
}

    .included-list li {
        margin-bottom: 8px;
        font-size: 14px;
    }

/* Recommended Box */
.recommend-box {
    background: #eef2ff;
    padding: 14px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
}
