.product-description {
    line-height: 1.5em;
    height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: pre-line;
}
.product-name {
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: pre-line;
}

.pointer{
	cursor: pointer;
}

.checkout-sticky-top{
    position:-webkit-sticky;
    position:sticky;
    top:0%;
}

.navbar-brand img {
  max-height: 260px;
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 70px;
  }
}
:root {
    --gdc-card-bg-color: #ffffff;
    --gdc-curve-color: #D5ED9F; /* GREEN color */
    --gdc-main-border-radius: 20px;
}

.gdc-product-card {
    background-color: var(--gdc-card-bg-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.gdc-product-name {
    line-height: 1.2em;
    height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: pre-line;
    
    padding-left: 35px;
    padding-right: 45px;
}

.gdc-product-description {
	line-height: 1.2em;
    height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-left: 35px;
    padding-right: 35px;
}

.gdc-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bs-secondary);
    clip-path: polygon(
	    100% 0%,     /* Top-right */
	    0% 0%,       /* Top-left */
	    0% 35%,      /* Down left */
	    100% 100%    /* Bottom-right */
	);
    border-top-left-radius: var(--gdc-main-border-radius);
    border-top-right-radius: var(--gdc-main-border-radius);
    transform:translateY(-5%);
    width: 50%; /* Use 100% size before scaling */
    height: 95%;
    z-index: -1;
}
.gdc-product-card::after{
  	content:"";
  	position:absolute;
  	left:0;
  	bottom:0;
  	width:65px;
  	height:170px;
  	background: var(--bs-secondary);
  	clip-path: polygon(0 0, 100% 78%, 100% 100%, 0 100%);
  	transform:translateY(15%);
  	border-bottom-left-radius: var(--gdc-main-border-radius);
  	border-bottom-right-radius: var(--gdc-main-border-radius);
  	z-index: -1;
}

.gdc-image-header {
	width: 100%;
    text-align: right;
	overflow: visible;     
	z-index: 1;
	margin-top: -10px;
}

.gdc-price {
    /*position: absolute;  Position relative to .gdc-image-header */
    z-index: 3; 
}

.masked {
  height: 600px;
  background-size: cover;
  mask-image: url('../svg/chicken-mask.svg');
  -webkit-mask-image: url('../svg/chicken-mask.svg');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-type: luminance;
  mask-mode: luminance;
}
