@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1120px) {
  :root {
    --h2-font-size: 1.5rem;
    --small-font-size: .875rem;
  }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
   font-family: var(--body-font);
   background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
   background-attachment: fixed;
   color: var(--text-color);
    display: flex;
    flex-direction: column;
     min-height: 100vh;
     overflow-x: hidden;
     transition: all 0.3s ease;
}

/* Selection color */
::selection {
    background: rgba(79, 125, 88, 0.3);
    color: #333;
}

::-moz-selection {
    background: rgba(79, 125, 88, 0.3);
    color: #333;
}

.main-content {
   flex: 1;
}

/* Enhanced Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1050;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-item .nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    margin: 0 0.2rem;
}

.nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-item .nav-link:hover::before {
    width: 80%;
}
.logout{
   border: none;
   background: transparent;
   color: white;
   margin-top:2px;
   font-size:10px;
}
/* offcanvas for small screen */
.offcanvas {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    background: linear-gradient(135deg, #3F7D58 0%, #2d5a3f 100%);
    color: #fff;
    padding: 1.5rem;
}

.offcanvas-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.offcanvas .dropdown-menu {
    position: static !important;
    float: inline-start;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link:hover {
   background: linear-gradient(135deg, #3F7D58 0%, #2d5a3f 100%);
   color: #fff;
   transform: translateX(5px);
   box-shadow: 0 3px 10px rgba(79, 125, 88, 0.3);
}


/* read more css */
#project-card {
    width: 300px;
    height: auto;
}

#project-card .card-img-top {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}
/* smaller screens (tablets) */
@media screen and (max-width: 678px) {
    #project-card {
        width: 100%;
    }
    #project-card .card-img-top {
        height: 30vh;
    }
}

/* extra small screens (phones) */
@media screen and (max-width: 444px) {
    #project-card {
        width: 100%;
        margin-bottom: 20px;
        min-width: 200px;
    }
    #project-card .card-img-top {
        height: 150px;
    }
    #textContainer h5 {
        font-size: 12px;
    }
    #textContainer .card-text {
        font-size: 12px;
    }
}


/* Categories */
.product {
    position: relative;
    padding: 10px 0px;
}

.product-section {
    display: flex;
    justify-content:space-around;
    gap:0.5vw;
    flex-wrap: wrap;
    margin-bottom: 20px;

}

.product-section .product-filter {
    text-align: center;
    margin-top: 20px;
    padding: 10px auto;
}

.product-section .product-filter img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-section .product-filter img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #3F7D58;
    box-shadow: 0 8px 25px rgba(79, 125, 88, 0.3);
}

