/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/
/* Hide SKU on product pages */
.product .sku_wrapper, .product .sku {
    display: none !important;
}

/* Hide Categories on product pages */
.product .posted_in {
    display: none !important;
}

.woocommerce-variation-availability {
    display: none !important;
}

/* Center Product List */
.product-list-center > .w-grid-list {
    justify-content: center !important; /* Center horizontally */
    align-items: center !important; /* Center vertically */
    position: relative !important;
}

.product-list-center > .w-grid-list > .w-grid-item {
	position: static !important;
}

/* Change the color of the sale price label */
.woocommerce-Price-amount.amount {
    color: #000000; /* Change this to your desired color */
}

/* Change the color of the regular price when a sale price is displayed */
.woocommerce div.product p.price del span.amount {
    color: #888888; /* Change this to your desired color */
}

.product_meta .tagged_as {
    display: none;
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 8% auto; /* 15% from top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Maximum width */
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* #open-modal.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */

/* #open-modal.button:hover {
    background-color: #005f8a;
} */

/* Basic Button Styles */
.responsive-button {
    font-size: 1em;
    line-height: 1.2 !important;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0em;
    border-radius: 0px;
    padding: 0.8em 1.7em;
    background: var(--color-content-text);
    border-color: transparent;
    color: #ffffff !important;
}

/* Hover Effects */
.responsive-button:hover {
    background-color: rgba(0,0,0,0.5);
/*     transform: translateY(-2px); */
}

.highlighted-border {
	border: 2px solid #FF0000 !important; /* red border color */
}

/* Make tables responsive */
.responsive-table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
    padding: 12px 18px;
/*     border: 1px solid #ddd; */
}


