* {
    font-family: Poppins;
}

body {
    background-color: white;
}

.font-middle {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.font14 {
    font-size: 14px;
}

.font12 {
    font-size: 12px;
}

.secTxt {
    color: #707070;
}

.font18 {
    font-size: 18px;
}

.required {
    color: #e04e2b;
}

.primaryButton {
    background-color: #E04646;
    border: none;
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
}

.mainBtn {
    background-color: #E04646;
    border: none;
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
}

.linkBtn {
    font-weight: 600;
    font-size: 16px;
    color: #E04646;
    padding: 4px 8px;
    border: none;
    background-color: transparent;
}

.linksecBtn {
    font-size: 14px;
    color: #2f2f2f;
    padding: 4px 4px;
    border: none;
    background-color: transparent;
}

.secBrdBtn {
    font-size: 14px;
    color: #2f2f2f;
    padding: 4px 4px;
    border: 1px solid #707070;
    background-color: transparent;
    padding: 8px 8px;
    border-radius: 4px;
}

.lgnBtn {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border: none;
    color: #2f2f2f;
    border-radius: 32px;
    padding: 8px 16px;
    max-width: 240px;
}

.secBtn {
    background-color: #fff;
    color: #E04646;
    border-radius: 8px;
    border: 1px solid #E04646;
    padding: 8px 12px;
}

.secViewBtn {
    background-color: #fff;
    color: #E04646;
    border-radius: 4px;
    border: 1px solid #E04646;
    padding: 4px 12px;
    width: 100%;
}


.bodyMargin {
    position: relative;
    padding-left: 64px !important;
    padding-right: 64px !important;
}

.paddingStart {
    padding-left: 64px !important;
}

.paddingEnd {
    padding-right: 64px !important;
}


/* Home Page */

/* Header */
.heightnav {
    height: 40px;
}

.headerNav {
    position: sticky;
    top: 0px;
    z-index: 1;
}



.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 64px;
    align-items: center;
}

/* Header Logo */
.logoContainer {
    width: auto;
    height: auto;
}

.navLogo {
    width: auto;
    height: 56px;
}


/* Header Main Search */
.searchContainer {
    display: flex;
    justify-content: center;
    width: 50%;
}

.searchInput {
    border: 1px solid #c5c5c5;
    font-size: 16px;
    border-radius: 8px 0px 0px 8px;
    width: 80%;
}



/* Header Bag Icon and Button */
.iconButton {
    border: none;
    border-radius: 0px 8px 8px 0px;
    background-color: #E04646;
    width: 48px;
    margin-left: -4px;
}

.navBadge {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -42px;
    left: 13px;
    width: 18px;
    height: 18px;
    border-radius: 16px;
    background-color: #E04646;
    color: white;
    font-size: 12px;
}

.bagContainer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

/* Header Responsive Search */
.openSearch {
    display: flex; /*modified*/
    justify-content: center;
    width: 100%;
}

.openSearchInput {
    visibility: visible; /*modified*/
    display: flex;
    border: 1px solid #c5c5c5;
    font-size: 16px;
    border-radius: 8px 0px 0px 8px;
    width: 100%;
}


/* Side Navigation */
.boxTitle {
    margin-bottom: 8px;
    color: #e04646;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 0px;
}

/* Accodion Box */

.accordBox {
    border-bottom: 3px solid #E04646;
}

.boxTabContainer {
    width: 100%;
}

.boxTab {
    width: 100%;
    background-color: transparent;
    color: #2f2f2f;
    font-weight: 500;
    border-bottom: 3px solid white;
}

    /* Animation accordion tab */

    .boxTab:hover,
    .boxTab:focus,
    .boxTab:active {
        border-bottom: 3px solid #E04646;
    }

.active span {
    color: #E04646;
}

.iconImg24 {
    width: 24px;
    height: 24px;
}


/* ProductShowcase */
.countTxt {
    font-weight: 600;
    font-size: 16px;
}


/* Overlay product Card */

