/*
 Theme Name:   Industrie Child
 Theme URI:    https://demo.rstheme.com/wordpress/industrie/
 Description:  Industrie Child
 Author:       RSTheme
 Author URI:   http://rstheme.com
 Template:     industrie
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 */
.blog-btn-part li:first-child {
    display: none;
}

#wpforms-29741.wpforms-container input.wpforms-field-medium{
	max-width:100% !important;
}
#wpforms-form-29741 .wpforms-submit-container{
	text-align:center !important;
}
.wpforms-submit::after {
  content: "→";
  margin-left: 8px;
  font-size: 16px;
}
.single-post .rs_comments{
	display:none;
}
.home .pre-blog-meta li:nth-child(1){
	display:none;
}
.home .pre-blog-meta li, .blog-meta li {
    list-style: none !important;           /* remove default bullet */
    position: relative !important;
    padding-left: 22px !important;         /* space for icon */
}

.home .pre-blog-meta li::before,  .blog-meta li::before{
    content: "\f073" !important;           /* calendar icon (Font Awesome) */
    font-family: "Font Awesome 5 Free" !important; 
    font-weight: 900 !important;           /* solid style */
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #666 !important;                /* change color */
}

/* Container for the product grid */
.product-grid-style1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Individual product card */
.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Product thumbnail */
.product-thumb {
    position: relative;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.05);
}
.product-info{ 
	background-color: #f7c600;
}   
/* Overlay that appears on hover */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.product-card:hover .overlay {
    opacity: 1;
}

/* Icon link inside the overlay */
.icon-link {
    background-color: #e2be31;
    border-radius: 90%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.icon-link:hover svg {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


/* Product information */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #222;
}
