@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz@0,8..144;1,8..144&display=swap');
html,body
{
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
  font-family: "Roboto Serif", serif;
}
.carousel-caption {
    animation: fadeInUp 2.5s ease-in-out;
    top:30vh;
  }
  .carousel-caption h1 {
    animation: fadeInUp 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
    font-size: 65px;
    color: #00c8ff;
    font-family: "Caveat", cursive;
  }
  .carousel-caption .buy_btn {
    animation: fadeInUp 3.5s ease-in-out forwards;
    animation-delay: 3.5s;
    opacity: 0;
    color: #053d70;
    font-family: "Caveat", cursive;
    font-size: 25px;
  }
  .carousel-caption p {
    animation: fadeInUp 2.5s ease-in-out forwards;
    animation-delay: 2.2s;
    opacity: 0;
    width: 60%;
    margin: 0 auto;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(0px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
  }

  .carousel-caption h1, .carousel-caption p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
 .price-color
  {
    color: #053d70;
  }
  .fixed-card {
    height: 100px; /* Set your desired fixed height */
    overflow: hidden; /* Optional: hide overflow if text/image is too large */
}
a
{
    color: #000;
    text-decoration: none;
}
#cart-count
{
    color: #fff;
    top: -5px;
    position: relative;
    font-size: 18px;
}
.submit_btn
{
    background-color: #053d70;
    border: none;
    padding: 10px 37px;
    border-radius: 10px;
    color: #fff;
}
.error
{
    color: red;
    font-size: 15px;
    text-align: left;
}
.h_50
{
    height: auto;
}
.product-card {
    background-color: #fff;
    padding: 1rem;
    margin-top: 1rem;
    height: 100%; /* or use a fixed height like 400px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.product-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    max-height: 200px; /* Adjust as needed */
    object-fit: contain; /* or cover depending on image style */
    flex-shrink: 0;
}

.product-info {
    margin-top: auto;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.cart-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(10px); /* start slightly lower */
    padding: 8px 16px;
    background-color: #053d70;
    color: white;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.image-wrapper:hover .cart-button {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* move into place */
    pointer-events: auto;
}
.notification {
    position: fixed;
    top: 20px;
    background-color: #053d70; /* Success green */
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-50px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
    box-shadow: 0 0 9px 0px;
    right: 30px;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/*footer style*/
footer
{
  margin-top: 250px;
  border-top: 1px solid #053d6e;
}
footer a
{
  display: flex;
}
footer a:hover
{
  padding-left: 7px;
  transition: all 0.20s ease-in;
  color: #053d70;
}
.arrow-right::before {
  font-family: "Bootstrap Icons";
  content: "\F138"; /* Unicode for bi-arrow-right */
  font-style: normal;
  font-weight: normal;
  display: inline-block;
}
.newsletter_bg
{
  padding: 97px 40px 50px;
  top: -100px;
  position: relative;
  background-image: url(../images/newletter_bg.jpg);
  background-size: cover;
}
.copy-bg
{
  background-color: #053d70;
  color: #fff;
  font-size: 13px;
  
}
/*End footer style*/
/*sweetalert style*/
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm)
{
  background-color: #053d70 !important;
  color: #fff;
  padding: 10px 50px !important;
}
div:where(.swal2-icon).swal2-success .swal2-success-ring
{
  border: .25em solid #51789d !important;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line]
{
  background-color:  #51789d !important;
}
.swal2-html-container, .swal2-title
{
  font-family: system-ui !important;
}

/*end sweetalert style*/