:root
{
    --button:#002fe7;
    --button-hover:#1a47f0;
    --title:#001fa3;
}
    body {
   font-family: "Poppins", sans-serif;;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
.logo{
    padding-left: 45%;
    padding-right: 65%;
}
  .container {
    max-width: 1300px;
    margin: auto;
  }

  h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #8CC63F;
  }

 
  .plant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .plant-card {
    width: 220px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    animation: fadeIn 0.5s ease forwards;
    text-align: center;
   
  }

  .plant-card:hover {
    transform: scale(1.05);
  }

  .plant-card img {
    /*width: 300px;*/
    /*height:350px;*/
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .plant-card input[type="text"] {
    width: 100%;
    padding: 6px;
    margin-top: 10px;
    border-radius: 6px;
  }

  .plant-card button {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    background: var(--button);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .plant-card button:hover {
    background: var(--button-hover);
  }

  /* Pagination */
  .pagination {
    gap: 8px;
  }

  .pagination .page-link {
    border-radius: 50px;
    padding: 8px 15px;
    color: white !important;
    border: 1px solid blue;
    transition: all 0.3s ease;
    background: blue !important;
  }

  .pagination .page-link:hover,
  .pagination .active .page-link {
    background: dodgerblue;
    color: white;
    /*border-color: var(--button)*/
  }
.page-item a{
    color:white;
}
  /* Sidebar Cart */
  .sidebar-cart {
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 25px 20px;
    overflow-y: auto;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
  }

  .sidebar-cart.active {
    transform: translateX(0%);
  }

  .sidebar-cart h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--button);
    border-bottom: 2px solid var(--button);
    padding-bottom: 8px;
  }

  .cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 10px;
    background: #f1f8e9;
    border-radius: 8px;
  }

  .cart-total {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 20px;
    text-align: right;
    color: var(--button);
    border-top: 1px solid #ddd;
    padding-top: 10px;
    display: none;
  }

  .btn-confirm {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    background: var(--button);
    color: white;
    border: none;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .btn-confirm:hover {
    background: var(--button-hover);
  }

  #sidebar-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1100;
    padding: 12px 16px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .form-search
  {
     width:100% !important;
    background: #EEEEEE;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  }
  .button
  {
      background: var(--button);
    color: white;
    position: absolute;
    width: 5%;
    margin-left: 25%;
  }
  .button:hover
  {
      background: var(--button-hover);
    color: white;
  }
  .btn-primary
  {
      background: var(--button);
  }
.banner {
  padding: 4%;
}

.banner-container {
  background: #eeeeee;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}

/* Content styles */
.banner-content {
  width: 50%;
    margin-top: 6%;
    line-height: 227%;
    padding-left: 94px;
}

/* Image styles */
.banner-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image img {
  width: 100%;
  height: auto;
  border-radius: 0 0 30px 30px;
}
 .social-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center !important;
      margin-left: 10%;
    }

    .social-buttons a {
      text-decoration: none;
      color: white;
      padding: 12px 18px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      transition: 0.3s;
    }

    .instagram { background: #E1306C; }
    .phone { background: #25D366; }
    .website { background: #0077B5; }
    .whatsapp { background: #25D366; }
    .share { background: #FF9800; }

    .social-buttons a:hover {
      opacity: 0.85;
    }

    .fa {
      font-size: 18px;
    }


/* Responsive layout for mobile */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
  }

  .banner-content,
  .banner-image {
    width: 100%;
    margin-top: 0;
    padding: 15px;
    text-align: left;
    border-radius: 30px;
  }

  .banner-content h5 {
    font-size: 1.3rem;
  }

  .banner-content ul {
    list-style-position: inside;
    padding-left: 0;
  }

  .banner-image img {
      margin-top: -50px;
    display: none;
  }
}


  
  /* Fade-in animation */
  @keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
  }

  @media (max-width: 768px) {
    .plant-card { width: 100%; }
    .sidebar-cart { width: 100%; }
    h1{font-size:25px}
 
.logo{
    padding-left: 5rem;
}
 .button
  {
      background: var(--button);
    color: white;
    position: absolute;
    width: 22%;
    margin-left: 70%;
  }
 .item-text
 {
    padding-left: 3%;
    padding-right: 1%;
    width: 70%;
 }
  .plant-card {
       display: flex
  }
  .plant-card img {
            width: 135px;
        height: 169px;
  }
  .plant-card h6
  {
      font-size: 17px;
      text-align: left;
  }.plant-card span
  {
      font-size: 15px;
      text-align: left;
      padding-right: 65%;
      color: #BCBCBC;
  }
  .price-input
  {
   widows: 100%;   
   background: #EEEEEE;
   border: none;
  }
  .banner-content 
  {
      font-size: 10px;
      padding-right: -10px;
  }
  .banner-image {
    margin-top: -31px;
    margin-right: 7%;
  }
  .pagination .page-link {
    padding: 6px 10px; /* Smaller padding */
    font-size: 0.9rem; /* Smaller font size */
  }
 }
    /* add any custom footer styling here */
    footer {
     padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
      /*border-top: 1px solid #c8e6c9;*/
    }
    .search-bar {
      max-width: 500px;
      margin: 0 auto 30px;
    }