* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Press Start 2P', cursive;
  background: white;
  color: #0f4f5a;
  height: 100vh;
  margin: 0;
  padding: 0;
  text-align: center;
  padding: 200px 1rem 2rem;
  align-items: flex-start; /* stick to top-ish */
}


/*------------------------------------------*/

.top-bar {
  background: url(asset/Tubig.gif);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  color: white;
  overflow:  visible;
  z-index: 1002;
  box-shadow: 0 2px 10px rgb(147, 147, 147);
}


.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(asset/Tubig.gif);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.top-left {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow: hidden;
  gap: 20px;
}

.top-bar a {
  color: #000;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: bold;
  margin: 4px;
  background-color: transparent;
  transition: all 0.2s ease;
  display: inline-block;
  border: 2px solid transparent;
  box-shadow: 0 0 0 transparent;
}

.top-bar a:hover {
  background-color: #ffffff;
  color: #000000; /* your accent text color */
}

.top-left a {
  color: #000;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: bold;
  margin: 4px;
  background-color: transparent;
  border: 2px solid transparent; /* Prevents layout jump */
  transition: all 0.2s ease;
  display: inline-block;
}

.top-left a:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 6px #aaa;
  border: 2px solid #ccc;
}

.top-right {
  transition: background-color 0.2s, color 0.2s;
  padding: 6px 12px;
  border-radius: 6px;
}

.top-right:hover {
  background-color: #fff;
  color: #009688;
}

.top-right:hover #user-name-display {
  color: #009688;
}


@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 15px;
    gap: 10px;
  }

  .top-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .top-left a {
    font-size: 10px;
    padding: 6px 10px;
    margin: 2px 0;
  }

  .top-bar a {
    font-size: 10px;
    padding: 6px 10px;
  }
}

/*------------------------------------------*/

.pokeball-icon {
  width: 70px;
  height: 70px;
  transition: transform 0.5s ease;
}

.pokeball-icon:hover {
  animation: spin 1s;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pokeball-icon.spin {
  animation: spin 1s linear infinite;
}

@media (max-width: 600px) {
  .pokeball-icon {
    width: 80px;
    height: 80px;
  }
}


/*------------------Homepage------------------------*/

.homepage-container {
  max-width: 900px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 3rem;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease;
  margin: 0 auto;
  margin-bottom: 50px;
}

.aboutus-container {
  max-width: 900px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 200px 3rem;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: -100px;
}

.brand-name {
  color: #00bcd4;
  font-weight: 700;
}

.tagline {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  color: #007b8f;
  line-height: 1.8;
}

.description {
  font-size: 1rem;
  margin: 1rem 0 2rem;
  line-height: 1.8;
  color: #333;
}

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta {
  padding: 1rem 2rem;
  border-radius: 999px;
  background-color: #00bcd4;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #019db4;
}

.cta.secondary {
  background-color: #f0f0f0;
  color: #007b8f;
}

.cta.secondary:hover {
  background-color: #d6f3f7;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
  }

  .homepage-container {
    padding: 2.5rem 1.5rem;
  }

  .hero-textbox h1 {
    font-size: 1.5rem;
  }

  .tagline,
  .description {
    font-size: 0.9rem;
  }

  .cta {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
}

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

/*------------------------------------------*/

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 10px 0;
}

.main-nav a {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  border: 2px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
  font-weight: bold;
}

.main-nav a:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ccc;
  padding: 1;
}


.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', cursive;
  background-color: white;
  color: #0f4f5a;
  border: 2px solid #0f4f5a;
  padding: 6px 14px;
  margin-left: 10px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.menu-btn:hover {
  background-color: #1b3334;
  color: #ffffff;
}

@media (max-width: 600px) {
  .main-nav {
    justify-content: center;
    gap: 6px;
  }

  .main-nav a {
    font-size: 10px;
    padding: 4px 6px;
  }

  .top-bar {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px;
    gap: 10px;
  }

  .top-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}



