/*
Theme Name: twentyTwentyFive-child
Theme URI: https://exergy.cloud
Template: twentytwentyfive
Author: Doug Pichen
Author URI: https://exergy.cloud
Description: A child theme
Version: 1.0.0.1759977304
Updated: 2025-10-09 02:35:04

*/


body {

 /*   background-color: rgb(242,107,28);*/
 /*   background-color: rgb(255 104 29/var(--tw-bg-opacity,1));*/



    background-color: (255, 255, 255);
    color: var(--pal-colors-default-content-default);
    font-family: Circular, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: .015625rem;
    line-height: 1.5;
    margin: 0;*/
}

/* General WordPress page titles */
.entry-title {
    font-size: 20px;
}


/* WooCommerce breadcrumbs */
.woocommerce-breadcrumb {
    font-size: 12px;   /* adjust to your preferred size */
    line-height: 1.6;  /* optional: improves readability */
}



/* Center the login box on the default WordPress login page */
body.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Optional: centers vertically in the viewport */
    background-color: #f0f0f0; /* Change background color of the page */
}


.login #login {
    width: 300px; /* **Adjustable width: set your desired narrower width** */
    max-width: 90%; /* Ensures responsiveness */
    background-color: #ffffff; /* Different color for the login box */
    padding: 10px;
    border-radius: 5px; /* Optional: adds rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds a subtle shadow */
}

/* Ensure the image container remains centered within the login container or page */
.custom-login-image {
    text-align: center;
}

/* Style for the WooCommerce login forms */
.woocommerce form.login, .woocommerce form.register {
    background-color: #ffffff; /* Different color for the form */
    padding: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 40%; /* **Adjustable width for WooCommerce form (e.g., 60%)** */
    margin: 0 auto; /* Centers the form within its container */
    max-width: 300px; /* **Optional: set a narrower max width** */
}


#add_payment_method #payment ul.payment_methods li, 
.woocommerce-cart #payment ul.payment_methods li, 
.woocommerce-checkout #payment ul.payment_methods li {
    line-height: 2;
    text-align: left;
    margin: 0;
    font-weight: 400;
    VISIBILITY: HIDDEN;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background:  #ffffff; 
    border-radius: 5px;
}

/* Hide price on single product summary and variation selection */
.single-product .summary .price,
.single-product .single_variation .price {
    display: none !important;
}



/* Hide the WooCommerce sorting dropdown in block themes */
.woocommerce-ordering,
.product-subtotal,
.product-price,
.woocommerce-table__product-table  {
    display: none !important;
}

/* A more specific selector for the block-based catalog sorting */
.wc-block-catalog-sorting .woocommerce-ordering {
    display: none !important;
}

/* Custom CSS to move the order details and thank you message */
.woocommerce-order-overview,
.woocommerce-thankyou-order-view-orders,
.woocommerce-thankyou-order-received {
    /* Pushes content from the left margin */
    margin-left: 20%;
    /* Prevents content from overflowing */
    width: 80%;
}

/* This targets the 'actions' area for failed orders if needed */
.woocommerce-thankyou-order-failed-actions {
     margin-left: 20%;
}


/* Center product title and add-to-cart button under product image */
.woocommerce ul.products li.product {
    text-align: center; /* Centers all content inside the product box */
}

/* Ensure product title is centered */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    text-align: center;
    min-height: 2.5em; /* Optional: keeps titles aligned if lengths differ */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center the Add to Cart button */
.woocommerce ul.products li.product .button {
    display: inline-block;
    margin: 10px auto 0 auto; /* Centers button horizontally */
}

/* Optional: make all product boxes equal height */
.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




/* Ensure modal overlays all other content and centers content */
.rp-modal {
  display: none;
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);

  /* New centering styles */
  display: flex;             /* Use flexbox */
  align-items: center;       /* Center vertically */
  justify-content: center;   /* Center horizontally */
  overflow-y: auto;          /* Allow scrolling if content is too long */
}

/* Modal Content/Box - Remove margin properties previously used for centering */
.rp-modal-content {
  background-color: #fefefe;
  /* Remove 'margin: 15% auto;' as flexbox now handles centering */
  font-family: Circular, sans-serif;
  margin: 0px; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  position: relative; 
  z-index: 10000;
  
  /* Flexbox styles to push buttons to the bottom */
  display: flex;
  flex-direction: column; 
  min-height: 250px; 
}

