.purchase_action {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: white;
    border: none;
    width: fit-content;
    max-width: 221px;
}

.purchase_action button,
.purchase_action input[name="quantity"] {
    color: #95ccce;
    text-align: center;
    background-color: transparent;
    border: none;
    flex: 1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.selection div {
    border-radius: 15px;
    width: 20%;
}

.item_qty:focus {
    outline: none;
}

.btn:focus {
    box-shadow: none;
}

.section_1 img {
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product_img_box {
    width: 70px; /* Adjust as needed */
    height: 70px; /* Adjust as needed */
    margin-right: 10px;
    flex: 0 0 auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: border 0.3s;
}

.product_img_box:hover {
    border: 2px solid #7ab1b3;
}

.product_img_box img {
    width: 100%;
    height: 100%;
}
/*** Cart Panel START ***/
.cart_overlay {
    display: none;
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

.cart_panel {
    display: none;
    z-index: 10;
    width: 40%;
    background-color: #ffffff;
    top: 0;
    right: 0;
}

.cart_panel .cart_title {
    width: 100%;
    height: 50px;
    background-color: #2e616f;
    color: #ffffff;
}

.cart_panel .cart_list {
    margin: 50px 0 100px 0;
    padding: 2rem;
    overflow-y: auto;
}

.cart_panel .cart_qty_block {
    margin: 0;
    padding: 0;
    width: 80%;
    height: 27px;
    border: 1px solid #20334a;
    border: 1px solid #20334a;
    border-radius: 16px;
}

.cart_panel .cart_trash_block {
    margin: 0;
    padding: 0;
    width: 20%;
    height: 27px;
}

.cart_panel .cart_qty_block .cart_plus_btn,
.cart_panel .cart_qty_block .cart_item_qty,
.cart_panel .cart_qty_block .cart_minus_btn {
    border: none;
    height: 25px;
    font-size: 20px;
    color: #20334a;
    text-align: center;
}

.cart_panel .cart_qty_block .cart_plus_btn,
.cart_panel .cart_qty_block .cart_minus_btn {
    width: 25%;
    background-color: transparent;
    cursor: pointer;
}

.cart_panel .cart_qty_block .cart_item_qty {
    width: 50%;
}

.cart_panel .cart_qty_block .cart_item_qty:focus {
    outline: none;
}

.cart_panel .cart_items {
    border-bottom: 1px solid #c0bcbc;
}

/* .cart_panel .checkout_panel {
    position: absolute;
    bottom: 0;
} */

.cart_panel .checkout_button,
.cart_panel .signin_button,
.cart_panel .shopping_button {
    border-radius: 50px;
    background-color: #20334a;
}

.cart_panel .checkout_button:hover,
.cart_panel .signin_button:hover,
.cart_panel .shopping_button:hover {
    background-color: #ffffff;
    color: #20334a;
}

.cart_panel.slide-in {
    transform: translateX(100%);
    animation: slideIn 0.7s forwards;
}

.cart_panel.slide-out {
    transform: translateX(100%);
    animation: slideOut 0.7s forwards;
}

.checkout_button a {
    color: #fff;
}

.checkout_button a:hover {
    background-color: transparent;
    color: #20334a;
    text-decoration: none;
}

.text-line-through {
    text-decoration: line-through;
}

.text-muted {
    color: rgba(142, 141, 141, 0.74) !important;
}

.img_mobile {
    margin-top: -120px;
    max-width: 450px;
}

.white-line {
    border: none;
    border-top: 0.5px solid #1a2323;
}

.padding-short {
    p {
        margin: 0 !important;
        padding: 5px;
    }
}

.features-section {
    padding-left: 15px;
    padding-right: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item img.feature-icon {
    width: 20px;
    height: auto;
    margin: 5px;
}

.feature-item span {
    font-family: OpenSans-semibold;
    color: #1a2323;
    font-size: 11px;
    margin-left: 10px;
}

#add_to_cart_btn {
    background: #ffffff;
    color: #7ab1b3;
    border-radius: 35px;
    height: 45px;
}

#buy_now_btn {
    background: #3b6567;
    color: #ffffff;
    border-radius: 35px;
    height: 45px;
}

/* Thumbnail Container */
.thumbnail-container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Navigation Buttons */
.nav-button {
    background-color: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.3s,
        color 0.3s;
}

/* Remove focus and active styles */
.nav-button:focus,
.nav-button:active {
    outline: none;
    box-shadow: none;
    border: none;
}

.nav-button:disabled {
    cursor: not-allowed;
}

/* Thumbnails Wrapper */
.thumbnails-wrapper {
    overflow: hidden;
    width: calc(4 * 70px + 30px); /* 4 thumbnails * (width + margin) */
    margin: 0 10px;
}

.thumbnails {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.price-font {
    font-size: 60px;
}

.discounted-font {
    font-size: 40px;
}

.width-mobile {
    width: 60%;
}

.left-column {
    width: 150px;
}

.container.step-width {
    max-width: 95%;
}

.me-lg-20 {
    margin-right: 30px;
}

.ms-lg-20 {
    margin-left: 20px;
}

.f-color-lg {
    font-size: 24px;
    color: #7ab1b3;
}

.fa-solid.margin {
    margin: 0px 20px 0px -20px !important;
}

.pad-2 {
    padding: 0 1.5rem;
}

extraB {
    font-family: OpenSans-extraBold;
}

.f-size-name {
    font-size: 40px;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
}

/*** Cart Panel END ***/

@media (min-width: 768px) {
    .main_content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .main_content {
        padding: 130px 0 30px 0;
    }

    .cart_panel,
    .cart_panel .cart_title {
        width: 100%;
    }

    .cart_panel .cart_list {
        padding: 0;
    }

    .cart_panel .cart_qty_block,
    .cart_panel .cart_trash_block {
        height: 20px;
    }

    .cart_panel .cart_qty_block .cart_plus_btn,
    .cart_panel .cart_qty_block .cart_item_qty,
    .cart_panel .cart_qty_block .cart_minus_btn {
        height: 18px;
        font-size: 15px;
    }

    .cart_panel.slide-in {
        transform: translateY(100%);
        animation: slideIn 1s forwards;
    }

    .cart_panel.slide-out {
        transform: translateY(100%);
        animation: slideOut 1s forwards;
    }

    @keyframes slideIn {
        to {
            transform: translateY(0);
        }
    }

    @keyframes slideOut {
        from {
            transform: translateY(0);
        }
    }

    .img_mobile {
        margin-top: -20px;
        max-width: 300px;
    }

    .purchase_action {
        width: 50%;
    }

    .thumbnails-wrapper {
        width: calc(4 * 60px + 25px); /* Adjust based on smaller screens */
    }

    .product_img_box {
        width: 60px;
        height: 60px;
        margin-right: 8px;
    }

    .nav-button {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .price-font {
        font-size: 32px;
    }

    .discounted-font {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .width-mobile {
        width: 100%;
    }

    .left-column {
        width: 0px;
    }

    .p-sm-35 {
        padding: 0 30px 35px 30px !important;
    }

    .p-lg-60 {
        padding-bottom: 60px;
    }

    .fa-solid.margin {
        margin: -20px 0px 23px 0px !important;
    }

    .me-lg-20 {
        margin-right: 0px;
    }

    .ms-lg-20 {
        margin-left: 0px;
    }

    .w-lg-100 {
        width: 100%;
    }

    .w-lg-45 {
        width: 45%;
    }

    .w-lg-55 {
        width: 55%;
    }

    .f-color-lg {
        color: black;
        font-size: 16px;
    }

    .pad-2 {
        padding: 0 0.5rem;
    }

    .f-size-name {
        font-size: 20px;
    }
}