/*------------------------------------------*/

.toggle-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 20px;
  background: #0f4f5a;
  color: #ffffff;
  border: 2px solid #6ef9eb;
  font-family: 'Press Start 2P', cursive;
  font-size: 8px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #2089a9, #128e8b);
}

.toggle-btn:hover {
  background: #ffffff;
  color: #16aaa8;
  border-color: #0f4f5a;
}


/*------------------------------------------*/

.subnav {
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: #fefefe;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  box-shadow: 0 2px 5px rgb(165, 165, 165);
  position: fixed;
  top: 100px;
  right: 0;
  width: 130;
  z-index: 1001;
}

.subnav .user-info a {
  color: #0f224a;
  text-decoration: none;
  background-color: #fff;
  padding: 10px 20px;
  border: 1px solid #0f224a;
  border-radius: 5px;
  transition: 0.3s ease;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.subnav .user-info a:hover {
  background-color: #0f224a;
  color: #fff;
}

.coin-icon {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .subnav {
    justify-content: center;
    padding: 8px 10px;
    margin-top: 105px;
  }

  .subnav .user-info a {
    font-size: 10px;
    padding: 6px 10px;
    gap: 6px;
  }

  .coin-icon {
    height: 16px;
    width: 16px;
  }
}

/*------------------------------------------*/

.user-info {
  margin-left: auto;
  font-size: 10px;
  border-left: 1px solid #ffffff;
  padding-left: 10px;
}

/*------------------------------------------*/

.hero-section {
  font-style: normal; /* ← this forces non-italic text */
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
}

.hero-textbox h1 {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 15px;
  margin-top: 25px;
  text-align: center;
}

.highlight {
  color: #eb9d0a;
}

.hero-textbox p {
  font-style: normal;
  font-weight: bold;
  margin-top: 100px;
  font-size: 15px;
  max-width: 800px;
  margin-bottom: 25px;
  text-align: center;
  height: 100px;
}

/*------------------------------------------*/

.links-row {
  display: flex;
  flex-direction: row; /*guys i kinda changed the it kasi the bundle stuff was confusing*/
  gap: 15px;
  font-size: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.links-row a {
  color: #3b4cca;
  text-decoration: underline;
}

/*----------------Buddy-----------------------*/

.buddy-character {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-family: 'Press Start 2P', cursive;
  font-size: 6px;
  color: #0f4f5a;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1000;
}

.buddy-character img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.buddy-character.slide-away {
  transform: translateY(150%);
  opacity: 0;
}


.buddy-dialogue {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0f4f5a;
  padding: 15px 20px;
  font-size: 10px;
  font-family: 'Press Start 2P', cursive;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 300px;
  width: fit-content;
  min-width: max-content;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.5;
  display: none;
  z-index: 1001;
  max-inline-size: calc(100vw - 40px);
}

#buddy-wrapper {
  display: flex;
  justify-content: center;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .buddy-character {
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
  }

  .buddy-dialogue {
    font-size: 8px;
    padding: 10px 12px;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .buddy-character {
    width: 180px;
    height: 180px;
  }

  .buddy-dialogue {
    font-size: 7px;
    padding: 8px 10px;
    max-width: 200px;
  }
}


/*----------------Products------------------*/

.products-section {
  margin-top: 30px;
  margin-bottom: 3rem;
  padding-top: 0;
  animation: fadeIn 1s ease;
}

.section-title {
  font-size: 15px;
  margin-bottom: 0.5rem;
  margin-top: -25px;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 20px;
  display: block;
  transform: translateY(-15px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
  max-width: 1200px; 
}

.product-card {
  border: 2px solid #000;
  border-radius: 15px;
  width: 200px;
  height: 300px;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  background: #fefefe;
}

.product-card:hover {
  transform: scale(1.03);
  color: white;
  background: linear-gradient(rgb(1, 81, 81), rgb(77, 108, 110));
  transition: all 0.2s ease;
}

.product-card img { 
  max-width: 140px;
  max-height: 140px;
  width: 128px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 20%;
}

.products-section h2 {
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 15px;
}

.product-card h3 {
  margin-top: 20px;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.product-card p {
  margin-top: 20px;
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
  max-width: 250;
}

.product-card span {
  font-size: 0.75rem;
  font-weight: bold;
  color: #222;
}

.add-to-cart {
  margin-top: auto;
  padding: 10px;
  background: #ffcb05;
  border: none;
  cursor: pointer;
  font-family: 'Press Start 2P', cursive;
  color: #000;
}

.remove-btn {
  margin-top: 10px;
  padding: 6px 10px;
  background-color: #d93636;
  color: white;
  font-family: 'Press Start 2P', cursive;
  border: none;
  border-radius: 5px;
  font-size: 8px;
  cursor: pointer;
}

.remove-btn:hover {
  background-color: #a12020;
}


.pokecoins-grid {
  max-width: 1200px;
}

.invisible {
  visibility: hidden;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .product-card {
    width: 100%;
    max-width: 180px;
    height: auto;
  }

  .product-card img {
    max-width: 100px;
    height: auto;
  }

  .add-to-cart,
  .remove-btn {
    font-size: 6px;
    padding: 6px 8px;
  }

  .product-card h3,
  .product-card p {
    font-size: 0.6rem;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-card {
    max-width: 100%;
  }
}


/*----------------Cart------------------*/

.cart-main {
  padding: 0px;
  text-align: center;
}

.cart-title {
  font-size: 16px;
  margin-bottom: 30px;
}

.cart-total {
  margin-top: 20px;
  font-size: 14px;
}

.cart-buttons {
  margin-top: 20px;
}

#cart-items.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

#cart-items .product-card {
  width: 220px;
  height: auto;
  border: 2px solid #000;
  border-radius: 15px;
  background-color: #fefefe;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

#cart-items .product-card img {
  max-width: 120px;
  object-fit: contain;
  border-radius: 20%;
}

#cart-items .product-card h3 {
  font-size: 0.8rem;
}

#cart-items .product-card p {
  font-size: 0.7rem;
  margin: 0;
}

@media (max-width: 600px) {
  #cart-items.products-container {
    justify-content: center;
    gap: 1rem;
  }

  #cart-items .product-card {
    width: 160px;
    padding: 10px;
  }

  #cart-items .product-card h3 {
    font-size: 0.7rem;
  }

  #cart-items .product-card p {
    font-size: 0.65rem;
  }
}