/* Style the button container, making it take remaining space and align to the bottom/end */
.rp-button-container {
    margin-top: auto; /* Pushes this container to the bottom of the flex container */
    padding-top: 15px; /* Add space above the buttons */
    display: flex; 
    justify-content: flex-end; /* Aligns buttons to the right side of the container */
    width: 100%;
}

/* Style for the Acknowledge/Accept button */
.rp-accept-btn {
    background-color: black; 
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 10px; 
    margin-top: 0; 
}

/* Style for the Cancel button */
.rp-cancel-btn {
    background-color: white;
    color: Black;
    padding: 10px 15px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 0; 
}

/* Style for disabled accept button */
.rp-accept-btn:disabled {
    background-color: black; 
    color: white;
    cursor: not-allowed;

}

/* Style for the checkbox wrapper */
.rp-ack-checkbox-wrapper {
    margin-bottom: 15px;
    margin-top: 15px;
    clear: both;
}

.warning-text {
    color: #E90B5A;
    font-weight: bold;
}


.boldCat{
 font-weight: bold;

}

.product-meta-links {
    font-size: 14px;
    color: #555;
}
.product-meta-links a {
    color: #0073aa;
    text-decoration: none;
}
.product-meta-links a:hover {
    text-decoration: underline;
}

/* hide footer nav  

.wp-block-template-part {
    display: none !important;
}*/

.custom-footer-message {
    /* Fixes the element to the bottom of the viewport */
  /*  position: fixed;*/
    position: absolute;
    bottom: 10px;
    /* Remove left: 0; to allow right positioning */
    right: 0; /* Ensures it spans the full width, or set a specific value for right alignment */
    width: auto; /* Change from 100% to auto or a specific width if you want it to not span full width */
    padding: 10px;



    /* Add styling */
     color: lightgray;
     font-size: 16px;
     text-align: right;
   
     /*
    
    padding: 10px 0;
    background-color: #000;
    color: #fff;
    z-index: 1000; /* Ensures it is on top of other elements */
    /*box-sizing: border-box;*/
}

.tagline a,
.tagline a:visited,
.tagline a:hover,
.tagline a:focus,
.tagline a:active {
    text-decoration: none; /* No underline */
   
}




/* Hide price on all WooCommerce archive/shop pages */
.woocommerce-page .price,
.woocommerce-page .wc-block-grid__product .amount {
    display: none !important;
}






/* Clamp product descriptions */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__description {
    display: -webkit-box;
    -webkit-line-clamp: 3;       /* limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: 4.2em;           /* 3 lines × line-height */
}





/*
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* keeps it inside the card */
/*}*/



/***********************/



/* Make button rounded */


/* Target WooCommerce buttons and force rounded corners */
/* Make WooCommerce buttons fit text width */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button,
.add_to_cart_button {
    display: inline-block !important; /* Prevent full-width */
    width: auto !important;           /* Auto size to content */
    white-space: nowrap;              /* Prevent text wrapping */
    border-radius: 50px !important;   /* Rounded corners */
    padding: 0.6em 1.2em !important;  /* Space around text */
    line-height: 1.4;                  /* Better vertical alignment */

}


/***********************/

#custom-mini-cart {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    border-left: 1px solid #ddd;
    padding: 15px;
    z-index: 9999;
    transition: right 0.3s ease;
}
#custom-mini-cart.open {
    right: 0;
}







/*
.w-full {
    width: 100%
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}
.max-w-md {
    max-width: 28rem
}
.gap-2 {
    gap: .5rem
}
*/



/*
.wc-block-cart-item__total-price-and-sale-badge-wrapper {
            visibility: hidden;
        }


.price   {
            visibility: hidden;
        }


.wc-block-cart-items__header-total   {
            visibility: hidden;
        }


.wp-block-woocommerce-cart-order-summary-heading-block  {
            visibility: hidden;
        }

.wc-block-components-totals-item__label{
            visibility: hidden;
        }

.wc-block-formatted-money-amount{
            visibility: hidden;
        }

.wc-block-components-totals-item__value{
            visibility: hidden;
        }



.wc-block-order-confirmation-summary-list-item__key,  .woocommerce-Price-amount {
display: none;
}


.wc-block-order-confirmation-totals__label, .wc-block-order-confirmation-totals__total, .wc-block-order-confirmation-totals__label{
display: none;
}

.HideBlock{
display: none;
}


*/
