.product_section {
    padding: 100px 0px;
    background: #f4f4f4;
}

.product_section .section_heading {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.product_section .section_heading h2{
    font-family: "Bahnschrift", "Helvetica", sans-serif !important;
    font-size: 56px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0px;
    padding: 0px;
    line-height: 1;
}

.product_section .section_heading h3{
  display: inline-block; /* Wrap background tightly around text */
  font-family: "bahnschrift-condensed", "helvetica", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: 30px;
  background: #497738;
  padding: 5px 40px; /* Optional: more horizontal breathing room */
}
  
.product_section .section_heading p {
  font-family: "darwin pro","arial", sans-serif;
  font-weight: 100;
  font-style: normal;
  margin: 0;
  font-size: 20px;
  color: #000;
  line-height: 30px;
  letter-spacing: 0.1px;
  padding: 10px 0px;
}
  

.product_section .row_product {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}

.product_section .row_product .column3 {
    width: 33.33%;
    padding: 15px;
}

.product_section .row_product .column3 .columnsp {
    background: #f0efea;
    box-shadow: 0px 15px 17px #787878;
    overflow: hidden;
    border-radius: 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product_section .row_product .column3 .columnsp .product_image {
    overflow: hidden;
    flex-shrink: 0;
}

.product_section .row_product .column3 .columnsp .product_image img {
    width: 100%;
    height: auto; /* show full image */
    object-fit: contain; /* or remove this line entirely */
}

.product_section .row_product .column3 .columnsp .product_title {
    height: 100px;
    padding: 20px;
    background: #2a2a2a;
    color: #2a2a2a;
    transition: background-color 0.5s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.product_section .row_product .column3 .columnsp .product_title:hover {
    height: 100px;
    padding: 20px;
    background: #497738;
    color: #497738;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.product_section .row_product .column3 .columnsp .product_title h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #FFF;
    font-family: "bahnschrift", "helvetica", sans-serif; !important;
    text-transform: uppercase;
}

.product_section .row_product .column3 .columnsp .product_title h3 {
    color: #ffffff;
    transition: background-color 0.5s ease;
}

.product_section .row_product .column3 .columnsp .product_title:hover h3 {
    color: #ffffff;
}

.product_section .row_product .column3 .columnsp:hover img {
    transform: scale(1.2);
    transition: 1s;
}

.product_section .row_product .column3 .columnsp:hover {
    border-color: #dfcc63;
}

.product_section .btn {
    margin-top: 40px;
    text-align: center;
    width: 100%;
    padding: 0px;
    border: 0;
}

.product_section .btn a {
    background-color: var(--primary-color-one);
    border: 1px solid var(--primary-color-one);
    color: #fff;
    display: inline-block;
    font-family: var(--onevilla-family-one);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    padding: 12px 30px;
    position: relative;
    transition: .5s ease-in-out;
}

.product_section .btn a:hover {
    background: #dfcc63;
    border-color: #dfcc63;
}
@media (max-width: 768px) {
  .product_section .row_product .column3 {
    width: 100%;
    margin-bottom: 20px;
  }
}