.product-section .product-filter .filter-item {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #A4B465;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.product-section .product-filter .filter-item:hover,
.product-section .product-filter .filter-item.active {
    color: #fff;
    background: linear-gradient(135deg, #3F7D58 0%, #2d5a3f 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 125, 88, 0.3);
}
.filter-select{
  border: 2px solid rgba(79, 125, 88, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(79, 125, 88, 0.05) 100%);
  width: 100%;
  max-width: 100%;
  min-width: 70px;
  padding: 0.5rem 2.5rem 0.5rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 12px;
  color: #3F7D58;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233F7D58' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 12px;
  box-shadow: 0 2px 5px rgba(79, 125, 88, 0.1);
}

.filter-select:hover {
  border-color: #3F7D58;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(79, 125, 88, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(79, 125, 88, 0.25);
  transform: translateY(-2px);
}

.filter-select:focus {
  border-color: #3F7D58;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(79, 125, 88, 0.15) 100%);
  outline: none;
  box-shadow: 0 4px 15px rgba(79, 125, 88, 0.3), 0 0 0 3px rgba(79, 125, 88, 0.1);
  transform: translateY(-1px);
}

.filter-select option {
  background: #ffffff;
  color: #3F7D58;
  padding: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
}

.filter-select option:hover,
.filter-select option:checked {
  background: linear-gradient(135deg, #3F7D58 0%, #2d5a3f 100%);
  color: #ffffff;
}

@media( max-width:700px) {
  .filter-select{
   font-size: 0.75rem;
   padding: 0.4rem 2rem 0.4rem 0.6rem;
   border-radius: 10px;
   background-size: 10px;
   background-position: right 0.6rem center;
  }
}
.product-section {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 0;
  gap: 2rem;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox - hide scrollbar */
  -ms-overflow-style: none; /* IE and Edge - hide scrollbar */
}

.product-section::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera - hide scrollbar */
}

.product-filter {
  flex: 0 0 auto; /* Prevents shrinking */
  text-align: center;
  width: 80px; /* or any fixed width */
}

.product-filter img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.filter-item {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #7c9261;
}

/* Scrollbar styling is now visible and styled above */
/*========== Responsive typography ==========*/
.product_container img {
  display: block;
  max-width: 100%;
  height:248px;
}



/*=============== CARD ===============*/
.product_container {
  display: grid;
  place-items: center;
  margin-inline: 1.5rem;
  padding-block: 3rem 1rem;
}
.card__container {
  display: grid;
  row-gap: 3.5rem;
}

.card__article {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 1.5rem;
  cursor: pointer;
  min-height: 248px;
}

.card__article:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card__img {
  width: 328px;
  height: 248px;
  border-radius: 1.5rem;
  transition: all 0.5s ease;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.card__article:hover .card__img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.card__data {
  width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  position: absolute;
  bottom:-7rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.card__description {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: .25rem;
}

.card__title {
  font-size: var(--h2-font-size);
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: .75rem;
  transition: color 0.3s ease;
}

.card__article:hover .card__title {
  color: #3F7D58;
}

.card__description {
  font-weight: 500;
  color: #666;
  font-size: 1.1rem;
}

.card__button {
  text-decoration: none;
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--first-color);
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, rgba(79, 125, 88, 0.1) 0%, rgba(79, 125, 88, 0.2) 100%);
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(79, 125, 88, 0.3);
}

.card__button:hover {
  background: linear-gradient(135deg, #3F7D58 0%, #2d5a3f 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 125, 88, 0.3);
  text-decoration: none;
}

/* Naming animations in hover */
.card__article:hover .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.card__article:hover {
  overflow: visible;
}

.card__article:not(:hover) {
  overflow: hidden;
}

.card__article:not(:hover) .card__data {
  animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(.5rem);
  }
}

@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .product_container {
    margin-inline: 1rem;
  }

  .card__data {
    width: 250px;
    padding: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .product_container {
    /* height: 100vh; */
  }

  .card__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .card__img {
    width: 348px;
  }
  .card__data {
    width: 316px;
    padding-inline: 2.5rem;
  }
}

/* project */
.project-card {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
}
.project-card .card{
    width: 18rem;
}
.project-card img {
    width:100%;
    height:100px; 
    object-fit: cover;
}
@media screen and (max-width:768px) {
    .project-card {
        padding:10px 20px;
        margin-bottom:20px;
        gap: 10px;
    }
     .project_container img {
        width:100%;
        height:100%;
     }

     .project_container #textContainer
     {
        font-size: 12px; 
        object-fit: cover;
     }
     .project_content {
        font-size: 5px;
     }
    .project_container #textContainer .card-title {
        font-size: 10px;
    }
}


/* CONTACT */
.contact-form {
    position: relative;
    min-height: 100vh;
    z-index: 0;
    padding: 30px;
    justify-content: center;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    background: linear-gradient(135deg, rgba(79, 125, 88, 0.02) 0%, rgba(164, 180, 101, 0.02) 100%);
}

.contact-form .container {
    width:100%;
    margin-top: 0 auto;
}

.contact-form h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #626F47;
    font-family: "Aboreto", system-ui;
}

.contact-form h2 {
    line-height: 40px;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 500;
    color: #4b3b2c;
    text-align: center;
}

.contact-form .main {
    position: relative;
    display: flex;
    margin: 30px 0px;
}

.contact-form .content {
    flex-basis: 50%;
    padding: 3em 3em;
    box-shadow: 5px 9px 49px -17px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;

}

.form-image {
    flex-basis: 20%;
    background-size: cover;
    padding: 40px;
    box-shadow: 5px 9px 49px -17px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    align-items: center;
    display: grid;
}

.form-image img {
    height: 30vh;
    border-radius: 10px;
}

.contactBtn {
    border-radius: 35px;
}