/*----------------Footer--------------------*/

.site-footer {
  background-color: #f2f2f2;
  color: #333;
  font-size: 8px;
  line-height: 1.4;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ccc;
}

.site-footer p {
  margin: 5px 0;
}

/*----------------About Us------------------*/

.about-section {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  font-family: 'Press Start 2P', cursive;
  text-align: center;
  color: #0f4f5a;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-name {
  color: teal;
}

.about-intro {
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

/* Details block */
.details {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 2rem;
  background-color: rgba(0, 128, 128, 0.1);
  border-radius: 1rem;
  font-size: 0.75rem;
  line-height: 1.8;
  text-align: center;
  color: #0f4f5a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Press Start 2P', cursive;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 4000px;
  width: 100%;
  padding: 0 1rem;
}


/* Team members */
.team-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
  width: 100%;
}

.team-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member-card h2 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  text-align: center;
  font-weight: bold;
  color: #222;
}

.team-member-card em {
  display: block;
  font-style: italic;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-align: center;
}

.team-member-card p {
  font-size: 0.7rem;
  color: #444;
  line-height: 1.6;
  text-align: center;
  margin: 0 1rem;
}

.flip-card {
  width: 160px;
  height: 160px;
  perspective: 800px;
  border-radius: 50%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-front img,
.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  align-items: center;
}

