* {
  box-sizing: border-box;
}
:root {
    --primary-color: #2D5016;
    --secondary-color: #FF6B35;
    --accent-color: #F7F3E9;
    --success-color: #4CAF50;
    --warning-color: #FFA726;
    --error-color: #F44336;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --background-light: #ffffff;
    --background-dark: #f8f9fa;
    --border-color: #e1e5e9;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #3a6b1f);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff7a47);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Animation Keyframes */
@keyframes slideInFade {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}

/* Very Top Bar */
.very-top {
  background: linear-gradient(135deg, #28a745, #218838);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideInFade 1.2s ease-out forwards;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Logo Link */
.logo-link {
  text-decoration: none;
}
.logo-link h5 {
  font-size: 2rem;
  color: #fff8dc;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  animation: slideInFade 1.5s ease-out forwards;
}

/* Logins Area */
.log {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Individual Log Item */
.log-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Icon */
.log-item img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

/* Text */
.link-text {
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

/* Hover Effects */
.log-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #ffeeba;
}
.log-item:hover img {
  transform: rotate(15deg) scale(1.2);
}

/* Responsive */
@media (max-width: 600px) {
  .very-top {
    flex-direction: column;
    gap: 10px;
  }
  .log {
    gap: 10px;
  }
  .logo-link h5 {
    font-size: 1.5rem;
  }
}
.top img {
  margin-top: 15px;
  margin-left: 50px;
  width: 200px;
  height: 100px;
  border-radius: 50px;
}
/* Search Container Styling */
.search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    /* background: #000; */
}

/* Search Input Field */
#searchInput {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid black;
    border-radius: 25px;
    outline: none;
    transition: 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: black;
    font-weight: bold;
}

/* Placeholder Styling */
#searchInput::placeholder {
    color: black;
}

/* Input Hover & Focus Effects */
#searchInput:hover,
#searchInput:focus {
    border-color: #00ff95ce;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

/* Search Results Container */
.search-results {
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* Show Results */
.search-results.show {
    max-height: 300px;
    opacity: 1;
}

/* Individual Search Result Item */
.search-results div {
    padding: 12px 15px;
    color: white;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

/* Hover Effect on Search Items */
.search-results div:hover {
    background: #00c6ff;
    color: black;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.product a {
  text-decoration: none;
  color: inherit;
}

.product h2 {
  font-size: 1.2em;
  margin: 10px 0;
}

/* .product .price {
  font-size: 1.1em;
  color: #555;
  margin: 10px 0;
} */
/* Add to Cart Button */
.addCart {
    background: #55883B;
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.addCart:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(255, 154, 158, 0.4);
}

.addCart:active {
    background: #3b8845f3;
    transform: scale(0.98);
}
.product button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #28a745;
  color: white;
  cursor: pointer;
  font-size: 1em;
}
/* Price styling */
/* .product-price span.original-price {
  color: #28a745; /* Green primary color */
  /* font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d4edda, #c3e6cb);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.original-price:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.5);
}  */

.product button:hover {
  background-color: #218838;
}

#navbar {
  background-color: green;
  padding: 1px;
}
.logo {
  font-size: 30px;
  color: whitesmoke;
  margin-left: 130px;
}

.navbar.bg-dark {
    background-color: black !important;
    color: white !important;
    width: 75px !important;
    height: 50px !important;
}
.navbar.bg-dark:hover {
  background-color: gray !important;
  color: green !important;  
}

/* Change text color to white */
.navbar.bg-dark .navbar-nav .nav-link {
    color: white !important;
}
#navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Cart Items */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.cart-item-details {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.cart-item-details div {
  flex-grow: 1;
}

.cart-item p {
  margin: 0;
  font-size: 14px;
}
/* Change hover background color to white */
.navbar.bg-dark .navbar-nav .nav-link:hover {
    background-color: white !important;
    color: black !important;
}
.navbar-nav .nav-item {
  margin: 7px;
}
.navbar-brand {
  margin-left: 65px;
}

.navbar-nav .nav-item:hover .nav-link {
  background-color: green;
  color: white;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* General carousel styles */
.carousel-item img {
object-fit: cover;
height: 70vh;
/* max-height: 900px; */
animation: fadeIn 1.5s ease-in-out;
}

.carousel-caption {
background: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 10px;
}

/* Heading styles */
.carousel-caption h1,
.carousel-caption h2 {
color: #fff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}


/* .carousel-item img {
  width: 100%;
  height: 500px;
  margin: auto;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  border-radius: 6px;
  animation: slideIn 1s ease-in-out forwards; /* Apply animation */
  /* opacity: 0; /* Initially hidden */
  /* top: 100px;
}  */

/* Keyframes for slide-in animation */
@keyframes slideIn {
  0% {
      transform: translateY(-50px); /* Move up initially */
      opacity: 0;
  }
  100% {
      transform: translateY(0); /* Slide down to center */
      opacity: 1;
  }
}
  /* Style for the container */
  .contain {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Style for each item */
  .items {
    width: calc(33.33% - 40px); /* 33.33% of the container width with 20px padding on each side */
    margin: 20px;
    box-sizing: border-box;
  }

  /* Style for the images */
  .items img {
    width: 100px;
    height: 70px;
  }
  /* Style for the text */
  .items div {
    margin-top: -70px;
    padding-left: 130px;
  }

/* Style for the image containers */
/* Style for the image containers */
.image-container {
  position: relative;
  margin-bottom: 20px;
  padding: 18px;
}

/* Style for the images */
.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Style for the text */
.image-container h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* Example text color */
  background-color: rgba(0, 0, 0, 0.5); /* Example background color */
  padding: 10px;
  text-align: center;
  width: 80%; /* Adjust as needed */
}
.image-container img:hover {
  border-radius: 40px;
}
.image-container h3:hover {
  border-radius: 40px;
}
@media only screen and (max-width: 480px) {
  /* Display one image per row */
  .image-container {
    width: 100%;
    float: none;
    box-sizing: border-box;
  }
  .image-container img {
    width: 300px;
    margin-left: 10px;
  }
  .image-container h3 {
    margin-left: 50px;
  }

  /* Hide the second and third images on small screens */
  .image-container:nth-child(1),
  .image-container:nth-child(2),
  .image-container:nth-child(3) {
    display: none;
  }
  .log {
    display: none !important;
  }
  .icon-cart .sticky-svg {
    right: 1px!important;
}

  .icon-cart span {
    right: 1px!important;
}
.very-top h5 {
  text-align: center; 
  color: antiquewhite;
}
.num{
  font-size: large;
}
 .icon-cart {
     right: 10px;
 }

 .cart-count {
     width: 20px;
     height: 20px;
     font-size: 12px;
 }
}

@media screen and (max-width: 767px) {
  .top img {
    width: 100px;
    height: 50px;
  }

  .navbar.navbar-expand-lg.bg-body-tertiary {
    display: none;
  }

  .contact {
    display: none
  }

  .button {
    border-radius: 19px;
  }

  .button:hover {
    background-color: green;
    color: white;
  }

  .input-group-text {
    border-radius: 5px;
  }
   /* Display two images in a row */
   .image-container {
    width: 50%;
    float: left;
    box-sizing: border-box;
  }

  /* Hide the third image on medium screens */
  .image-container:nth-child(3) {
    display: none;
  }
   /* Display items vertically on small screens */
   .items {
    width: calc(100% - 40px); /* 100% of the container width with 20px padding on each side */
  }
}

@media screen and (min-width:768px) {
  .contact {
    float: right;
    margin-right: 69px;
    margin-top: 15px;
  }

  .top {
    display: flex;
    justify-content: space-between;
  }

  .support {
    display: flex;
    align-self: center;
    white-space: nowrap;
  }

  .email {
    display: flex;
    align-self: center;
    white-space: nowrap;
  }

  .navbar.bg-body-tertiary {
    display: flex;
    justify-content: center;
    background-color: transparent;
    width: 100%;
  }

  .button {
    border-radius: 19px;
  }

  .button:hover {
    background-color: green;
    color: white;
  }

  .input-group-text {
    border-radius: 5px;
  }
  .navbar.bg-dark.fixed-top {
    display: none;
  }
  .image-container {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
  }

}.num {
  text-align: center; 
  background-color: green; 
  padding: 10px;
}
.container {
  width: 900px;
  max-width: 90vw;
  margin: auto;
  text-align: center;
  padding-top: 10px;
  transition: transform 0.5s;
}
/* 
header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
} */
/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Cart Icon Container */
.icon-cart {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 150px;
    padding: 10px;
    background: green;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.icon-cart:hover {
    transform: scale(1.1);
}

/* Cart Icon (SVG) */
.icon-cart svg {
    width: 30px;
    height: 30px;
    color: #333;
}

/* Cart Count (Notification Badge) */
.cart-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: #ff5a5f;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out;
}
.listProduct .item img {
  width: 90%;
  filter: drop-shadow(0 50px 20px #0009);
}
.listProduct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.listProduct .item{
  background-color: #eeeee6;
  padding: 20px;
  border-radius: 20px;
}
.listProduct .item h2{
  font-weight: 500;
  font-size: large;
} 
.listProduct .item .price{
  letter-spacing: 7px;
  font-size: large;
}
.listProduct .item button{
  background-color: #353432;
  color: #eee;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}
.cartTab{
    position: fixed;
    width: 400px;
    height: 100vh;
    right: 0;
    top: 0;
  background-color: #eee;
  color: black;
padding: 20px;
  inset: 0 -400px 0 auto;
  display: grid;
  grid-template-rows: 70px 1fr 70px;
  transition: 0.5s ease-in-out;

}
body.showCart .cartTab{
  inset: 0 0 0 auto;
}
body.showCart .container{
  transform: translateX(-250px);
}
.cartTab h1{
  padding: 20px;
  margin: 0;
  font-weight: 300;
}
.cartTab .btn  button a{
  text-decoration: none;
}
.close{
    background: red;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}
/* Checkout Button */
.checkOut {
    background: linear-gradient(135deg, #36d1dc, #55883B);
    color: white;
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    margin-top: auto;
    transition: all 0.3s ease-in-out;
}

.checkOut:hover {
    transform: scale(1.07);
    box-shadow: 0px 5px 20px rgba(107, 229, 91, 0.582);
}
.cartTab .listCart .item img{
  width: 100%;
}
.cartTab .listCart .item{
  display: grid;
  grid-template-columns: 70px 150px 50px 1fr;
  gap: 10px;
  text-align: center;
  align-items: center;
}
/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4500;
  color: white;
  padding: 5px 10px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
}
.discounted-price {
  font-weight: bold;
  
}
/* Price */

.product-price {
  color: #28a745;  
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d4edda, #c3e6cb);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-price:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.5);
}
span.discounted-price{
    text-decoration: line-through;
    font-size: large;
    padding: 5px;
}
span.original-price{
    color: green;
    font-size: x-large;
    font-weight: bold;
}
.stars{
  font-size: x-large;
  /* color: #BA8E23; */
  color: #1e7e34;
  padding: 10px;
}
.listCart .quantity span{
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: red;
  color: #555;
  border-radius: 50%;
  cursor: pointer;
}
/* quantity Control */
button{
    background: red;
    color: white;
}
.listCart .quantity span:nth-child(2){
  background-color: red;
  color: #eee;
}
.listCart .item:nth-child(even){
  background-color: #eee1;
}
.listCart{
  overflow: auto;
}
.listCart::-webkit-scrollbar{
  width: 0;
}
footer {
    background: #111;
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #C1E899;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 50px;
    animation: float 3s infinite alternate ease-in-out;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #C1E899;
    display: block;
    margin-top: 5px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #C1E899;
    font-size: 1.4rem;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.newsletter {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.newsletter input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    border-radius: 30px 0 0 30px;
    transition: all 0.3s ease;
}

.newsletter button {
    padding: 12px 20px;
    background: #C1E899;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0 30px 30px 0;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: white;
    color: black;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}
/* Cart Total */
/* Base styling for the total price container */
/* .total {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e6f4ea;

    border: 2px solid #2e7d32;
    
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e7d32;
    width: fit-content;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
} */
.total{
    background-color: #e6f4ea;
        /* Light green background */
        border: 2px solid #2e7d32;
        /* Primary green border */
        border-radius: 12px;
        padding: 16px 24px;
        font-size: 1.5rem;
        font-weight: 600;
        color: #2e7d32;
        margin-left: 10px;
        margin-right: 15px;
}

/* Animation keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}
@media screen and (max-width: 992px) {
  .listProduct {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Detail  Page */
  .detail{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    text-align: left;
    border-radius: 20px;
}
.detail .image img{
    width: 100%;
    border-radius: 25px;
}
.detail .image{
    position: relative;
}
.detail .image::before{
    position: absolute;
    width: 300px;
    height: 300px;
    content: '';
    background-color: #94817733;
    z-index: -1;
    border-radius: 190px 100px 170px 180px;
    left: calc(50% - 150px);
    top: 50px;
 
}
.detail .name{
    font-size: xxx-large;
    padding: 40px 0 0 0;
    margin: 0 0 10px 0;
}
.detail .price{
    font-weight: bold;
    font-size: x-large;
    letter-spacing: 7px;
    margin-bottom: 20px;
}
.detail .buttons{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.detail .buttons button{
    background-color: #eee;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    font-family: Poppins;
    font-size: large;
}
.detail .buttons svg{
    width: 15px;
}
.detail .buttons span{
    background-color: #555454;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 20px;
}
.detail .buttons button:nth-child(2){
    background-color: #2F2F2F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eee;
    box-shadow: 0 10px 20px #2F2F2F77;
}
.detail .description{
    font-weight: 300;
}
.title {
  font-size: xx-large;
  font-weight: bolder;
}
.title a{
  text-decoration: none;
  font-size: xx-large;
  font-weight: bolder;
}
/* Main Container */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

/* Responsive List */
main .list {
    width: 100%;
    max-width: 1324px;
    background-color: Green;
    border: 1px solid #CCC;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Responsive columns */
    grid-gap: 15px;
    padding: 15px;
}

/* List Item Styling */
main .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #CCC;
    background-color: #FFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main .list .item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

main .list .item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 10px;
}

div.item a {
    text-decoration: none;
    color: black; /* Ensure the text color is black */
}

div.item a:hover {
    color: #66FF99; /* Hover color */
}

main .list .item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
}

main .list .item p {
    font-size: 12px;
    color: #DAA520;
    margin-bottom: 5px;
}

/* Pagination Styling */
.pagenumbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagenumbers button {
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #44AAEE;
    margin: 5px;
    transition: 0.4s;
    color: #FFF;
    font-size: 18px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.pagenumbers button:hover {
    background-color: #44EEAA;
}

.pagenumbers button.active {
    background-color: #44EEAA;
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.page-btn {
    padding: 10px 15px;
    margin: 0 5px;
    border: none;
    background-color: #28a745;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.page-btn.active {
    background-color: #218838;
    font-weight: bold;
}

.page-btn:hover {
    background-color: #1e7e34;
}
/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

/* Media Queries for Responsiveness */

/* Large Tablets (768px and up) */
@media (max-width: 1024px) {
    main .list {
        grid-template-columns: repeat(3, 1fr);
    }

    main .list .item img {
        height: 150px;
    }

    .pagenumbers button {
        font-size: 16px;
    }
}
/* // ipad */
@media only screen and (max-width: 992px) {
    .listProduct{
        grid-template-columns: repeat(3, 1fr);
    }
    .detail{
        grid-template-columns:  40% 1fr;
    }
}
 
 
/* mobile */
@media only screen and (max-width: 768px) {
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
    .detail{
        text-align: center;
        grid-template-columns: 1fr;
    }
    .detail .image img{
        width: 99%;
        height: 40vh;
    } 
    .detail .name{
        font-size: x-large;
        margin: 0;
 
    }
    .detail .buttons button{
        font-size: small;
    }
    .detail .buttons{
        justify-content: center;
    }
    .search-results {
        grid-template-columns: 1fr;
    }

    .search-container input {
        max-width: 100%;
    }
    main .list {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: transparent;
    }

    main .list .item img {
        height: 140px;
    }

    .pagenumbers button {
        font-size: 14px;
    }

    .listProduct {
        grid-template-columns: repeat(2, 1fr);
    }
    .icon-cart {
        right: 20px;
    }
    
    .carousel-caption h1 {
        font-size: 24px;
     }
    .carousel-caption h2 {
        font-size: 18px;
    }
    .cartTab {
        width: 300px;
    }
    button {
        width: 15px;
        padding-right: 12px;
    }
    .addCart {      
        padding: 14px 18px;
        font-size: 14px;
        width: 70px
    }
}
@media (min-width: 769px) and (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 32px;
    }

    .carousel-caption h2 {
        font-size: 24px;
    }
}

@media (min-width: 1201px) {
    .carousel-caption h1 {
        font-size: 48px;
    }

    .carousel-caption h2 {
        font-size: 32px;
    }
}

/* Smooth transition */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Add space for small screens */
@media (max-width: 576px) {
    .carousel-caption {
        padding: 10px;
    }
}

/* Full-width images with padding for smaller screens */
img.d-block.w-100 {
    padding: 0;
}

/* Animation for larger screens */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

h2.animal {
  font-size: 30px !important; /* Adjust this value as needed */
}
/* .price {
  font-size: 20px !important; /* Adjust this value as needed 
} */

/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    font-family: var(--font-family);
}

/* Chat Toggle Button */
.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-heavy);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.chat-toggle:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.chat-toggle.active {
    transform: scale(0.9);
    background: var(--gradient-primary);
}

.chat-icon {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.chat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Chat Container */
.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    height: 600px;
    background: var(--background-light);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    display: flex;
    flex-direction: column;
    transform: scale(0) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
    overflow: hidden;
}

.chat-container.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Chat Header */
.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.assistant-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.assistant-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.status.online::before {
    content: '●';
    color: var(--success-color);
    margin-right: 0.3rem;
}

.chat-controls {
    display: flex;
    gap: 0.5rem;
}

.chat-control {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chat-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: messageSlideIn 0.4s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: var(--gradient-primary);
    color: white;
}

.user-message .message-avatar {
    background: var(--gradient-secondary);
    color: white;
}

.message-content {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    position: relative;
}

.bot-message .message-content {
    background: var(--background-dark);
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content p {
    margin-bottom: 0.5rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.message-content li {
    margin-bottom: 0.25rem;
}

.message-time {
    position: absolute;
    bottom: -1.2rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bot-message .message-time {
    left: 0;
}

.user-message .message-time {
    right: 0;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0 1rem 1rem;
    background: var(--background-dark);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    animation: messageSlideIn 0.4s ease-out;
}

.typing-indicator.active {
    display: flex;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    30% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.typing-indicator span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0;
    overflow-x: auto;
}

.quick-actions::-webkit-scrollbar {
    display: none;
}

.quick-action {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-action:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Chat Input */
.chat-input-container {
    border-top: 1px solid var(--border-color);
    background: var(--background-light);
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
}

#chatInput {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--background-light);
}

#chatInput:focus {
    border-color: var(--primary-color);
}

.send-button {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-screen.active {
    display: flex;
}

.loader {
    text-align: center;
    color: white;
}

.loader-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: loaderSpin 2s linear infinite;
}

@keyframes loaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Product Cards (for search results) */
.product-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.product-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chat-container {
        width: calc(100vw - 2rem);
        height: calc(100vh - 8rem);
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        transform-origin: center bottom;
    }

    .hero h2 {
        font-size: 2rem;
    }

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

    .nav {
        display: none;
    }

    .chatbot-widget {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .chat-container {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
        transform-origin: center;
    }

    .chat-header {
        border-radius: 0;
    }
}

/* Animations for enhanced UX */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounce-in {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    70% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Success/Error message styles */
.message-success {
    background: var(--success-color) !important;
    color: white !important;
}

.message-error {
    background: var(--error-color) !important;
    color: white !important;
}

.message-warning {
    background: var(--warning-color) !important;
    color: white !important;
}

/* 3D Hero Section */
.hero-3d {
    position: relative;
    height: 100vh;
    overflow: hidden;
    perspective: 1000px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D5016 0%, #3a6b1f 50%, #1a3a0d 100%);
    transform: translateZ(0);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content-3d {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 5%;
    transform-style: preserve-3d;
}

.hero-text-3d {
    flex: 1;
    color: white;
    animation: slideInLeft 1s ease-out;
}

.hero-title-3d {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: translateZ(50px);
}

.title-part {
    display: block;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.title-part.highlight {
    color: #FFE135;
    text-shadow: 0 0 20px rgba(255, 225, 53, 0.8);
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    to { text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6); }
}

.hero-subtitle-3d {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    transform: translateZ(30px);
}

.hero-buttons-3d {
    display: flex;
    gap: 1rem;
    transform: translateZ(40px);
}

.btn-3d {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-3d:hover::before {
    left: 100%;
}

.btn-primary-3d {
    background: linear-gradient(135deg, #FFE135, #FFA500);
    color: #2D5016;
    box-shadow: 0 8px 32px rgba(255, 225, 53, 0.3);
}

.btn-primary-3d:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 225, 53, 0.5);
}

.btn-secondary-3d {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-3d:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.hero-3d-model {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(60px);
}

.food-3d-container {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotate3D 20s infinite linear;
}

@keyframes rotate3D {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.food-item-3d {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.food-item-3d:hover {
    transform: scale(1.2) translateZ(50px);
}

.food-item-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(50px);
}

.food-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateZ(50px);
}

.food-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(50px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* 3D Features Section */
.features-3d {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.container-3d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title-3d {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2D5016;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.features-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.feature-card-3d {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    cursor: pointer;
    position: relative;
}

.feature-card-3d:hover {
    transform: rotateY(180deg);
}

.card-front-3d,
.card-back-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.card-front-3d {
    background: white;
}

.card-back-3d {
    background: linear-gradient(135deg, #2D5016, #3a6b1f);
    color: white;
    transform: rotateY(180deg);
}

.feature-icon-3d {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFE135, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2D5016;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 225, 53, 0.3);
}

.card-back-3d .feature-icon-3d {
    background: rgba(255,255,255,0.2);
    color: white;
}

.feature-card-3d h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card-3d p {
    line-height: 1.6;
    opacity: 0.8;
}

/* Particle Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255, 225, 53, 0.1);
    border-radius: 50%;
    animation: particleFloat 10s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Responsive 3D */
@media (max-width: 768px) {
    .hero-content-3d {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-3d-model {
        margin-top: 2rem;
    }

    .food-3d-container {
        width: 200px;
        height: 200px;
    }

    .food-item-3d {
        width: 70px;
        height: 70px;
    }

    .features-grid-3d {
        grid-template-columns: 1fr;
    }

    .section-title-3d {
        font-size: 2rem;
    }
}
