/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1761672298
Updated: 2025-10-28 17:24:58

*/

.vp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline-end: 0;
  padding-inline-start: 0;
  width: 100%;
}

.product-title {
  font-family: "Jost", Sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
.vp-svg {
  fill: #fff;
}
.content {
  margin-top: 100px;
  margin-bottom: 100px;
}

.img-section img {
  border-radius: 25px;
}

.vp-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
}
.vp-col {
  max-width: 50%;
}

.desc-section table th, 
.desc-section table td {
    border: none;
        background-color: transparent!important;
        text-align: left;
}
.desc-section table {
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #797F7D;

}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ✅ 4 columns */
  gap: 20px;
  margin: 40px 0;
}

.product-card {
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h2 {
  font-size: 18px;
  margin-top: 10px;
  color: #333;
   font-family: "DM Sans", Sans-serif;
}


@media (max-width: 768px) {
  .vp-row {
    flex-direction: column;
  }
  .vp-col {
    max-width: 100%;
  }
  .content {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

