/* General Reset and Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.shop {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */

/* Brand Logos */
.brand_logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.brand_logos img {
  height: 40px;
  width: auto;
}

/* 🔘 Product Navigation Tabs */
.product-nav {
  text-align: center;
  margin: 30px 0;
}

.tab-button {
  background: #ffffff;
  color: #3bb24b;
  border: 2px solid #3bb24b;
  padding: 10px 25px;
  border-radius: 25px;
  margin: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  background-color: #3bb24b;
  color: #fff;
}

.product_blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product_block_border {
  border: 2px solid #3bb24b;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(48% - 20px);
  max-width: 600px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.product_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ececec;
  border-radius: 0.9rem;
  padding: 1rem;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.image_container {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_container img {
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

.content_container {
    position: relative;
    padding-bottom: 174px; /* Ensure space for bottom content */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bottom-row {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    align-items: center;
}

.brand-logo {
    height: 85px;
    object-fit: contain;
}



@media screen and (max-width: 768px) {
  .product_block_border {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.content_container {
  padding-left: 15px;
}

.brand img {
  height: 50px;
  width: auto;
}

section.shop .product_blocks .product_block .content_container .brand {
  font-weight: bold;
  background: #FFF;
  border-radius: 1em;
  padding: 1rem;
  width: 250px;
  text-align: center;
  border: 1px solid #CCCCCC;
}

.text-s {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding-top: 1rem;
  color: #333;
}

.selling_points_container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.selling_points_container li {
  font-size: 1.1rem;
  line-height: 1.4rem;
  text-indent: -13px;
  margin-left: 24px;
  padding: 0.3rem 0;
  color: #444;
}

.selling_points_container i {
  color: #3bb24b;
  margin-right: 5px;
}

/* Call to Action Buttons */
.cta_container {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cta_container.double .button_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: auto;
}

.button_wrapper {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-block;
  padding: 1.5rem 3rem;
  text-decoration: none;
  border-radius: 2.4rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0;
  min-width: 220px;
}

.cta {
  background-color: #3bb24b;
  color: #fff;
  border: 2px solid #3bb24b;
}

.cta:hover {
  background-color: black;
  border-color: #8dc63f;
}

.ghost {
  background-color: transparent;
  border: 1px solid #28a745;
  color: #28a745;
}

.ghost:hover {
  background-color: #e9f5e9;
}

.mini {
  display: none;
}
/* Brand Top Right */
.brand-top-right {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.brand-top-right img {
  background: #fff;
  border-radius: 1em;
  padding: 1rem;
  border: 1px solid #CCCCCC;
  width: 250px;
}
.brand-top-right-2 {
  background: #fff;
  border-radius: 1em;
  padding: 1rem;
  border: 1px solid #CCCCCC;
  width: 180px;
}

/* Button Bottom Right */
.button-bottom-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .brand-top-right,
  .button-bottom-right {
    justify-content: center;
  }

  .brand-top-right img,
  .button-bottom-right .button {
    width: 100%;
    max-width: 250px;
  }
}

.founder_section {
  background: linear-gradient(312deg, #3bb24b 0%, #8dc63f 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.founder_container {
  max-width: 900px;
  margin: 0 auto;
}

.founder_note_wrapper {
  display: flex;
  justify-content: center;
}

.founder_border {
  background: linear-gradient(145deg, #4aab3d, #8dc63f);
  padding: 4px;
  border-radius: 1.5rem;
  width: 100%;
}

.founder_card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 3rem 2rem;
  font-family: 'Manrope', sans-serif;
  color: #000000;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder_card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  background: #fdfdfd;
}

.founder_title {
  font-family: Radial;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #10733a;
}

.founder_card p {
  font-size: 1.05rem;
  line-height: 1.8rem;
  margin-bottom: 1.2rem;
  color: #444;
}

.founder_name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
}

.founder_signature {
  width: 150px;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 576px) {
  .founder_card {
    padding: 2rem 1.5rem;
  }

  .founder_title {
    font-size: 1.6rem;
  }

  .founder_card p {
    font-size: 1rem;
  }
}



@media screen and (max-width: 768px) {
  .brand-and-button {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-and-button .button_wrapper {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .brand-and-button .button {
    width: 100%;
    max-width: 250px;
  }
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 960px) {
  section.shop .brand_logos {
    display: none;
  }

  .product_block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand {
    margin: 1rem auto 0 auto;
  }

  .button_wrapper {
    flex-direction: column;
  }

  .cta_container.double .button_wrapper {
    grid-template-columns: 1fr;
  }

  .content_container {
    padding-left: 0;
    margin-top: 10px;
  }

  .mini {
    display: inline-block;
  }

  .tab-button {
    min-width: 140px;
  }

  .product-nav {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
  }
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 2em;
  }

  .text {
    font-size: 1rem;
  }

  .selling_points_container li {
    font-size: 1rem;
  }

  .tab-button {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
