body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    background: azure;
    background-repeat: no-repeat;
    background-size: cover; /* or 'contain' for different scaling */
    background-position: center center;
    overflow-x: hidden;
}


        .slideshow {
            position: relative;
            width: 100%;
            max-height: 400px;
            overflow: hidden;
        }

        .slideshow img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .category-image {
          max-width: 200px;
          margin: 0 auto 20px;
          text-align: center;
        }

       .category-image img {
          max-width: 100%;
          height: auto;
        }

.recommended-products {
    display: flex;
    flex-wrap:wrap;
    gap: 20px;
    margin: 20px;
    justify-content: center;
}

.product-card {
    position: relative;
    background: rgb(34,193,195);
    background: linear-gradient(49deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    box-shadow: 0px 0px 19px 0px rgb(0 0 0 / 15%);
    padding: 15px;
    width: 223px;
    text-align: center;
    overflow: hidden;
    border-width: 20px;
    border-image-source: var(--border-image-source, none);
    border-image-slice: 30;
    border-image-repeat: und;
    height: 296px;
}


.product-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 9px;
    opacity: 0;
}

@keyframes glow {
    0% {
        box-shadow: 0px 0px 16px 0 rgb(0 0 0);
    }
    50% {
        box-shadow: 0px 0px 16px 0 rgb(255 0 0);
    }
    100% {
        box-shadow: 0px 0px 16px 0 rgb(0 0 0);
    }
}



.thumbnail-container img{
    overflow: hidden;
    max-height: 50%;
    margin-bottom: 10px;
    border-radius: 25px;
}

    .thumbnail-container{
	border-radius: 9%;
	width: 99%;
	height: 105%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	z-index: 0;
	object-fit: cover;
	}
.product-card img {
    background-origin: border-box;
    max-width: 100%;
    max-height: 100%;
    border-radius: 14px;
    object-fit: cover;
    object-position: 0px 0px;
    background-clip: border-box;
    transform: scale(1.0);
    box-shadow: inset 0px 0px 20px 13px rgb(0 0 0 / 86%);
}
    a {
        color: #fff; /* Set the color to white or your desired color */
        text-decoration: none; /* Remove underline from anchor elements */
    }
.subsection {
    position: contents;
    padding: 20px;
    display: flex;
    margin: 20px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
    backdrop-filter: blur(10px);
    background:azure;
    border-radius: 13px;
}

.product-title {
    		font-size: 20px;
    		font-weight: 700;
    		margin: 10px 0;
    		color: #F8BD00; /* Yellow color for title */
    		text-transform: uppercase;
        }

        .product-price {
            font-size: 16px;
            font-weight: 500;
            color: #F8BD00;
            margin-bottom: 10px;
        }

.product-details {
    border-radius: 14px;
    display: none;
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    top:3px;
    background-color: #111111c4;
    border: black;
    border-width: 21px;
    border: white;
    padding: 15px;
    box-shadow: 0px 0px 11px 3px #000000, inset 0px 0px 16px 4px #0000007d;
    z-index: 1;
    text-shadow: 1px 4px 4px #555;
    text-align: center;
    backdrop-filter: blur(23px);
    transition: opacity 0.8s, transform 0.8s;
    transform: translateY(100%);
}
.product-info {
    font-style: normal;
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff;
    text-indent: initial;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    font-weight: 600;
    padding: 15px;
}

.product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-info li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.product-info li::before {
    content: '\2022'; /* Bullet point */
    color: #F8BD00; /* Yellow color */
    font-size: 14px;
    margin-right: 5px;
}

/* Different style colors for Product Pricing Components */
.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #0D6EFD; /* Blue color for price */
    margin-bottom: 10px;
}

.view-more-button:hover,
.buy-now-button:hover {
    background-color: #e0a800;
}
@media (min-width: 768px) {
  .category-image {
    max-width: 400px;
  }
}

element.style {
}

.category-image {
    
    background-image:var(--image-source);
    font-size: 72px;
    background-size: 110% auto;
    background-position: center;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color : transparent;
}

.full-width-image {
      width: calc(100% + 40px); /* Adjust the value to control the gap */
      margin: 0 -20px; /* Adjust the value to half of the gap value */
      height: auto;
      max-width: 100%;
      display: block;
    }
  .product-card:hover .product-details {
    display: block;
    transform: translateY(0);
  }