@import url('general_product_display_card.css');
@import url('venture_summary.css');
@import url('product_details_popup.css');
@import url('products_and_shops_links.css');

/*** For proximity warning ***/
:root {
    --brand-cyan: #08d9e3;
    --brand-indigo: #4338ca;
    --warning-red: #dc2626;
    --warning-amber: #d97706;
    --page-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

#proximity_warning {
    box-sizing: border-box;
    max-width: 600px;
    margin: 0 auto;
    width: 95%;
}

/* --- STYLE 1: THE NEON PULSE --- */
#proximity_warning .alert-pulse {
    background: #fef2f2;
    border: 1px solid var(--warning-red);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse-border 2s infinite;
    color: #991b1b;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

#proximity_warning .alert-pulse .icon {
    font-size: 24px;
}

/* --- STYLE 2: GLASSMORPHISM SLIDE --- */
#proximity_warning .alert-glass {
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    border-left: 5px solid var(--brand-cyan);
    padding: 16px;
    border-radius: 4px 12px 12px 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #134e4a;
}

@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* --- COMMON UTILITIES --- */
#proximity_warning p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

#proximity_warning .cta-link {
    display: inline-block;
    margin-top: 8px;
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--brand-cyan);
    transition: all 0.3s ease;
}

#proximity_warning .cta-link:hover {
    color: var(--brand-indigo);
    border-bottom-color: var(--brand-indigo);
    transform: translateY(-1px);
}
/** end of proximity warning **/

#add_to_cart_div {
    width:100%;
    text-align:center;
    margin:25px auto;
}
#addtocart, #addtodishcart {
    font-size:16px;
    border-width:0; 
    border-radius:5px;
    background-color: rgb(0, 153, 230);
    padding: 10px 60px;
    width:max-content;
    /*box-shadow:0 2px 3px 0 dimgray;*/
    color:white;
    font-weight: bold;
}
#addtocart:hover, #addtodishcart:hover {
    background-color:rgb(0, 140, 230);
    cursor:pointer;
    box-shadow:0 1px 0 0 darkgray
}

#visit_shop {
    text-decoration: none;
    display:inline-block;
    color:rgb(29, 29, 29);
    font-size:14px;
    background-color: rgb(224, 224, 224);
    padding: 7px 25px;
    border-width:0; 
    border-radius:3px;
}
#visit_shop:hover {
    cursor:pointer;
}
#product_sharing_div{
    margin-top:10px;
}


#product_details_and_order_section_wrapper{
    display:-webkit-flex;
    display:flex;
    flex-wrap: wrap;
    margin-top:35px;
    width:100%;
    justify-content: space-between;
}
#product_details_and_order_section {
    min-width:calc(100% - 510px);
    max-width: 100%;
    margin:0 auto;
    display:flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content:space-between;
}

#order_placement_section {
    box-sizing: border-box;
    width:25vw;
    max-width:350px;
    height:max-content;
    position: -webkit-sticky;
    position:sticky;
    top:75px;
    border:1px solid lightgray;
    border-radius:10px;
    padding:10px;
    margin-left:25px;
    margin-top:25px
}
#main_page_product_not_available {
    margin:15px auto;
    margin-top:25px;
    color:dimgray;
    font-size:13px;
    text-align:center
}
#main_img_vid_section_wrapper {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.product_file_displayer {
    width:25vw;
    min-width:310px;
    max-width:410px;
    border-radius:10px;
    margin-top:20px;
}
#extra_products_files_section {
    margin-top:20px;
    display: flex;
    flex-direction: column;
    /*-ms-overflow-style: none; 
    scrollbar-width: none;*/
    max-height:200px;
    overflow: hidden;
    overflow-y: auto;
}
#extra_products_files_section::-webkit-scrollbar {
    display: none;
}

.extra_product_pictures {
    display:inline-block;
    border:1px solid lightgray;
    border-radius:3px;
    padding:5px;
    width:50px;
    height:max-content;
    cursor: pointer;
    margin-top:5px;
    margin-right:5px;
    text-align: center;
}
.extra_product_pictures:hover {
    transform: scale(1.05);
}
.video_file_indicator {
    font-size:10px;
    color:dimgray;
    text-align:center;
}
#extra_products_files_section img {
    max-width: 100%;
    max-height: 100%;
    border-radius:3px;
}
#product_details_section {
    width:max-content;
    height: max-content;
    margin-left:35px;
    margin-top:25px;
    margin-right: 20px;
    text-align: center;
}

