/* Custom CSS */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #042b67;
}

p {
  text-align: justify;
}
.info a {
  color: #042b67;
  text-decoration: none;
}

.info a:hover {
  color: #fcc302;
  text-decoration: none;
}

.navbar a {
  color: #042b67;
}

.navbar a:hover {
  color: #fcc302;
}

.back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-block;  
  padding: 1em;
  margin: 1em;
  background: #fcc302;
  border: 2px solid #042b67;
  color: #042b67;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  cursor: pointer;
}

/* Logo Styling */
.logo-icon {
  background-color: #fcc302;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-blue {
  background-color: #042b67;
  width: 50px;
  height: 50px;
  border-radius: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.logo-icon-white {
  background-color: #eee;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  background-color: #3e6a4d;
  min-height: 200px;
  width: 100%;
  overflow: hidden;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background-color: #ffd54f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
}

/* Category Icons */
.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3e6a4d;
}

.category-name {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Product Card */
.product-card {
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card:hover .product-actions {
  display: block !important;
}

/* Weight Options */
.btn-group .btn-outline-secondary {
  border-radius: 20px;
  margin-right: 5px;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .discount-badge {
      width: 150px;
      height: 150px;
      right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-section {
      padding: 2rem !important;
  }
  
  .discount-badge {
      position: relative;
      top: 0;
      right: 0;
      transform: none;
      margin: 2rem auto;
  }
  
  .hero-content {
      text-align: center;
  }
}

@media (max-width: 576px) {
  .category-icon {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
  }
  
  .category-name {
      font-size: 0.7rem;
  }
}

