@keyframes opening {
    from {
        scale: 1.3;
        opacity: 0;
        transform: translateY(-80px);
    }

    to {
        scale: 1;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes opening2 {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    margin: 0;
}

header {
    background-color: #ffce2f;
    height: 82px;
    width: 100%;
    border-bottom-left-radius: 23px;
    border-bottom-right-radius: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerStoreName {
    font-family: "Aref Ruqaa", sans-serif;
    font-weight: 900;
    font-size: 50px;
    color: #4f3010;
    height: 82px;
    display: flex;
    align-items: center;
    padding-bottom: 17px;
}

.animationContents {
    animation-name: opening;
    animation-duration: 0.4s;
}

.offer {
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(photos/offerPhoto.jpeg);
    background-size: cover;
}

.offer p {
    font-size: 25px;
    font-family: "Rubik", sans-serif;
    font-weight: 900;
    color: #006e1c;
    margin-right: 20px;
}

.offerButton {
    background-color: #006e1c;
    height: 50px;
    width: 80%;
    color: #00ce34;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-family: "Rubik", sans-serif;
    font-weight: 900;
}

.animationContents2 {
    animation-name: opening2;
    animation-duration: 0.4s;
}

.homePageCartButtonCOVER {
    width: 100%;
    display: flex;
    justify-content: center;
}

.homePageCartButton {
    width: 290px;
    height: 100%;
    background-color: black; /*00b91c90*/
    border-width: 6px;
    border-color: black; /*00b91c*/
    border-style: solid;
    box-sizing: border-box;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 20px gray;
}

.homePageCartButton:active {
    scale: 0.8;
    transition: all 0.2s;
}

.mainCartButtonTEXT {
    color: white;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    font-size: 35px;
    margin-left: 15px;
}

#searchInput {
    width: 100%;
    border: none;
    background-color: #efefef;
    height: 100%; /*52px*/
    border-radius: 15px;
    padding-left: 20px;
    padding-right: 50px;
    color: black;
    font-size: 15px;
    font-family: "Rubik", sans-serif;
    background-image: url('photos/Search.svg');
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 20px;
    box-sizing: border-box;
    
}

#searchInput::placeholder {
    color: rgb(116, 116, 116);
    font-size: 17px;
    font-family: "Rubik", sans-serif;
}

.hidden {
    display: none;
}

.stickyHeader {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.stickyHeader.isStuck {
    padding-top: 0px;
    padding-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(56, 56, 56, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
}

.categorySelectorCOVER {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.categorySelector {
    width: 300px;
    height: 40px;
    display: flex;
    overflow-x: auto;              /* Enables horizontal scrolling */
    overflow-y: hidden;           /* Prevents vertical scrolling */
    gap: 16px;                   /* Space between items */
    scroll-behavior: smooth;    /* padding: 10px; */
}

.category {
    flex: 0 0 auto;             /* Crucial: prevents items from shrinking */
    min-width: 50px;
    height: 150px;
    justify-content: center;
    align-items: center;
}

.categoryText {
    padding-left: 10px;
    padding-right: 10px;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    height: 20px;
    margin: 0;
    margin-bottom: 10px;
    color: black;
}

.categoryLine {
    width: 100%;
    height: 5px;
    background-color: black;
    border-radius: 3px;
}

.mainProductListCOVER {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    animation-name: opening;
    animation-duration: 0.4s;
}

.mainProductList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 17px;
    row-gap: 60px;
    padding-bottom: 170px;  
}

.product {
    color: rgb(255, 255, 255);
    border: none;
}

.product:active {
    scale: 0.8;
    transition: all 0.2s;
}

.productPhotoHolder {
    width: 40vw;
    height: 40vw;
    background-color: #808080;
    border: none;
    border-style: solid;
    border-radius: 23px;
    object-fit: cover;
    box-shadow: 0px 0px 10px gray;
}

.productName {
    margin-top: 13px;
    display: flex;
    justify-content: right;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Rubik", sans-serif;
    color: black;
    width: 130px;
    line-height: 20px;
}

.productOldPrice {
    margin-top: 3px;
    margin-bottom: 3px;
    display: flex;
    justify-content: right;
    padding-right: 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: "Rubik", sans-serif;
    color: rgb(70, 70, 70);
    text-decoration: line-through;
}

.homePageStylesPreview {
    margin-top: 13px;
    display: flex;
    justify-content: center;
    column-gap: 8px;
}

.oneHomePageStylePreview {
    height: 29px;
    min-width: 100px;
    background-color: #efefef;
    border-radius: 11px;
    display: inline-block;
    color: black;
    font-size: 12px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
}

.styleName {
    /*display: inline-block;*/
    margin-left: 9px;
    background-color: rgb(210, 210, 210);
    color: black;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 11px;
    padding-right: 8px;
    padding-left: 8px;
}

.homepageStyleContainers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 130px;
    margin-bottom: 10px;
}

.homepageStyleContainer {
    color: black;
    padding: 7px;
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: rgb(230, 230, 230);
    border-radius: 25px;
    flex: 0 0 auto;
    margin-left: 5px;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 10px;
}

.footerTextBox {
    background-color: #ffce2f;
    color: #4f3010;
    padding: 10px;
    border-radius: 12px;
    margin-left: 15px;
    margin-right: 15px;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

.poweredBy {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: black;
}

.poweredByBOX {
    background-color: rgba(0, 0, 0, 0.938);
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
    border-radius: 8px;
    margin-right: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
}

/* unvisited link */
a:link { text-decoration: none; }

/* visited link */
a:visited { text-decoration: none; }

/* mouse over link */
a:hover { text-decoration: none; }

/* selected link */
a:active { text-decoration: none; }

.backBtnCOVER {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.backBtn:active {
    scale: 0.8;
    transition: all 0.2s;
}

.backbtnWidth {
    width: 320px;
}

.backBtn {
    height: 28px;
    width: 85px;
    background-color: #E9E9E9;
    border-color: #C4C4C4;
    border-width: 5px;
    border-style: solid;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.backBtnText {
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: black; 
    margin-left: 3px;   
}

.productPhotoHolderMAINCOVER {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.productPhotoHolderMAINBORDER {
    background-color: #dcdcdc;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 43px;
    height: 320px;
    width: 320px;
    border: none;
    border-radius: 43px;
    box-shadow: 0px 0px 19px gray;
}

.photoCarousel {
    height: 100%;
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;

    /* Critical Scroll Snap Properties */
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;

    /* Hide standard scrollbars across browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.photoCarousel::-webkit-scrollbar {
    display: none;
}

.singleSlide {
    flex: 0 0 100%; /* Force each slide to take full width */
    width: 100%;
    scroll-snap-align: start; /* Locks slide to left edge on swipe release */
    scroll-snap-stop: always; /* Prevents skipping multiple slides */
}

.productPhotoMAIN {
    background-color: #6a6a6a;
    height: 100%;
    width: 100%;
    border-radius: 43px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.photoCountCircles {
    padding-left: 7px;
    height: 20px;
    min-width: 20px;
    background-color: rgb(157, 157, 157);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photoCircleIndicator {
    background-color: rgb(210, 210, 210);
    height: 10px;
    width: 10px;
    border-radius: 50px;
    margin-right: 7px;
    transition: all 0.5s;
}

/* Keep mobile devices clean by hiding scrollbars on touch screens */
@media (pointer: coarse) {
  .photoCarousel {
    scrollbar-width: none;
  }
  .photoCarousel::-webkit-scrollbar {
    display: none;
  }
}

/* Style a beautiful, thin scrollbar specifically for PC mouse users */
@media (pointer: fine) {
  .photoCarousel {
    scrollbar-width: thin;
    scrollbar-color: #888 #eee;
  }
  .photoCarousel::-webkit-scrollbar {
    height: 8px; /* Height of horizontal scrollbar */
    display: block;
  }
  .photoCarousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .photoCarousel::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  .photoCarousel::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}

#photoCarouselDialog {
    width: 100vw;
    max-width: 100vw;
    width: 100%;
    border: none;
    padding: 0px;
    padding-top: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
    box-shadow: 0px 0px 500px gray;
}

#photoCarouselDialog .productPhotoMAIN {
    border-radius: 0;
}

#photoCarouselDialog .productPhotoHolderMAINCOVER {
    margin-top: 0;
}

.photoDialogCloseBtn {
    margin-top: 10px;
    width: 90%;
    height: 50px;
    border-radius: 25px;
    background-color: rgb(223, 223, 223);
    font-family: "Rubik", sans-serif;
    font-weight: 700;
}

.changePhotoOption {
    height: 28px;
    width: 100%;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.optionBtnCOVER {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.storeName {
    height: 38px;
    width: 130px;
    background-color: #D9D9D9;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px gray;
}

.storePhoto {
    height: 25px;
    width: 25px;
    background-color: black;
    border-radius: 70px;
}

.question {
    height: 38px;
    width: 130px;
    background-color: #2DAF4E;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px gray;
}

.questionPhoto {
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 70px;
}

.RTL {
    width: 300px;
}

.stickyHeader .RTL {
    grid-template-columns: calc(20% - 5px) calc(80% - 5px) !important;
}

/*
.RTL.isStuck {
    display: flex;
    align-items: center;
}
*/

.productNameMAIN {
    font-size: 25px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.productPriceMAIN {
    font-size: 23px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
}

.productDescriptionMAIN {
    background-color: #dadada;
    padding: 20px;
    border-radius: 25px;
    font-size: 18px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    margin-bottom: 60px;
}

.productStyles {
    display: flex;
    flex-direction: row;
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    border-radius: 20px;
}

#chooseStyle {
    display: inline-block;
    color: red;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    background-color: red;
    padding: 10px;
    border-radius: 10px;
}

.productStyleSELECT {
    appearance: none;
    height: 60px; /*80px*/
    width: 135px; /*150px*/
    border-radius: 20px; /*25px*/
    font-size: 16px; /*20px*/
    padding-right: 20px;
    padding-left: 20px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background-color: #131313;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('photos/arrowDown.svg');
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 22px; /*28*/
}

.oneProductStyle {
    height: 70px;
    min-width: 60px;
    background-color: #808080;
    border-color: #5E5E5E;
    border-width: 3px;
    border-style: solid;
    border-radius: 9px;
    margin-left: 20px;
}

.quantity {
    margin-top: 23px;
    width: 135px;
    height: 50px;
    background-color: #eaeaea;
    border-radius: 200px;
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr;
    font-size: 30px;
}

.minus {
    background-color: #000000;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
}

.count {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-family: "Rubik", sans-serif;
}

.plus {
    background-color: #000000;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
}

.deliveryEstimate {
    margin-top: 20px;
}

.deliveryEstimateTEXT {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
}

.deliveryEstimateTEXTRESULT {
    display: inline;
    font-size: 17px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: white;
    margin-left: 5px;
}

.deliveryEstimateBOX {
    width: 100px;
    height: 38px;
    background-color: #131313;
    border: 3px solid #393939b3;
    display: inline-block;
    border-radius: 100px;
    margin-right: 5px;
}

.deliveryEstimateBOXINNER {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.actionButtons {
    margin-top: 20px;
    height: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 10px;
}

.buy {
    height: 100%;
    width: 100%;
    background-color: #ffce2f;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: #4f3010;
    font-size: 20px;
}

.addToCart {
    height: 100%;
    width: 100%;
    background-color: #131313;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

.addToCart.disabled {
    pointer-events: none;
    background-color: white;
    border: 5px solid black;
    color: black;
    box-sizing: border-box;
}

.otherProductsTEXT {
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
}

.otherProducts {
    height: 240px;
    width: 100%;
    display: flex;
    overflow: auto;
    gap: 45px;
    padding-bottom: 100px;
}

.productPhotoHolderCART {
    width: 120px;
    height: 120px;
    background-color: #808080;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*border-color: #D2D2D2;
    border-style: solid;
    border-width: 10px;*/
    border-radius: 23px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.cartItem {
    display: grid;
    grid-template-columns: 35% 65%;
    margin-bottom: 20px;
}

.orderItem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}

.cartQuantity {
    margin-bottom: 10px;
    width: 80px;
    height: 30px;
    background-color: #C7C7CC;
    border-radius: 200px;
    font-size: 15px;
}

.productNameCART {
    margin-top: 13px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: black;
}

.cartEmptyCenter {
    width: 100%;
    display: flex;
    justify-content: center;
}

.graySeperator {
    background-color: #E9E9E9;
    width: 100%;
    height: 30px;
}

.cartTotal {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cartTotalAdditionalCost {
    font-size: 18px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    margin-top: 9px;
    margin-bottom: 9px;
}

.cartTotalFinishOrder {
    height: 70px;
    width: 100%;
    border-radius: 20px;
    background-color: #ffce2f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 25px;
    font-family: "Rubik", sans-serif;
    color: #4f3010;
}

.cartTotalFinishOrder:active {
    scale: 0.8;
    transition: all 0.2s;
}

.finishOrderText {
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
}

.finishOrderInput {
    width: 100%;
    height: 45px;
    border-color: #D2D2D2;
    border-style: solid;
    border-width: 2px;
    border-radius: 13px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding-right: 20px;
    padding-left: 20px;
}

.finishOrderInput::placeholder {
    text-align: right;
}

.dashboardNavCOVER {
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 17px;
    z-index: 1;
}

.dashboardNav {
    border-radius: 100px;
    background-color: #ececec;
    height: 70px;
    width: 170px;
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.719);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 25px;
    padding-right: 25px;
}

.dashboardNavItem {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    flex-direction: column;
}

.selectedPhotoBoxDashboard {
    background-color: #0000008a;
    width: 75%;
    padding-top: 3.2px;
    padding-bottom: 3.2px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboardNavItemPhoto {
    height: 21px;
    filter: brightness(0.5);
}

.dashboardNavItem p {
    margin: 0;
    margin-top: 7px;
    font-family: "Rubik", sans-serif;
    font-weight: 900;
    font-size: 12px;
    color: #3B3B3B;
}

.addOrderButton {
    width: 100%;
    height: 50px;
    background-color: #1464B4;
    border-radius: 15px;
    font-size: 13px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.customerInfo {
    height: 250px;
    width:  100%;
    border-radius: 25px;
    /*border-color: #2E2E2E;
    border-style: solid;
    border-width: 4px;
    box-sizing: border-box;*/
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    column-gap: 10px;
    margin-bottom: 10px;
}

.infoNames {
    background-color: #ffce2f;
    border-radius: 25.5px;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
}

.infoNamesTEXT {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4f3010;/*ffe3c8*/
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    text-align: center;
    margin: 0;
    font-size: 13px;
}

.InfoResults {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    background-color: white;
    border-radius: 25px;
}

.infoResultsTEXT {
    width: 100%;
    display: flex;
    align-items: center;
    color: black;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    text-align: center;
    margin: 0;
    font-size: 13px;
    margin-right: 20px;
}

.productInfo {
    background-color: white;
    height: 210px;
    width:  100%;
    /*border-color: #2E2E2E;
    border-style: solid;
    border-width: 4px;
    box-sizing: border-box;
    border-top: none;
    border-bottom: none;*/
    display: flex;
    justify-content: center;
    border-radius: 25px;
    margin-bottom: 10px;
}

.productInfoINNER {
    margin-top: 10px;
    margin-bottom: 10px;
}

.cartQuantityORDERPAGE {
    margin-bottom: 10px;
    width: 80px;
    height: 30px;
    background-color: #000000;
    border-radius: 200px;
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr;
    font-size: 15px;
}

.productStatusCOVER {
    display: flex;
    justify-content: center;
}

.productStatus {
    height: 45px;
    width: 250px;
    background-color: rgb(239, 239, 239);
    border-radius: 100px;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
}

.productStatusMark {
    height: 100%;
    width: 100%;
    background-color: #D9D9D9;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.actualProductStatus {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.orderStatusControl {
    background-color: white;
    height: 205px;
    width:  100%;
    border-radius: 25px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*.orderStatusControlTITLE {
    background-color: #2E2E2E;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}*/

.orderStatusControlOPTIONS {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 12px;
}

.firstTwo {
    width: 250px;
    height: 37px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
}

.prepairingOrder {
    background-color: #D9D9D9;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    border-top-right-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 10px;
}

.inDelivery {
    background-color: #FD9E2B;
    height: 100%;
    width: 100%;
    border-radius: 7px;
    border-top-left-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 10px;
}

.finishTheOrder {
    width: 250px;
    height: 37px;
    background-color: #2DAF4E;
    border-radius: 7px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center;
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 10px;
}
.addOrderCancel {
    width: 100%;
    height: 48px;
    background-color: rgba(128, 128, 128, 0.650);
    border: 4px solid gray;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.addOrderProduct {
    width: 85%;
    height: 70px;
    background-color: #2DAF4E;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 18px;
    border: none;
}

.orderSentText {
    margin-top: 20px;
    font-size: 30px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    text-align: center;
}

.orderSentText2 {
    margin-top: 20px;
    font-size: 15px;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    text-align: center;
}

/*
.productPhotoHolderCARTDASHBOARD {
    height: 100%;
    width: 100%;
    scale: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

@media only screen and (min-width: 700px) {
    .mainProductList {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .productPhotoHolder {
        width: 20vw;
        height: 20vw;
    }

    .productName {
        width: 19vw;
    }

    .animationContentsOFFER {
        display: flex;
        justify-content: center;
    }

    .offer {
        width: 80%;
        border-radius: 30px;
    }

    .offer p {
        display: flex;
        justify-content: center;
    }

    .RTL {
        width: 80%;
    }

    .stickyHeader.isStuck {
        padding-top: 0px;
        padding-bottom: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        background-color: rgba(56, 56, 56, 0.32);
        display: inline-block;
    }

    .categorySelector {
        width: 80%;
        height: 40px;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        scroll-behavior: smooth;
        border-radius: 13px;
        box-sizing: border-box;
    }

    .productPage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
    }

    .otherProducts {
        height: 240px;
        width: 100%;
        display: flex;
        overflow: auto;
        gap: 45px;
        padding-bottom: 100px;
    }

    .productNameMAIN {
        margin-top: 48px;
    }

    .productPhotoHolderMAINBORDER {
        height: 390px;
        width: 390px;
    }

    .backbtnWidth {
        width: 390px;
    }

    #photoCarouselDialog {
        width: 30vw;
        max-width: 30vw;
        width: 100%;
        border: none;
        padding: 0px;
        padding-top: 0px;
        padding-bottom: 20px;
        box-sizing: border-box;
        box-shadow: 0px 0px 500px gray;
        border-radius: 25px;
    }

    #photoCarouselDialog .productPhotoMAIN {
        border-radius: 0;
    }

    .photoDialogCloseBtn {
        margin-top: 10px;
        width: 90%;
        height: 50px;
        border-radius: 25px;
        background-color: rgb(223, 223, 223);
        font-family: "Rubik", sans-serif;
        font-weight: 700;
    }

    .cartGridLandscape {
        display: grid;
        grid-template-columns: 1fr 1fr;
        direction: rtl;
    }

    .pricesCountCart {
        margin-top: 158px;
    }

    .cartItem {
        grid-template-columns: 30% 70%;
    }

    .graySeperatorDisable {
        display: none;
    }

    .finishOrderInputsGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        scale: 0.9;
    }

    .cutDownMarginInFinishOrder {
        margin-bottom: 0;
    }

    .finishOrderSubmitRTL {
        width: 250px;
    }

    .homepageStyleContainers {
        width: 20vw;
    }

    .order {
        display: grid;
        grid-template-columns: 0.5fr 1fr;
        gap: 10px;
        margin-bottom: 108px;
    }

    .customerInfo {
        height: 100%;
    }

    .productInfo {
        height: 100%;
        margin-bottom: 0;
    }

    .orderStatusControl {
        height: 100%;
    }

    .productPhotoHolderCARTDASHBOARD {
        height: 200px;
        width: 200px;
    }
}

@media only screen and (min-width: 1100px) {
    .mainProductList {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .productPhotoHolder {
        width: 15vw;
        height: 15vw;
    }

    .productName {
        width: 14vw;
    }

    .cartItem {
        grid-template-columns: 20% 80%;
    }

    .homepageStyleContainers {
        width: 14vw;
    }
}