/* ============================================================
   Plant Card template — all rules scoped to .single-plant_card
   ============================================================ */

.single-plant_card {
    min-width: 1440px;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.single-plant_card .pc-product {
    position: relative;
    width: 1440px;
    height: 660px;
}

.single-plant_card .pc-product__cover {
    position: absolute;
    left: 140px;
    top: 40px;
    width: 520px;
    height: 620px;
    background: #E7E8E4;
    overflow: hidden;
}

.single-plant_card .pc-product__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-plant_card .pc-product__specs {
    position: absolute;
    left: 740px;
    top: 29px;
    width: 560px;
}

.single-plant_card .pc-product__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #00862C;
    width: 454px;
    margin-bottom: 13px;
}

/* Specs grid */
.single-plant_card .pc-specs {
    display: flex;
    flex-direction: column;
}

.single-plant_card .pc-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
}

.single-plant_card .pc-spec-row--full { grid-template-columns: 1fr; }
.single-plant_card .pc-spec-row--lg-gap { margin-top: 21px; }
.single-plant_card .pc-spec-row--sm-gap { margin-top: 12px; }
.single-plant_card .pc-spec-row:first-child { margin-top: 0; }

.single-plant_card .pc-spec-item {
    display: flex;
    flex-direction: column;
}

.single-plant_card .pc-spec-label {
    font-size: 14px;
    font-weight: 400;
    color: #575856;
    line-height: 20px;
}

.single-plant_card .pc-spec-value {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 20px;
}

/* Price */
.single-plant_card .pc-product__price {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #00862C;
    margin-top: 9px;
}

.single-plant_card .pc-product__note {
    font-size: 14px;
    font-weight: 400;
    color: #00862C;
    line-height: 20px;
    width: 560px;
    margin-top: 2px;
}

/* Actions: qty + button */
.single-plant_card .pc-product__actions {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-top: 20px;
}

.single-plant_card .pc-product__qty { width: 170px; }

.single-plant_card .pc-product__qty-input {
    width: 170px;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 14px;
    font-weight: 500;
    color: #676a68;
    line-height: 20px;
    padding: 0 0 8px 0;
    background: transparent;
    outline: none;
    font-family: 'Jost', sans-serif;
}
.single-plant_card .pc-product__qty-input::placeholder { color: #676a68; }

.single-plant_card .pc-btn-add {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 220px;
    height: 40px;
    background: #00862C;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    padding: 0 25px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    border-radius: 20px;
}
.single-plant_card .pc-btn-add:hover { background: #006220; }
.single-plant_card .pc-btn-add--added { background: #575856; cursor: default; }
.single-plant_card .pc-btn-add svg { flex-shrink: 0; }

/* Separator line */
.single-plant_card .pc-separator {
    width: 520px;
    height: 1px;
    background: rgba(0,0,0,.15);
    margin-left: 140px;
}

/* ============================================================
   DESCRIPTION SECTION
   ============================================================ */
.single-plant_card .pc-description {
    width: 1440px;
    display: flex;
    padding: 29px 140px 60px;
    gap: 80px;
    align-items: flex-start;
}

.single-plant_card .pc-desc-col {
    width: 520px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 20px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.single-plant_card .pc-cta {
    position: relative;
    width: 1440px;
    min-height: 800px;
    background-image: url('images/plant_cta_bg.jpg');
    background-size: cover;
    background-position: center top;
    border-top: 1px solid rgba(0,0,0,.12);
}

.single-plant_card .pc-cta__inner {
    padding: 96px 140px 100px;
}

.single-plant_card .pc-cta__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    margin-bottom: 24px;
}

.single-plant_card .pc-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    background: #00862C;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
    text-decoration: none;
    transition: background .15s;
}
.single-plant_card .pc-btn-call:hover { background: #006220; }

.single-plant_card .pc-cta__chat-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: 42px;
    margin-bottom: 4px;
}

.single-plant_card .pc-cta__chat-sub {
    font-size: 14px;
    font-weight: 400;
    color: #575856;
    line-height: 20px;
    margin-bottom: 10px;
}

.single-plant_card .pc-cta__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-plant_card .pc-btn-chat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #000;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    transition: background .15s;
}
.single-plant_card .pc-btn-chat:hover { background: rgba(255,255,255,.5); }
.single-plant_card .pc-btn-chat img { width: 20px; height: 20px; object-fit: contain; }