.flip-card-back {
  transform: rotateY(180deg);
}


@media (max-width: 768px) {
  .team-member-card {
    width: 90%;
  }
}


/*----------------Details------------------*/

.details {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 2rem;
  background-color: rgba(0, 128, 128, 0.1);
  border-radius: 1rem;
  font-size: 0.75rem; /* smaller size since the pixel font is thick */
  line-height: 1.8; /* spread out lines more */
  text-align: center;
  color: #0f4f5a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Press Start 2P', cursive;
}

/*----------------Register------------------*/

.registration-container {
  max-width: 500px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.8s ease;
  margin: 30px auto 20px;
  font-family: 'Press Start 2P', cursive;
  transition: transform 0.2s ease;
}


.registration-container h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-size: 10px;
  text-align: left;
}

input,
select {
  font-family: 'Press Start 2P', cursive;
  padding: 10px;
  font-size: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  
}



@media (max-width: 200px) {
  .registration-container {
    padding: 15px;
    margin: 100px 1rem 2rem;
  }

  input,
  select {
    font-size: 8px;
    padding: 8px;
  }

  button {
    font-size: 10px;
    padding: 8px;
  }

  label {
    font-size: 8px;
  }

  .back-link {
    font-size: 8px;
  }

  .registration-container h2 {
    font-size: 14px;
  }
}

/*----------------Login------------------*/

.login-container {
  max-width: 500px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.8s ease;
  margin: 50px auto 2rem;
  font-family: 'Press Start 2P', cursive;
  transition: transform 0.2s ease;
}


.login-container:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.15), -8px -8px 25px rgba(255, 255, 255, 0.5);
}


.login-container h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-size: 10px;
  text-align: left;
}

input {
  font-family: 'Press Start 2P', cursive;
  padding: 10px;
  font-size: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

button {
  margin-top: 15px;
  padding: 10px;
  background-color: #3b4cca;
  color: white;
  border: 2px solid #000;
  cursor: pointer;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  transition: background 0.3s ease;
}

button:hover {
  color: white;
  background-color: #5f6ce0;
  border: turquoise;
}

.back-link {
  margin-top: 20px;
  display: block;
  text-align: center;
  font-size: 10px;
  text-decoration: underline;
  color: #3b4cca;

}

@media (max-width: 200px) {
  .login-container {
    padding: 15px;
    margin: 50px 1rem 2rem;
  }

  input {
    font-size: 8px;
    padding: 8px;
  }

  button {
    font-size: 10px;
    padding: 8px;
  }

  label {
    font-size: 8px;
  }

  .back-link {
    font-size: 8px;
  }

  .login-container h2 {
    font-size: 14px;
  }
}

/*----------------Logout------------------*/

#logout-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  min-height: 40px;
  padding: 6px 0;
}

#logout-btn {
  background: none;
  border: none;
  padding: 6px 12px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s, color 0.2s;
}

#logout-btn:hover {
  background-color: #fff;
  color: #009688;
}


/*----------------Login------------------*/

.description{
  max-width: 700px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 2rem;
  background-color: rgba(0, 128, 128, 0.1);
  border-radius: 1rem;
  font-size: 0.75rem; /* smaller size since the pixel font is thick */
  line-height: 1.8; /* spread out lines more */
  text-align: center;
  color: #0f4f5a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Press Start 2P', cursive;
}

/*----------------Bud------------------*/

.bud {
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bud h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.bud-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.bud-image {
  width: 100%;
  max-height: 200px; /* limit the height but don't force it */
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 5px;
  border: 2px solid #ccc;
  margin-bottom: 30px;
}

.bud-info {
  max-width: 400px;
}

.bud-info h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.bud-info p {
  font-size: 9px;
  line-height: 1.6;
  padding: 2px auto;
}

@media (max-width: 600px) {
  .bud-card {
    flex-direction: column;
    text-align: center;
  }

  .bud-image {
    margin-bottom: 10px;
  }
}