.productCard {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 8px;
    width: 380px;
    height: 480px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .productCard:hover {
        transform: scale(1.02); /* Slight zoom effect on hover */
    }

    .productCard div img {
        width: 364px;
        height: 364px;
    }


.cardHeading {
    color: #2f2f2f;
    font-weight: 500;
    text-align: center;
    overflow-wrap: break-word;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagHeading {
    background-color: #f5f5f5;
    padding: 8px 0px;
}

    .tagHeading p {
        font-size: 16px;
    }


/* Cart Page */

.width15 {
    width: 15%;
}

.width25 {
    width: 25%;
}

.width30 {
    width: 30%;
}

.width35 {
    width: 35%;
}

.width20 {
    width: 20%;
}

.width65 {
    width: 65%;
}

.width70 {
    width: 70%;
}

.width85 {
    width: 85%;
}

.titleContainer {
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
}

.mobileShow {
    display: none !important;
}



.cartPrdImg {
    max-width: 90px;
    max-height: 90px;
}

.cartOption {
    width: 48px !important;
}

.deleteContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 64px;
    color: #E04646;
    cursor: pointer;
}

    .deleteContainer:hover {
        background-color: rgb(224, 70, 70, 0.1);
    }

.iconImg32 {
    width: 32px;
    height: 32px;
}

.iconImg40 {
    width: 40px;
    height: 40px;
}

.priceTxt {
    font-weight: 500;
}

    .priceTxt span {
        color: #c5c5c5;
        font-weight: 500;
    }

.summaryContainer {
    width: 100%;
    height: auto;
    border: 1px solid #d5d5d5;
    border-radius: 16px;
}


.crpointer {
    cursor: pointer;
}


/* Cart checkbox */
input[type="checkbox"] {
    appearance: none; /* Remove default styles */
    -webkit-appearance: none; /* For Safari */
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, border 0.3s ease;
}

    /* Style when checkbox is checked */
    input[type="checkbox"]:checked {
        background-color: #198754;
        border-color: #198754;
    }

        /* Style when checkbox is checked and display a checkmark */
        input[type="checkbox"]:checked::before {
            content: '✔';
            color: white;
            font-size: 16px;
            position: absolute;
            top: 2px;
            left: 4px;
        }

    /* Optional: Add a hover effect */
    input[type="checkbox"]:hover {
        border-color: #198754;
    }


/* md product container */
.mdtitleContainer {
    border: 1px solid #c5c5c5;
    border-radius: 8px;
    margin-top: 12px;
}

.deletemdBtnContainer {
    /* padding-top: 16px; */
}

.deletemdBtn {
    border: 1px solid #f5f5f5;
    width: 100%;
    color: #2f2f2f;
    background-color: white;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.deleteText {
    color: #e04e2b;
}


/* SUmmary responsive */
.summarymdContainer {
    position: sticky;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 4;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

.summaryMargin {
    padding-left: 64px !important;
    padding-right: 64px !important;
}

.summarymdBtn {
    height: 40px;
    width: 100%;
    background-color: #198754;
    color: white;
    border: none;
    border-radius: 8px;
}

.toastMessage {
    background-color: #FCEDED;
    width: 100%;
    height: auto;
}

    .toastMessage p {
        color: #E04646;
        font-size: 15px;
    }


.qtyInput {
    width: 102px;
    border: 1px solid #d5d5d5;
    height: 40px;
    padding-left: 12px;
}

.locTxt {
    color: #2f2f2f;
}

.addContainer {
    width: 100%;
    height: auto;
    border: 1px solid #d5d5d5;
    border-radius: 16px;
}


/* Modal heirachy */

.modal {
    z-index: 1055 !important;
    position: fixed;
}

.modal-backdrop {
    z-index: 1050 !important;
    position: fixed;
}


.modalImg {
    width: 90px;
    height: auto;
}

/* Sign In Modal */

.signFtContainer {
    border-top: none;
    border-bottom: none;
}

.signWidth {
    width: 100%;
    max-width: 320px;
}

/* Toast Message */
.textgrn {
    color: #198754;
    font-weight: 600 !important;
}

.paymentModal {
    width: 100%;
    height: 90vh;
    background-image: url('../Images/Payment/Desktop.PNG');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    padding: 12px
}

/* Order column */



.orderId {
    width: 20%;
    font-weight: 500;
}

.orderDate {
    width: 12% !important;
    font-weight: 500;
}

.orderAmount {
    width: 12% !important;
    font-weight: 500;
}

.orderDD {
    width: 20% !important;
    font-weight: 500;
}

.orderDetails {
    width: 15% !important;
    font-weight: 500;
}

.modal-content {
    width: 90% !important;
    font-weight: 500;
}

.rupee {
    font-family: Noto Sans, Arial, Helvetica, sans-serif;
}


.priceTxt span {
    color: #2f2f2f;
}

.hoverProfile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: #fff;
    top: 64px;
    right: 40px;
    width: auto;
    height: auto;
    border-radius: 8px;
    list-style: none;
    padding: 8px 16px;
}

/* Web login Btn */

.profileBtn {
    border-radius: 32px;
    background-color: #f5f5f5;
    color: #2f2f2f;
    padding: 8px 12px;
    border: none;
}


.dropdownBtn {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdownBtn:hover {
        background-color: #f5f5f5;
    }

/* Modal centre */
.modalWidth .modal-content {
    width: 98% !important;
    margin: 0 auto !important;
}

.modal-content {
    width: 98% !important;
    margin: 0 auto !important;
}

div#signUp.modalWidth .modal-content {
    width: 98% !important;
    margin: 0 auto;
}


/* Cart quantity */
.product {
    text-align: center;
    margin-top: 50px;
}

.quantity-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.quantity-button {
    font-size: 24px;
    cursor: pointer;
    background-color: #ffffff;
    color: #2f2f2f;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
}

.quantity-input {
    width: 72px;
    text-align: center;
    font-size: 18px;
    margin: 0 10px;
    padding: 6px 5px 5px 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
