/* -----------------------------------------------------------
   PRODUCT DETAILS LAYOUT (3 columns → stacked on mobile)
----------------------------------------------------------- */

.product-details-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.pdc-col {
    flex: 1;
    min-width: 0;
}

/* LEFT COLUMN */
.pdc-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-wrapper {
    aspect-ratio: 1 / 1;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

/* CENTER COLUMN */
.pdc-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* RIGHT COLUMN */
.pdc-right {
    display: flex;
    flex-direction: column;
}

/* PRICE */
.pdc-price {
    height: 52px;
    display: flex;
    align-items: center;
}

.pdc-price p {
    margin: 0;
    line-height: 1.2;
    font-size: 1.4rem;
}

/* -----------------------------------------------------------
   RESPONSIVE STACKING
----------------------------------------------------------- */

@media (max-width: 1100px) {
    .product-details-container {
        flex-direction: column;
        gap: 30px;
    }

    .pdc-col {
        width: 100%;
    }

    .pdc-right {
        margin-top: 10px;
    }
}

/* -----------------------------------------------------------
   STANDARD FEATURES LIST
----------------------------------------------------------- */

.standard-features {
    padding-left: 32px;
}

.standard-features li {
    margin-bottom: 6px;
    list-style-type: disc;
}

/* -----------------------------------------------------------
   ADD TO CART BUTTON
----------------------------------------------------------- */

.add-to-cart-btn {
    background: #333;
    color: white;
    height: 52px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 6px;
    cursor: pointer;

    font-size: 16px;
    margin-top: 20px !important;
}

