.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    aspect-ratio: 3 / 4;
    text-decoration: none !important;
    cursor: pointer;
}
.product-card::before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--color3, #f7f3ed);
    /* bg linear gradient to bottom */
    /* background-image: linear-gradient(to bottom, var(--color3), transparent, var(--color3)); */
    z-index: 0;
    opacity: 0.85;
    /* mix-blend-mode: screen; */
    transition: all 0.3s ease;
}
.product-card:hover::before {
    opacity: 0.95;
}
.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--color3, #f7f3ed);
    /* bg linear gradient to bottom */
    /* background-image: linear-gradient(to bottom, var(--color3), transparent, var(--color3)); */
    z-index: 0;
    opacity: 0.85;
    /* mix-blend-mode: screen; */
    transition: all 0.3s ease;
}
.product-card:hover::after {
    opacity: 0.95;
}
.product-card > * {
    position: relative;
    z-index: 1;
}
.product-card:hover {
    text-decoration: none;
}

.product-card__subheader {
    display: block;
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.product-card__title {
    display: block;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .product-card__title {
        font-size: 24px;
    }
}

.product-card__subtitle {
    display: block;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card__line {
    display: block;
    height: 1px;
    width: 32px;
    margin-top: 24px;
    transition-property: width;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive padding adjustments */
@media (max-width: 768px) {
    .product-card {
        padding: 24px;
    }
}



@media (min-width: 769px) {
    .product-card {
        padding: 32px;
    }
    #main .items-6 .product-card {
	padding: 16px;
}
#main .items-6 .product-card .product-card__title {
	font-size: 24px;
}
#main .items-6 .product-card::after {
	height: 29%;
}
#main .items-6 .product-card .product-card__line {
	margin-top: 5px;
}
.product-card__subtitle:empty {
	display: none !important;
}
#main .items-6 .product-card .product-card__subtitle {
	margin-bottom: 5px;
}




}


@media (min-width: 1024px) {
    #main .items-6 .product-card .product-card__title {
        font-size: 28px;
    }
    #main .items-6 .product-card .product-card__subtitle {
	margin-bottom: 10px;
}


}