#product_details_table{
    box-sizing: border-box;
    border-collapse:collapse;
    margin-right:15px;
}
#product_details_table td, #product_details_table th {
    font-size:14px;
    padding:15px;
    border:1px solid rgb(231, 227, 227)
}
#product_details_table td {
    padding-left:15px;
    text-align:left;
    min-width:150px;
    max-width:300px;
}
#product_details_table th {
    text-align:left;
    max-width:125px;
}
.others {
    width:22vw;
    height:20vw;
    max-width: 210px;
    max-height:210px; 
    margin-right:10px;
}
.others:hover {
    transform:scale(1.1);
}
.subheadings {
    box-sizing:border-box;
    background-color:lightgray;
    border:1px solid lightgray;
    border-radius: 3px;
    padding:10px 25px;
    width: max-content;
    margin-top:25px;
    white-space:nowrap;
    font-size:15px;
}
#product_description_section {
    /*width: max-content;
    height: max-content;
    clear: both;*/
    overflow: hidden;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
#product_description * {
    font-family: "Ember",Arial, Helvetica, Times, 'Sans-Serif';
}
#product_description span, #product_description p, #product_description div {
    line-height:1.6em;
    font-size:14px;
}
#product_description img,#product_description video {
	/*max-height:700px;
    max-width:1200px;
    border-radius: 10px;
    display:block;
    margin:auto auto;
    margin:10px auto;*/
    border-radius: 10px;
    margin: 10px;
}

#action td, #action th, #action {
    border-width:0;
}
#multi_color_row_label th, #multi_size_row_label th{
    border-width:0;
    text-align: left;
}
.multi_options_section_title {
    font-weight:bold;
    display: inline-block;
    padding:10px;
    border:1px solid lightgray;
    border-radius: 3px;
    width:250px;
    background-color:rgb(226, 226, 226);
    text-align:center;
    white-space: nowrap;
    margin-bottom:10px
}
#multi_color_items_row td, #multi_size_items_row td{
    border-width:0 !important;
    text-align: left;
    max-width:500px;
}

label {
    cursor:pointer
}
.color_ball {
    width:20px;
    display:inline-block;
    position:relative; 
    top: 7px; 
    height:20px; 
    padding:5px;
    border:1px solid lightgray;
    border-radius:50%;
    margin-right:5px;
}
.product_name_td {
    max-width:350px;
    line-height:1.5em;
    font-weight:bold;
}

.click_me {
    margin:auto 5px;
}
hr {
    margin:15px auto;
    width:75%;
}

/* for the client comment section*/

#comment_display_section{
    /*border:1px solid lightgray;
    border-radius:5px;
    border-width:1px 0;*/
    font-size:14px;
    width:95%;
    max-width: 900px;
    height:max-content;
    min-height:150px;
    max-height:1000px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding:10px
}
.individual_comment_section {
    margin-top:25px;
    margin-bottom:25px;
}
.individual_comment_section:not(:last-of-type){
    border:0 solid lightgray; 
}
#feedback_label {
    padding:7px 25px;
    border:1px solid lightgray;
    border-radius:5px;
    background-color:lightgray;
    margin-top:35px;
    width:max-content;
    /*position:relative;
    top:32px;
    left:15px;*/
    white-space: nowrap;
}
.client_picture {
    display:inline-block;
    width:35px;height:35px;
    border-radius:50%;
    border:1px solid lightgray
}
.client_name {
    margin-left:10px;
    position:relative;
}
.comment_posting_time {
    color:gray;
    font-size:9px;
    padding-left:15px !important;
    padding-top:3px
}
.client_comment_div {
    margin-top:10px;
    margin-bottom:10px;
    border:1px solid lightgray;
    border-radius:3px;
    padding:10px;
    max-width:98%;
    height:max-content;
    text-align:justify;
    box-sizing: border-box;
}
.overall_opinion {
    margin:5px !important;
    font-size:14px;
}
.client_comment {
    font-size:14px;
    width:100%;
    line-height:1.7em;
}
.rating_stars_container {
    width:75px;
    height:auto;
    margin-bottom:5px;
    margin-top:5px;
    cursor: pointer;
}
.rating_stars_container img {
    max-width:100%
}
.comment_section_order_state {
    color:gray;
    font-size:12px;
}
.abuse_report_bt {
    border-width:0;
    padding:5px 10px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: lightgray;
    border-radius:2px;
    font-size:10px
}
.abuse_report_bt:hover {
    background-color: darkgray;
    color: white;
}



/*  end of clients comment styling section */

/*  for styling the main product rating stars*/

