.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    color: #2b2b2b; /* dark text */
}

.back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1e7a82; /* light beige background like screenshot */
    margin-right: 10px;
}

.back-icon i {
    font-size: 14px;
    color: #fff; /* arrow color */
}
h2 {
    font-size: 24px !important;
}

table.prescription {
    margin-bottom: 0px;
}
.prescription tr th {
    font-size: 12px;
}

.prescription,
.prescription th,
.prescription td {
    border: 1px solid #eaeeef;
    background: transparent !important;
    box-shadow: none !important;
    font-weight: 500;
}

.prescription th,
.prescription td {
    border: none !important;
}

.prescription-section a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #555;
    cursor: pointer;
    font-weight: 500;
}

.prescription-section i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.prescription-section a:not(.collapsed) i {
    transform: rotate(180deg);
}

.product-information {
    padding-right: 4rem;
}

#cart-cross{
   position: absolute;
    right: 17px;
    top: 17px;
    color: #000;
    font-size: 15px;
    cursor: pointer;
}

.font-weight-bold {
  font-weight: 700 !important; /* Bootstrap 4 sets bold to 700 */
}

#input-coupon {
    height: 50px;
}
#button-coupon {
    padding: 14px 20px;
}

.checkout-btn .btn.checkout-btn:hover{
    background-color: #1f7a82 !important;
}

.cart-item {
    padding: 15px;
    flex: 1 1 calc(33.333% - 20px);
}

.img-wrapper {
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* optional, acts as a placeholder bg */
}

.img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* keeps aspect ratio without stretching */
}

h1, h2 {
    font-weight: 400;
}
h2 {
    font-size: 20px !important;
}

.cart-summary-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.continue-shopping-link {
    color: #352B27;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding: 0px 0px 3px;
    border-bottom: 1px solid #352B27;
}

@media (min-width: 768px) {
    .cart-summary-wrapper {
        position: static; /* normal flow on desktop */
        box-shadow: none;
    }
}

@media (max-width: 991px) {
    .product-information {
        margin-top: 20px !important; /* Bootstrap 4's mt-5 ≈ 3rem (48px). Adjust if needed */
        padding: 0 14px 14px 14px !important
    }
}

@media only screen
  and (min-width: 1024px)
  and (max-width: 1366px) {
    .product-information {
        margin-top: 20px !important; /* Bootstrap 4's mt-5 ≈ 3rem (48px). Adjust if needed */
        padding: 0 14px 14px 14px !important
    }
}


