.card {
            background-color: #f3f3f3;
            border-radius: 18px;
            overflow: hidden;
            transition: transform 0.3s;
            aspect-ratio: 1;
			background-size: cover !important;
    		background-repeat: no-repeat !important;
        }

        .card:hover {
            transform: translateY(-4px);
        }

        .card-header {
                background-color: #151515;
				color: white;
				padding: 12px 24px;
				font-family: 'Roobert';
				font-weight: 600;
			font-size:14px;
			max-height:45px;
            display: flex;
    justify-content: space-between;
    align-items: center;
		
			
        }

        span.category-name {
    font-size: 10px;
    font-family:'roobert';
    text-transform: uppercase;
    line-height: 12px;
    letter-spacing: 5%;
    border: 1px solid #fffff7;
    border-radius: 2px;
    padding: 2px 4px;
    color: #ffffff;
    font-weight: 400;
    opacity: .75;
}
    

        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

  .card-content.width-bg-image {
    padding: 12px;
    background: rgba(21, 21, 21, 0.2); /* Light frosted glass effect */
    backdrop-filter: blur(20px); /* Glass blur */
    -webkit-backdrop-filter: blur(20px); /* For Safari support */
    margin: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
   
}

        .card-content {
            padding: 12px;
            background-color: #ffffff;
            margin: 12px;
            border-radius: 10px;
            color: #8A8A8A;
        }
		
		button.filter-option:hover,button.filter-option:focus {
			background-color: #fff0 !important;
			color: #151515!important;
			border: 1px solid #151515!important;
            font-family:'Roobert';
            font-size:12;
            font-weight:400;

		}

@media (max-width: 768px){
	
	.card-content.width-bg-image {
        margin: 12px 12px 68px 12px;
    }

/*     .card {
                min-height: 300px;
            } */
}


        @media (min-width: 581px) {
    .card-header span.open, .card-header span.close {
        display: none;
    }
}

@media (max-width: 580px) {
    span.category-name{
        display:none;
    }

  .card .card-content {
    display: none;
    transition: all 0.3s ease;
  }

  .card .card-content.active {
    display: block;
  }

  .card .card-header {
    cursor: pointer;
  }
    
    .grid-container-filter {
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
            row-gap: 10px;

}
    
    .card {
        min-height: 0;
    }
    
    .card-header {
    display: flex;
    justify-content: space-between;
}
    
    .card-header.active span.open {
    display: none;
}
    
    .card-header span.close {
    display: none;
}
.card-header.active span.close {
    display: block;
}

.card .card-header svg {
    position: relative;
    top: 3px;
    height: 21px;
    width: 21px;
}
    
}