.gm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Négy oszlop */
    gap: 20px;
    width: 100%; /* A galéria 92%-os szélessége */
    margin: 0 auto; /* Középre igazítja a galériát */
    position: relative; /* Szükséges a pszeudoelemhez */
    border-top: 1px dotted #000; /* 1px szaggatott vonal */
    padding-top:20px;
    padding-left: 10px;
    padding-right: 10px;
}



@media only screen and (max-width: 768px) {
    .gm-gallery-grid {
        grid-template-columns: 1fr; /* Egysoros elrendezés kisebb kijelzőkön */
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
        gap: 10px;
        padding-top:20px;
        border-top: 1px dotted #000; /* 1px szaggatott vonal */
        margin-bottom:100px;
    }
    .gm-gallery-item img {
        width: 100% !important;
        height: auto !important;
        max-width: 265px;
        object-fit: cover;
        aspect-ratio: 1/1; /* 265px széles és magas négyzet alakú képekhez */
       
    }
    
    .gm-gallery-item {
        background-color: transparent;
        border: none;
        
        text-align: left;
        width: 100% !important;
    }
}

.gm-gallery-item {
    background-color: transparent;
    border: none;
    
    text-align: left;
}


.gm-image-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 265px; /* Ezt már megadtad */
    aspect-ratio: 1/1;
    
}


.gm-gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 300ms ease;
    max-width: 265px; /* Ezt már megadtad */
    aspect-ratio: 1/1; /* Négyzet alakú képhez */
}

.gm-gallery-item img:hover {
    transform: scale(1.1); /* 10% zoom */
    border: none;
}


.gm-label {
    position: absolute;
    font-size: 14px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
}

.type-label {
    bottom: 8px;
    left: 10px;
}

.new-label {
    top: 10px;
    right: 10px;
    background-color: #f5c200;
    color: #fff;
}

.gm-product-details {
    text-align: left;
    padding-left: 10px;
}

.gm-product-details h3 {
    font-size: 16px;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-family: "Space Grotesk", Sans-serif;
    margin-top: 10px;
}

.gm-product-details p {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin-top: -4px;
}

.gm-label.type-label {
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 0px 15px 0px 15px !important;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000 !important;
}


.gm-label.new-label {
    background-color: #FAFF00 !important;
    padding: 3px 5px 1px 5px;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000 !important;
}



.gm-gallery-item {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    text-align: left;
}

.gm-meta-label {
    font-size: 15px; /* Állítsd be a kívánt betűméretet */
    font-weight: bold;
    
}
