body {
    font-family: 'Abhaya Libre', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Abhaya Libre', serif;
}

p {
    font-family: 'Abhaya Libre', serif;
}

.item .thumb img {
    width: 100%; /* Set the width to 100% of the container */
    height: 300px; /* Set a fixed height for the image container */
    object-fit: cover; /* Crop the image to fit the container */
    object-position: center; /* Center the image within the container */
    border-radius: 8px; /* Optional: add rounded corners */
}

.pt-3{
    padding-top: 12px;
    padding-bottom: 12px;
}

.sticky-content {
    position: -webkit-sticky !important ; /* For Safari */
    position: sticky !important ;
    top: 120px;  /* You can adjust the offset from the top */
}

.flex{
    display: flex;
    gap: 5px;
}

.border-btm{
    color: #a1a1a1;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

@media (max-width: 1024px) {
    
    .product-img-pc{
        display: none !important;
    }
    .product-img-mobile{
        display: block !important;
    }
}
@media (min-width: 1025px) {
    
    .product-img-pc{
        display: block !important;
    }
    .product-img-mobile{
        display: none !important;
    }
}

.cart-container{
    align-items: start;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.responsive-img {
    width: 120px;
}

/* When screen width is less than 600px (small devices) */
@media (max-width: 600px) {
.responsive-img {
    width: 80px; /* Adjust size for small screens */
}
}

.g-3{
    gap: 6px;
}
.btn-search {
    color: #2a2a2a;
    background-color: transparent;
    border-color: #2a2a2a;
  }

  .btn-search:hover {
    color: #fff;
    background-color: #2a2a2a;
  }

.button-pay {
    display: inline-block;
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 700;
    content: '\f105';
    width: fit-content;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: transparent;
    line-height: 48px;
    border :1px solid #2a2a2a;
    border-radius: 5px;
  }

  .payment-details {
    margin-bottom: 30px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
}
.payment-details p {
    font-size: 16px;
    margin: 8px 0;
}
.upload-form {
    text-align: center;
}
.upload-form input[type="file"] {
    display: block;
    margin: 20px auto;
}
.upload-form button {
    background-color: transparent;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border :1px solid #2a2a2a;
}
.alert {
    color: red;
}

.item-link {
    display: block;
    color: inherit;  /* To ensure text color isn't changed */
    text-decoration: none;  /* To remove underline */
}

.item-link:hover .thumb img {
    opacity: 0.8; /* Optional: Image effect when hovering */
}

.flex-display{
    gap: 10px;
    display: flex;
    align-items: center;
}