#total_rating_star_display_window{
    display:inline-block;
    height:auto;
    width:75px;
    margin-right:10px;
}
#total_rating_star_display_window img {
    max-height: 100%;
    max-width: 100%;
}
.voting_score,.number_of_vote {
    display:inline-block;
    position:relative;
    top:-3px;
    margin-right:10px;
}
.number_of_vote {
    color:gray;
    font-size:12px;
    margin-left:15px
}


#different_sizes_section {
    margin-top:25px;
    margin-bottom:50px;
}
#different_sizes_section p {
    padding:10px;
    border:1px solid lightgray;
    border-radius:3px;
    font-weight:bold;
    width:60%;
    margin:auto auto;
    margin-bottom:35px;
    background-color:lightgray;

}
#different_sizes_section input {
    margin-left:25px;
    margin-right:10px;
}
#multiple_options_table {
    margin-top:20px;
    max-width:100vw
}
#multiple_options_table td {
    min-width:75px;
    width:max-content;
    padding:10px 20px;
}


#product_not_found,.product_not_found {
    text-align:center; 
    margin:75px auto; 
    color: dimgray; 
    font-size: 14px; 
}
.order_delivery_date_section {
    border:0 solid lightgray;
    border-radius:5px;
    margin-bottom:25px;
    box-sizing:border-box;
    width:max-content;
    max-width: 100%;
    line-height:1.7em;
    text-align:left
}
.order_delivery_date_section label {
    font-weight:bold;
    display: inline-block;
    margin-bottom: 5px;
}
.pre_order_instructions {
    font-size:13px;
}
.pre_order_instructions * {
    color:rgb(44, 43, 43);
}
.blinking_pre_order_message {
    display:inline-block;
    border:0px solid brown;
    padding:7px 25px;
    box-sizing: border-box;
    border-radius:5px;
    margin-bottom:10px;
    background-color:lightgray;
    color:black;
    font-weight:bold;
}
#pre_order_effect_hour, #pre_order_effect_min {
    border:1px solid lightgray;
    padding:7px;
    text-align:center;
    border-radius:3px
}
#selected_pre_order_effect_hour, #selected_pre_order_effect_min {
    display:inline-block;
    padding:5px 10px;
    border:1px solid lightgray;
    border-radius:3px;
    margin-right:5px;
    font-size:14px;
}
#pre_order_note *, #pre_order_note  {
    color:rgb(97, 97, 97);
    font-size:14px;
}
#pre_order_note{
    margin-top:10px
}
#dish_availability_warning {
    color:#f35d07;
    font-weight:bold;
    font-size:14px;
}
#product_details_and_order_section input[type = "radio"]{
    cursor: pointer;
    display: inline-block;
    margin-right:10px;
}
.multi_opt_elmt_label {
    box-sizing: border-box;
    padding:7px 20px 7px 0;
    cursor: pointer;
    border-width:0;
    border-radius:5px;
    white-space: nowrap;
    display: inline-block;
    margin-right:25px;
    margin-bottom:15px;
    border: 1px solid lightgray
}
label.color_choice_elmt {
    padding:0px 20px 2px 0;
    background-color:unset;
    border-width:0
}
.multi_opt_elmt_label:not(label.color_choice_elmt):hover {
   background-color:rgb(235, 235, 235)
}

#zoomed_in_image_window {
    position: fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: rgba(7, 7, 7, 0.918);
    text-align:center;
    z-index:99999
}
#zoomed_in_image {
    margin: auto auto;
    margin-top:75px;
    border-radius:5px;
    max-height:calc(100% - 150px);
}

#main_product_quantity_section {
    width:100%;
    text-align:center;
}
#main_product_quantity_label {
    display:block;
    margin-top:25px;
}
#main_product_quantity_ordered {
    padding:10px 35px 10px 10px;
    border:1px solid lightgray;
    border-radius:5px;
}
#main_product_quantity_ordered:hover {
    border: 2px solid rgb(0, 140, 230)
}
#main_product_quantity_ordered:focus {
    box-shadow: 0 0 15px 1px rgb(0, 140, 230);
}
.delivery_information_zone {
    margin-top:15px;
    margin-bottom:35px;
    display: block;
}
.delivery_info_content {
    position:static !important
}
.delivery_info_content div, .delivery_info_content p {
    font-size:13px !important
}
.hurray_word {
    font-size:20px;
    color:#4400B2
}
.more_info_on_delivery {
    display:block;
    margin-top:5px;
    width: 95%;
    line-height:1.6em;
    color:rgb(44, 43, 43);
}
.more_info_on_delivery * {
    color:rgb(44, 43, 43)
}
.sub_section_title {
    padding:7px 15px;
    border:1px solid lightgray;
    border-radius:5px;
    display:block;
    width:max-content;
    white-space: nowrap;
    height:max-content;
    margin-bottom:5px;
    font-weight: bold;
}
.delivery_fee_warning {
    color:brown
}
.discount_info_section {
    margin-top:25px;
    margin-bottom:35px;
}
.discount_info_content {
    line-height: 1.6em;
    color:rgb(44, 43, 43);
    margin-top:5px;
}
.discount_info_content * {
    color:rgb(44, 43, 43)
}

