body {
    background: #2b2b2b;
}

/* WRAPPER */
.gtl-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* COLLECTIONS */
.gtl-collections {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
	padding-top: 15px;
}

.gtl-collections button {
    padding: 12px 24px;
    border: 2px solid #333;
    background: #444;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}
.gtl-collections button:hover {
    background: #e0e0e0;
}
.gtl-collections .active {
    background: #fff;
    color: #000;
}

/* TYPE TITLES */
.gtl-type-title {
    color: white;
    margin: 30px 0 10px;
    font-size: 18px;
}

/* GRID */
.gtl-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* CARD */
.gtl-card {
    width: 160px;
}
.gtl-card a:after { display:none; }
/* IMAGE */
.gtl-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}
.gtl-card img:hover {
    transform: scale(1.05);
}

/* TITLE UNDER IMAGE */
.gtl-title {
    text-align: center;
    margin-top: 8px;
    color: #ccc;
    font-size: 13px;
}

/* LIGHTBOX */
#gtl-lightbox {
    display: none;
    position: fixed;
    z-index: 99999999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

.boxflex {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.gtl-lightbox-img {
    max-width: 400px;
    max-height: 70vh;
    margin-top: 10vh;
    border-radius: 12px;
    transform: scale(0.9);
    transition: 0.3s;
}

#gtl-lightbox:has(img[src]) .gtl-lightbox-img {
    transform: scale(1);
}

.gtl-lightbox-title {
    color: white;
    margin-top: 10px;
    font-size: 16px;
}

.gtl-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}