.ecolar-intro {
  padding: 80px 0 0px; }
  .ecolar-intro .brand-header {
    margin-bottom: 0px; }
    .ecolar-intro .brand-header .brand-name {
      padding-bottom: 30px; }
      .ecolar-intro .brand-header .brand-name img {
        width: 100%;
        max-width: 200px; }
        @media (max-width: 767px) {
          .ecolar-intro .brand-header .brand-name img {
            max-width: 100px; } }
    .ecolar-intro .brand-header .brand-subtitle {
      font: 700 32px / 32px 'Nunito Sans' , -apple-system , Roboto , Helvetica , sans-serif;
      color: #000000; }
      @media (max-width: 768px) {
        .ecolar-intro .brand-header .brand-subtitle {
          font-size: 26px; } }
  .ecolar-intro .shop-illustration {
    margin-bottom: 0px; }
    .ecolar-intro .shop-illustration img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1)); }
  .ecolar-intro .description {
    margin-bottom: 20px; }
    .ecolar-intro .description .intro-text,
    .ecolar-intro .description .highlight-text {
      line-height: 1.8;
      color: #000000;
      margin-bottom: 0; }
      .ecolar-intro .description .intro-text strong,
      .ecolar-intro .description .highlight-text strong {
        font-weight: 700;
        color: #000000; }
  .ecolar-intro .statistics {
    padding: 40px 20px;
    max-width: 600px;
    background-repeat: no-repeat;
    background-image: url("https://cdn.hstatic.net/files/200001053072/file/frame_1.jpg");
    background-position: center;
    background-size: contain; }
    @media (max-width: 767px) {
      .ecolar-intro .statistics {
        background-size: 100% 190px; } }
    .ecolar-intro .statistics .stat-item {
      display: flex;
      align-items: center;
      gap: 30px;
      justify-content: center; }
      .ecolar-intro .statistics .stat-item .stat-content {
        font-weight: bold; }
        .ecolar-intro .statistics .stat-item .stat-content .stat-label {
          color: #000000;
          margin: 0 0 0px; }
        .ecolar-intro .statistics .stat-item .stat-content .stat-number {
          font-size: 3.5rem;
          font-weight: 700;
          color: #BED630;
          margin: 10px 0;
          line-height: 1; }
          @media (max-width: 767px) {
            .ecolar-intro .statistics .stat-item .stat-content .stat-number {
              font-size: 1.5rem; } }
        .ecolar-intro .statistics .stat-item .stat-content .stat-description {
          color: #000000;
          margin: 0; }
          @media (max-width: 480px) {
            .ecolar-intro .statistics .stat-item .stat-content .stat-description br {
              display: none; } }
      @media (max-width: 768px) {
        .ecolar-intro .statistics .stat-item {
          flex-direction: column;
          text-align: center;
          gap: 20px; } }
    @media (max-width: 768px) {
      .ecolar-intro .statistics {
        padding: 30px 20px; } }
  @media (max-width: 480px) {
    .ecolar-intro {
      padding: 50px 0 0 0; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.product-group-section {
  padding: 60px 0 0;
  /*
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;

    .product-card {
      background: #fff;
      border-radius: 30px;
      padding: 0;
       border: 1px solid #ccc;
      transition: all 0.3s ease;
      text-align: center;
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.6s ease forwards;

      &:nth-child(1) { animation-delay: 0.1s; }
      &:nth-child(2) { animation-delay: 0.2s; }
      &:nth-child(3) { animation-delay: 0.3s; }
      &:nth-child(4) { animation-delay: 0.4s; }
&:nth-child(5) { animation-delay: 0.1s; }
      &:nth-child(6) { animation-delay: 0.2s; }
      &:nth-child(7) { animation-delay: 0.3s; }
      &:nth-child(8) { animation-delay: 0.4s; }
     

      .product-image {
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
          width: 100%;
          max-width: 100%;
          max-height: 100%;
          aspect-ratio: 1;
          object-fit: contain;
          transition: transform 0.3s ease;
        }

      
      }

      .product-info {
        padding: 20px;

        .product-category {
          font-size: 16px;
          color: #666;
          margin-bottom: 8px;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          font-weight: 500;
        }

        .product-name {
          font-size: 20px;
          font-weight: 600;
          color: #000000;
          margin-bottom: 15px;
          line-height: 1.4;
        }

        .product-price {
          font-size: 22px;
          font-weight: 700;
          color: #BED630;
          margin-bottom: 20px;
        }

        .btn-buy-now {
          background: linear-gradient(135deg, #BED630, #BED630);
          color: #fff;
          border: none;
          padding: 12px 30px;
          border-radius: 25px;
          font-size: 16px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          width: 100%;
          max-width: 200px;

          &:hover {
            background: linear-gradient(135deg, #7cb342, #689f38);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(124, 179, 66, 0.4);
          }
          &:active {
            transform: translateY(0);
          }
        }
      }

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        
       
        .product-image img {
          transform: scale(1.05);
        }
      }

     
    }
    
    @media (max-width: 768px) {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }
    @media (max-width: 480px) {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  }
*/ }
  .product-group-section .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .product-group-section .section-title .eco {
      color: #BED630;
      font-weight: bold; }
    .product-group-section .section-title .lar {
      color: #000000;
      font-weight: bold;
      padding-right: 17px; }
    @media (max-width: 768px) {
      .product-group-section .section-title {
        font-size: 18px; } }
  .product-group-section .brand-name {
    font-size: 38px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    padding-bottom: 40px;
    text-align: center; }
    @media (max-width: 768px) {
      .product-group-section .brand-name {
        font-size: 18px;
        padding-bottom: 20px !important; } }
    .product-group-section .brand-name img {
      max-width: 250px; }
      @media (max-width: 768px) {
        .product-group-section .brand-name img {
          max-width: 150px; } }
  @media (max-width: 768px) {
    .product-group-section {
      padding: 40px 0; } }