.inaccurate_data_warning {
    margin-top:10px;
    font-size:13px;
    color:dimgray;
    display: block;
}
.inaccurate_data_warning a {
    color: rgb(0, 140, 230) !important;
}
#undiscounted_price_display_label,.undiscounted_price_display_label {
    font-size:11px;
    display: inline-block;
    color:gray;
    text-decoration: line-through;
}
.now_word {
    display: inline-block;
    margin-left:7px;
    margin-right:7px;
    font-size:11px;
    color:dimgray
}
#how_much_saved_label {
    display: block;
    margin-top:10px;
    font-size:12px;
}
#how_much_saved_value {
    color:green;
    font-weight: bold;
}

.section, .products_display_section {
    display:-ms-flexbox;
    display:-webkit-flex;
    display:flex;
    flex-wrap: wrap;
    flex-direction:row;
  
}


/* product report section styling  */
#product_report_btn_init_section {
    margin-top: 10px;
    color: dimgray;
    text-decoration: underline;
    font-size: 13px;
}
#product_report_btn_init {
    cursor: pointer;
}
#product_reporting_section_wrapper {
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color: rgba(0, 0, 0, 0.225);
    display: none;
}

#product_reporting_window {
    box-sizing: border-box;
    width:98%;
    min-width: 275px;
    max-width: 500px;
    background-color: white;
    border-radius: 7px;
    padding: 10px;
    margin: auto;
    margin-top: 75px;
}
#product_reporting_window_header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-right: 10px;
}
#product_reporting_window_closer{
    cursor: pointer;
    font-size:14px
}
#product_reporting_window_closer:hover{
    transform: scale(1.1);
}

#product_reporting_window_body label {
    display: block;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 7px;
}
#product_reporting_window_body select, #product_reporting_window_body textarea{
    border:1px solid lightgray;
    border-radius: 3px;
    padding: 10px;
    width:95%;
    max-width: 350px;
    min-width: 250px;
    margin-bottom: 25px;
    font-size: 13px;
}
#product_reporting_window_body textarea{
    line-height: 1.6em;
    min-height:100px
}
#product_links_section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: right;
    padding-right: 25px;
    margin-top:10px
}

/* for styling the associated packs and product pages section */

.no_data {
    font-size:12px
}

.r_category {
    margin-bottom:7px;
}
.element_description {
    display:block;
    font-size:13px;
    line-height:1.6em;
    max-height:100px;
    overflow: auto;
}
.element_description img{
    border-radius: 5px;
    /*max-width:55px;
    max-height:55px*/
}


@media only screen and (max-width:1302px){
    #product_details_and_order_section {
        min-width: 95% ;
        width:100%;
    }
    #order_placement_section {
        margin:auto auto;
        margin-top:15px;
        max-width:350px;
    }
}