.contact-form input,
textarea {
    outline: none;
    margin-bottom: 15px;
    font-stretch: 16px;
    color: #333;
    padding: 14px 20px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
textarea:focus {
    border-color: #3F7D58;
    box-shadow: 0 0 0 3px rgba(79, 125, 88, 0.1);
    transform: translateY(-2px);
}

.contact-form .contactBtn {
    font-size: 18px;
    color: #fff;
    width: 100%;
    background: linear-gradient(135deg, #4b3b2c 0%, #3d2e22 100%);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 14px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(75, 59, 44, 0.3);
}

.contactBtn:hover {
    background: linear-gradient(135deg, #3d2e22 0%, #2e2118 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(75, 59, 44, 0.4);
    outline: none;
}

@media screen and (max-width: 600px) {
    .contact-form .main {
        flex-direction: column;
        padding: 10px;
    }

    .contact-form .container {
        width: 100%;
    }

    .form-image {
        display: none;
    }
}

@media screen and (max-width:1024px) {
    .contact-form .main {
        flex-direction: column;
        padding: 10px;
    }

    .contact-form .container {
        width: 100%;
    }

    .form-image {
        display: none;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader img {
    width: 100px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
/* checkout/proceed */
.card-registration .select-input.form-control[readonly]:not([disabled]) {
font-size: 1rem;
line-height: 2.15;
padding-left: .75em;
padding-right: .75em;
}
.card-registration .select-arrow {
top: 13px;
}
/* Footer */
footer {
  margin-top: 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #4b3b2c 0%, #3d2e22 100%);
  color: #fff;
  width: 100%;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 60px;
  gap: 20px;
}

#footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

#footer-col h3 {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 30px;
  padding-top: 10px;
}

#footer-col h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background: linear-gradient(135deg, #3F7D58 0%, #A4B465 100%);
  height: 3px;
  width: 50px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

#footer-col:hover h3::before {
  width: 80px;
}

#footer-col ul {
  list-style: none;
  padding: 0;
}

#footer-col ul li {
  margin-bottom: 12px;
}

#footer-col ul li a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

#footer-col ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

#footer-col ul li a:hover {
  color: #fff;
  padding-left: 25px;
  transform: translateX(5px);
}

#footer-col ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.social-interact a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.social-interact a:hover {
  color: #4b3b2c;
  background-color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .social-interact {
    justify-content: center;
  }

  .social-interact a {
    margin: 5px;
  }
}

/* Enhanced Carousel */
.carousel {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-image {
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .carousel-image {
        height: 300px;
    }
}

.carousel:hover .carousel-item img {
    transform: scale(1.05);
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: white !important;
    text-align: center;
}

.carousel-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.carousel-description {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    transform: scale(1.3);
    background-color: #3F7D58;
}

/* Smooth Scroll Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3F7D58 0%, #2d5a3f 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(79, 125, 88, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(79, 125, 88, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* Toast Enhancements */
.toast {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #3F7D58;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Button Enhancements */
.btn-success {
    background: linear-gradient(135deg, #3F7D58 0%, #2d5a3f 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 125, 88, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #2d5a3f 0%, #1f3f2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 125, 88, 0.4);
}

/* Shopping Cart Badge */
.bx-shopping-bag {
    position: relative;
    transition: all 0.3s ease;
}

.bx-shopping-bag:hover {
    transform: scale(1.2);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.bx-shopping-bag sup {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

/* Dropdown Enhancements */
.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0.5rem;
    margin-top: 0.5rem;
    z-index: 1051 !important;
    position: absolute;
}

.dropdown-item {
    border-radius: 5px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(79, 125, 88, 0.1) 0%, rgba(79, 125, 88, 0.2) 100%);
    transform: translateX(5px);
}

/* Modal Quantity Controls */
.modal .quantity-increment,
.modal .quantity-decrement {
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 40px;
}

.modal .quantity-increment:hover {
    background-color: #3F7D58;
    color: white;
    transform: scale(1.1);
}

.modal .quantity-decrement:hover {
    background-color: #dc3545;
    color: white;
    transform: scale(1.1);
}

.modal .quantity-input-modal {
    font-weight: 600;
    font-size: 1.1rem;
    border-left: none;
    border-right: none;
}

.modal .quantity-input-modal:focus {
    border-color: #3F7D58;
    box-shadow: 0 0 0 0.2rem rgba(63, 125, 88, 0.25);
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s;
}