@media only screen and (max-width:802px){
    #page_title {
        margin-top:25px;
    }
    #visit_shop {
        font-size:13px;
    }
    #addtocart, #addtodishcart{
        font-size:14px;
        padding:10px 70px;
    }
    .product_name_td {
        max-width:250px;
        line-height:1.5em;
    }
    .product_file_displayer{
        width:30vw;
        min-width:410px;
        max-width:410px;
        border-radius:10px;
    }
    #product_details_section {
        min-width:max-content;
        max-width:1200px;
        margin-left:5px;
    }
    #product_details_table{
        margin-right:15px;
        border:1px solid gray;
    }
    #product_details_table td, #product_details_table th {
        font-size:12px;
        width:max-content;
        padding:10px 15px ;
    }
    #product_details_table td{
        max-width:250px;
    }
    .subheadings {
        font-size:14px;
        padding:7px 15px;
    }
    #product_description {
        font-size: 13px;
        width:95%;
    }
    #product_description span, #product_description p, #product_description div {
        font-size:13px !important;
    }
    .color_ball {
        width:12px;
        top: 5px; 
        height:12px;         
    }
    #dish_availability_warning {
        font-size:13px;
    }
    /* for the comment section*/
    #comment {
        font-size:12px;
        min-height:150px;
        line-height:1.6em;
        width:95vw
    }
    #comment_display_section{
        margin-top:25px;
        width:100%;
        border-width:1px 0 0 0;
        min-height:100px;
    }
    #feedback_label {
        padding:5px 20px;
        font-size:13px;
        top:15px
    }
    .client_picture {
        width:35px;height:35px;
    }
    .client_name {
        font-size:13px;
    }
    .client_comment_div {
        margin-top:0;
        margin-bottom:25px;
        width:98%;
        min-height:5vh;
        height:max-content;
        max-height:200px;
    }
    .client_comment {
        font-size:12px;
        line-height:1.7em;
    }
    .no_review {
        font-size:12px;
    }
    .voting_score,.number_of_vote {
        font-size:12px;
    }
    #zoomed_in_image {
        max-width:90%;
        max-height:calc(100% - 150px);
    }
    .subheadings {
        margin-top:35px;
        font-size: 13px;
    }
    .inaccurate_data_warning {
        font-size:12px;
    }
    #order_placement_section {
        margin:auto auto;
        width:50vw;
        max-width:400px;
        margin-top:25px
    }
  
    .overall_opinion {
        font-size:13px;
    }
	#product_description img {
		width:90%;
		max-width: 95%;
	}
      
    #different_sizes_section p {
        font-size:14px;
    }
    #different_sizes_section label {
        font-size:small;
        margin-right:15px;
    }
    #different_sizes_section input {
        margin-left:15px;
        margin-right:5px;
    }

}

@media only screen and (max-width:602px){
   
    #main_img_vid_section_wrapper {
        display:flex;
        flex-direction: column-reverse;
    }
    #product_details_and_order_section_wrapper{
      
        margin-top:15px;
     
    }
    #extra_products_files_section {
        max-height: unset;
        height:unset;
        max-width:98%;
        overflow:hidden;
        overflow-x:auto;
   
        margin-top:10px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    #order_placement_section {
        width:75vw;
        max-width:350px;
        margin-top:25px
    }
    .discount_info_content,.more_info_on_delivery,.pre_order_instructions {
        font-size:12px;
    }
    .sub_section_title {
        font-size:14px;
    }
    #product_details_and_order_section {
       
        justify-content: unset;
    
    }
    .inaccurate_data_warning {
        font-size:11px;
    }
    .product_file_displayer{
        width:30vw;
        min-width:310px;
        max-width:410px;
        border-radius:10px;
    }
    .individual_comment_section {
        margin-top:15px;
        margin-bottom:15px;
    }
    #comment_display_section{
        width:98%;
        border-width:1px 0 0 0;
        min-height:100px;
        max-height:700px
    }
    #comment_display_section p{
        margin-top:2px;
        margin-bottom:5px
    }
    .rating_stars_container {
        width:75px;
        
    }
    .comment_posting_time {
        margin-top:0px;
        margin-bottom:0
    }
  
    #product_sharing_div{
        margin-top:5px;
    }
    
    .voting_score,.number_of_vote {
        top:-3px;
        margin-right:5px;
        font-size:12px;
    }
    .number_of_vote {
        margin-left:7px;

    }
    #dish_ingredients , #product_description * {
        font-size:13px;
    }
 
    #undiscounted_price_display_label,.undiscounted_price_display_label {
        font-size:11px;
        
    }
    #how_much_saved_label {
       
        font-size:11px;
    }

    .page_article {
        margin-bottom:15px;
        width:98%;
    }
    
    .result_header a {
        font-size:13px;
    }
    .page_link{
        font-size:12px;
        max-width: 200px;
    }
    .r_category{
        font-size:11px;
        border:0 solid rgb(226, 226, 226);
        border-bottom-width: 1px;
        padding-bottom:5px;
        margin-bottom:10px;
    }
    .element_description {
        font-size:12px;
    }
   
}

@media only screen and (max-width:402px){
    
    .subheadings {
        margin-top:35px;
    }
    .product_file_displayer{
        width:30vw;
        min-width:275px;
        max-width:350px;
        border-radius:10px;
    }
    #order_placement_section {
        width: 98vw;
        max-width:98%;
        margin-top:25px
    }
    .voting_score,.number_of_vote {
       
        font-size:11px;
    }
  
    #visit_shop {
        font-size:12px;
    }

    .r_category, .page_link {
        font-size:11px;
    }

}