@charset "utf-8";

/* ============================================================
AURELIX COLLECTION
Version 3.0
============================================================ */
:root {
	--gold: #B88650;
	--gold-dark: #A67645;
	--text: #2D2D2D;
	--text-light: #777;
	--border: #ECECEC;
	--bg: #FFFFFF;
	--bg-light: #FAFAFA;
	--radius: 16px;
	--shadow:
		0 12px 40px rgba(0, 0, 0, .06);
	--transition: .25s;
}

/* ============================================================
RESET
============================================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	display: block;
	max-width: 100%;
}

button {
	font: inherit;
}

a {
	text-decoration: none;
}

h4 {
	margin-bottom: 10px;
}

/* CSS Document */
/* Navigation */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #ececec;
}

.header-container {
	max-width: 1600px;
	margin: auto;
	height: 95px;
	padding: 0;
	display: grid;
	grid-template-columns: 260px 1fr auto;
	align-items: center;
}

.header-logo img {
	height: 80px;
	display: block;
}

.header-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
}

.header-nav a {
	text-decoration: none;
	color: #2d2d2d;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	position: relative;
	transition: .25s;
}

.header-nav a:hover {
	color: #b88650;
}

.header-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 2px;
	background: #b88650;
	transition: .25s;
}

.header-nav a:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.header-button {
	padding: 15px 30px;
	border-radius: 6px;
	background: #b88650;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 12px;
	font-weight: 700;
	transition: .25s;
}

.header-button:hover {
	background: #a67645;
}

.language-btn {
	width: 46px;
	height: 46px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 22px;
	color: #444;
	transition: .25s;
}

.language-btn:hover {
	color: #b88650;
}

.mobile-menu {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
}

/* ============================================================
LAYOUT
============================================================ */
.collection-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 45px;
	align-items: start;
}

/* ============================================================
SIDEBAR
============================================================ */
.collection-sidebar {
	position: sticky;
	top: 110px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 35px;
	box-shadow: var(--shadow);
}

.filter-group {
	margin-bottom: 40px;
}

.filter-group:last-child {
	margin-bottom: 0;
}

.filter-group h3 {
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #777;
	margin-bottom: 20px;
}

/* ============================================================
SIDEBAR
============================================================ */
.collection-sidebar {
	position: sticky;
	top: 120px;
	background: #fff;
	padding: 34px;
	border-radius: 22px;
	border: 1px solid #EEE8DF;
	box-shadow:
		0 18px 45px rgba(0, 0, 0, .05);
}

/* ============================================================
FILTER GROUP
============================================================ */
.filter-group {
	margin-bottom: 42px;
}

.filter-group h3 {
	margin-bottom: 22px;
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #555;
	font-weight: 700;
}

/* ============================================================
COLOR FILTER
============================================================ */
#colorFilters {
	display: grid;
	grid-template-columns:
		repeat(5, 1fr);
	gap: 14px;
}

.color-circle {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, .15);
}

.color-circle:hover {
	transform: scale(1.18);
}

.color-circle.active {
	transform: scale(1.18);
	box-shadow:
		0 0 0 3px var(--gold);
}

/* ============================================================
TOOLBAR
============================================================ */
.collection-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border);
}

.collection-toolbar-left h1 {
	font-size: 46px;
	font-weight: 300;
	line-height: 1.1;
	color: var(--text);
}

.collection-toolbar-left p {
	margin-top: 10px;
	color: var(--text-light);
	font-size: 17px;
}

.collection-toolbar-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* ============================================================
SEARCH
============================================================ */
.collection-search {
	width: 320px;
	height: 48px;
	padding: 0 18px;
	border: 1px solid var(--border);
	border-radius: 10px;
	outline: none;
	transition: var(--transition);
}

.collection-search:focus {
	border-color: var(--gold);
}

/* ============================================================
SORT
============================================================ */
.collection-sort {
	height: 48px;
	padding: 0 20px;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: #fff;
	cursor: pointer;
}

/* ============================================================
GRID
============================================================ */
.grid-view {
	display: grid;
	grid-template-columns:
		repeat(auto-fill, minmax(310px, 1fr));
	gap: 34px;
}

.list-view {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.compact-view {
	display: grid;
	grid-template-columns:
		repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}

/* ============================================================
CARD
============================================================ */
.collection-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #ECECEC;
	transition: .30s;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, .05);
}

.collection-card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, .10);
}

/* ============================================================
IMAGE
============================================================ */
.collection-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: #F8F8F8;
}

.collection-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .45s;
}

.collection-card:hover img {
	transform: scale(1.06);
}

/* ============================================================
IMAGE OVERLAY
============================================================ */
.collection-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background:
		linear-gradient(rgba(0, 0, 0, .05),
			rgba(0, 0, 0, .45));
	opacity: 0;
	transition: .30s;
}

.collection-card:hover .collection-overlay {
	opacity: 1;
}

/* ============================================================
VIEW BUTTON
============================================================ */
.view-design {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background: #fff;
	color: #2D2D2D;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: .25s;
}

.view-design:hover {
	background: #B88650;
	color: #fff;
}

/* ============================================================
CATEGORY LABEL
============================================================ */
.collection-category {
	position: absolute;
	top: 18px;
	left: 18px;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(10px);
	padding: 8px 14px;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* ============================================================
CONTENT
============================================================ */
.collection-content {
	padding: 24px;
}

.collection-content h3 {
	font-size: 22px;
	font-weight: 300;
	line-height: 1.35;
	margin-bottom: 16px;
	color: #2D2D2D;
}

/* ============================================================
META
============================================================ */
.collection-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #777;
}

.collection-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* ============================================================
LIST VIEW
============================================================ */
.list-view .collection-card {
	display: grid;
	grid-template-columns:
		330px 1fr;
}

.list-view .collection-image {
	aspect-ratio: auto;
	height: 100%;
}

.list-view .collection-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ============================================================
COMPACT VIEW
============================================================ */
.compact-view .collection-content {
	padding: 18px;
}

.compact-view h3 {
	font-size: 17px;
}

.compact-view .view-design {
	padding: 10px 18px;
	font-size: 11px;
}

/* ============================================================
PAGINATION
============================================================ */
#pagination {
	margin: 70px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

#pagination button {
	min-width: 46px;
	height: 46px;
	border: none;
	background: #fff;
	border: 1px solid #E8E8E8;
	border-radius: 10px;
	cursor: pointer;
	font-size: 14px;
	transition: .25s;
}

#pagination button:hover {
	border-color: #B88650;
	color: #B88650;
	transform: translateY(-2px);
}

#pagination button.active {
	background: #B88650;
	border-color: #B88650;
	color: #fff;
}

#pagination button:disabled {
	opacity: .35;
	cursor: default;
}

.page-nav {
	padding: 0 20px;
}

#pagination span {
	color: #999;
	padding: 0 6px;
}

/* ============================================================
VIEW BUTTONS
============================================================ */
.view-btn {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: 1px solid #E8E8E8;
	border-radius: 10px;
	cursor: pointer;
	transition: .25s;
}

.view-btn:hover {
	border-color: #B88650;
	color: #B88650;
}

.view-btn.active {
	background: #B88650;
	border-color: #B88650;
	color: #fff;
}

.view-btn i {
	font-size: 18px;
}

/* ============================================================
FILTER CHIPS
============================================================ */
.filter-chip {
	position: relative;
}

.filter-chip::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 2px;
	background: #B88650;
	transition: .25s;
}

.filter-chip:hover::before,
.filter-chip.active::before {
	width: 14px;
}

.filter-chip:hover {
	padding-left: 40px;
}

/* ==========================================================
STYLE CHIPS
========================================================== */
#styleFilters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.style-chip {
	padding: 10px 18px;
	border: 1px solid #e6d9c7;
	background: #fff;
	color: #555;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: .25s;
}

.style-chip:hover {
	border-color: #b88650;
	color: #b88650;
}

.style-chip.active {
	background: #b88650;
	border-color: #b88650;
	color: #fff;
}

/* ============================================================
COLOR CIRCLES
============================================================ */
#colorFilters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.color-circle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	position: relative;
	transition: .25s;
}

.color-circle:hover {
	transform: scale(1.22);
}

.color-circle.active {
	transform: scale(1.22);
	box-shadow:
		0 0 0 3px #B88650;
}

/* Tooltip */
.color-circle::after {
	content: attr(title);
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	background: #222;
	color: #fff;
	font-size: 11px;
	padding: 6px 10px;
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
	transition: .2s;
}

.color-circle:hover::after {
	opacity: 1;
}

/* ============================================================
CATEGORY
============================================================ */
.filter-chip {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 7px 0 7px 30px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: #444;
	transition: .25s;
	font-size: 15px;
}

/* Kreis */
.filter-chip::before {
	content: "";
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid #C9B08A;
	flex-shrink: 0;
	transition: .25s;
}

/* aktiv */
.filter-chip.active {
	color: #B88650;
	font-weight: 600;
}

.filter-chip.active::before {
	background: #B88650;
	border-color: #B88650;
	box-shadow:
		inset 0 0 0 3px #fff;
}

/* Hover */
.filter-chip:hover {
	padding-left: 40px;
	color: #B88650;
}

/* ============================================================
COLORS
============================================================ */
#colorFilters {
	display: grid;
	grid-template-columns:
		repeat(5, 32px);
	gap: 16px;
}

.color-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: .25s;
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, .12);
}

.color-circle:hover {
	transform: scale(1.18);
}

.color-circle.active {
	transform: scale(1.18);
	box-shadow:
		0 0 0 3px #B88650;
}

/* ============================================================
STYLE TAGS
============================================================ */
.style-chip {
	display: inline-flex;
	padding: 6px 9px;
	border: 1px solid #E8E8E8;
	border-radius: 8px;
	margin: 0 10px 10px 0;
	cursor: pointer;
	font-size: 12px;
	transition: .25s;
	background: #fff;
}

.style-chip:hover {
	border-color: #B88650;
	color: #B88650;
}

.style-chip.active {
	background: #B88650;
	color: #fff;
	border-color: #B88650;
}

.reset-filter {
	width: 100%;
	height: 46px;
	border: 1px solid #B88650;
	background: #fff;
	color: #B88650;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	transition: .25s;
}

.reset-filter:hover {
	background: #B88650;
	color: #fff;
}

/* ============================================================
SEARCH
============================================================ */
.collection-search {
	background:
		url("../img/icons/search.svg") no-repeat 18px center;
	padding-left: 48px;
}

.collection-search::placeholder {
	color: #999;
}

/* ============================================================
SORT
============================================================ */
.collection-sort {
	transition: .25s;
}

.collection-sort:hover {
	border-color: #B88650;
}

/* ============================================================
RESULT COUNTER
============================================================ */
.collection-results {
	color: #777;
	font-size: 15px;
	margin-bottom: 30px;
}

.collection-results strong {
	color: #B88650;
}

/* ============================================================
FADE IN
============================================================ */
.collection-card {
	animation: fadeUp .45s ease both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform:
			translateY(18px);
	}

	to {
		opacity: 1;
		transform:
			translateY(0);
	}
}

/* ============================================================
IMAGE LOADING
============================================================ */
.collection-image {
	background: #F7F7F7;
}

.collection-image img {
	opacity: 1;
	transition: opacity .4s;
}

.collection-image img.loaded {
	opacity: 1;
}

/* ============================================================
PREMIUM POPUP
============================================================ */
.image-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .88);
	backdrop-filter: blur(6px);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: .35s;
	z-index: 99999;
}

.image-modal.active {
	opacity: 1;
	visibility: visible;
}

.image-modal-content {
	width: min(1200px, 92vw);
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 340px;
	box-shadow:
		0 35px 90px rgba(0, 0, 0, .35);
}

/* ============================================================
POPUP IMAGE
============================================================ */
.popup-left {
	background: #F7F7F7;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 35px;
}

.popup-left img {
	max-width: 100%;
	max-height: 82vh;
	object-fit: contain;
}

/* ============================================================
POPUP INFO
============================================================ */
.popup-right {
	padding: 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.popup-right h2 {
	font-size: 34px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 18px;
}

.popup-right p {
	color: #777;
	line-height: 1.8;
	margin-bottom: 35px;
}

/* ============================================================
REQUEST BUTTON
============================================================ */
.request-license {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	background: #B88650;
	color: #fff;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
	font-weight: 700;
	transition: .25s;
}

.request-license:hover {
	background: #A67645;
	transform: translateY(-2px);
}

/* ============================================================
CLOSE
============================================================ */
.close-modal {
	position: absolute;
	top: 25px;
	right: 30px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .15);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 34px;
	color: #fff;
	transition: .25s;
}

.close-modal:hover {
	background: #B88650;
}

/* ============================================================
LICENSE BANNER
============================================================ */
.license-banner {
	margin: 90px 0;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
	box-shadow:
		0 18px 55px rgba(0, 0, 0, .05);
}

.license-grid3 {
	display: grid;
	grid-template-columns:
		360px repeat(5, 1fr);
}

.license-feature {
	padding: 45px 30px;
	text-align: center;
	transition: .30s;
}

.license-intro {
	padding: 35px;
	background: #faf8f5;
}

.license-intro h3 {
	font-size: 26px;
	line-height: 1.3;
	margin-bottom: 18px;
}

.license-intro p {
	color: #666;
	margin-bottom: 28px;
}

.license-feature:hover {
	background: #FAFAFA;
}

.license-feature i {
	font-size: 42px;
	color: #B88650;
	margin-bottom: 22px;
}

.license-feature h4 {
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
}

.license-feature p {

	color: #777;
	line-height: 1.8;
}

.license-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 35px;
	border-top: 1px solid #ececec;
}

.license-note {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 18px;
}

.license-note i {
	color: #b88650;
	font-size: 24px;
}

.license-bottom-btn {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 35px;
	border: 1px solid #c99b63;
	border-radius: 8px;
	color: #b88650;
	text-decoration: none;
	font-weight: 600;
	transition: .25s;
}

.license-bottom-btn:hover {
	background: #b88650;
	color: #fff;
}

/* ==========================================================
BADGES
========================================================== */
.badge {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	z-index: 20;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.badge.favorite {
	background: #c28a49;
}

.badge.pinterest {
	background: #E60023;
}

.badge i {
	font-size: 13px;
}

/* Badge */
.card-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 8px 16px;
	background: #fff;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	z-index: 5;
}

.card-badge.gold {
	background: #B88650;
	color: #fff;
}

/* Card */
.card-likes {
	position: absolute;
	right: 18px;
	bottom: 18px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, .92);
	border-radius: 30px;
	font-size: 12px;
	backdrop-filter: blur(10px);
}

/* Pinterest */
.card-pinterest {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, .92);
	border-radius: 30px;
	font-size: 12px;
	backdrop-filter: blur(10px);
}

/* ============================================================
QUICK FILTER
============================================================ */
.quick-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 35px 0 45px;
}

.quick-filter {
	padding: 12px 24px;
	background: #fff;
	border: 1px solid #ECECEC;
	border-radius: 40px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	transition: .25s;
}

.quick-filter:hover {
	border-color: #B88650;
	color: #B88650;
}

.quick-filter.active {
	background: #B88650;
	border-color: #B88650;
	color: #fff;
}

/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width:1600px) {
	.header-container {
		padding: 0 30px;
	}

	.collection-toolbar-left h1 {
		font-size: 42px;
	}
}

@media(max-width:1400px) {
	.collection-layout {
		grid-template-columns: 260px 1fr;
		gap: 35px;
	}

	.grid-view {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}

/* ------------------------- */
@media(max-width:1200px) {
	.collection-sidebar {
		position: relative;
		top: auto;
		margin-bottom: 40px;
	}

	.image-modal-content {
		grid-template-columns: 1fr;
	}

	.popup-right {
		text-align: center;
	}

	.header-container {
		grid-template-columns: 220px 1fr auto;
		padding: 0 20px;
		height: 82px;
	}

	.header-logo img {
		height: 64px;
	}

	.header-nav {
		gap: 22px;
	}

	.header-nav a {
		font-size: 12px;
	}

	.collection-layout {
		grid-template-columns: 1fr;
	}

	.collection-sidebar {
		position: relative;
		top: auto;
		margin-bottom: 35px;
	}

	.grid-view {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.image-modal-content {
		grid-template-columns: 1fr;
	}

	.popup-right {
		text-align: center;
	}
}

/* ------------------------- */
@media(max-width:992px) {
	.grid-view {
		grid-template-columns:
			repeat(2, 1fr);
	}

	.list-view .collection-card {
		grid-template-columns: 1fr;
	}

	.collection-toolbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
	}

	.collection-toolbar-right {
		width: 100%;
		justify-content: space-between;
	}

	.header-container {
		grid-template-columns: 180px 1fr auto;
		height: 80px;
		padding: 0 20px;
	}

	.mobile-menu {
		display: block;
		color: #2d2d2d;
		font-size: 30px;
		z-index: 1002;
		padding-left: 40px;
	}

	.header-nav.active {
		transform: translateY(0);
		opacity: 1;
		display: flex;
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		background: #fff;
	}

	.header-actions {
		gap: 10px;
	}

	.header-button {
		display: none;
	}

	.header-logo img {
		height: 56px;
	}

	.header-nav {
		position: fixed;
		top: 74px;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: center;
		gap: 25px;
		padding: 35px;
		background: #fff;
		box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
		z-index: 999;
	}

	.header-button {
		display: none;
	}

	.collection-toolbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.collection-toolbar-right {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.grid-view {
		grid-template-columns: repeat(2, 1fr);
	}

	.list-view .collection-card {
		grid-template-columns: 1fr;
	}

	.license-grid3 {
		grid-template-columns: 1fr;
	}

	.license-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

/* ------------------------- */
@media(max-width:902px) {
	.socials {
		margin: 0 auto;
		width: 260px;
	}
}

@media (max-width:900px) {
	.hero {
		position: relative;
		overflow: hidden;
	}

	.hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg,
				rgba(250, 245, 239, .96) 0%,
				rgba(250, 245, 239, .92) 35%,
				rgba(250, 245, 239, .78) 58%,
				rgba(250, 245, 239, .35) 78%,
				rgba(250, 245, 239, 0) 100%);
		z-index: 1;
	}

	.hero-grid {
		position: relative;
		z-index: 2;
	}
}

/* ------------------------- */
@media(max-width:768px) {
	.grid-view {
		grid-template-columns: 1fr;
	}

	.compact-view {
		grid-template-columns:
			repeat(2, 1fr);
	}

	.collection-search {
		width: 100%;
	}

	.collection-toolbar-right {
		flex-wrap: wrap;
	}

	.license-grid {
		grid-template-columns: 1fr;
	}

	.license-grid3,
	.license-grid2 {
		grid-template-columns: 360px repeat(1, 1fr) !important;
	}

	.collection-toolbar-left h1 {
		font-size: 34px;
	}

	.collection-toolbar-left p {
		font-size: 16px;
	}

	.quick-filters {
		justify-content: center;
	}

	.quick-filter {
		flex: 1 1 auto;
	}

	.popup-left {
		padding: 20px;
	}

	.popup-right {
		padding: 30px;
	}

	.cta-box {
		position: relative;
		overflow: hidden;
	}

	.cta-box::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg,
				rgba(250, 243, 236, .96) 0%,
				rgba(250, 243, 236, .93) 38%,
				rgba(250, 243, 236, .82) 58%,
				rgba(250, 243, 236, .35) 78%,
				rgba(250, 243, 236, 0) 100%);
		z-index: 1;
	}

	.cta-box>* {
		position: relative;
		z-index: 2;
	}
}

/* ------------------------- */
@media(max-width:576px) {
	.compact-view {
		grid-template-columns: 1fr;
	}

	.popup-right {
		padding: 30px;
	}

	.popup-right h2 {
		font-size: 28px;
		padding: 30px;
	}

	.request-license {
		height: 50px;
		font-size: 12px;
	}

	.license-grid3,
	.license-grid2,
	.license-cards2{
		grid-template-columns: 1fr !important;
	}

	.collection-sidebar {
		padding: 22px;
	}

	.filter-group {
		margin-bottom: 30px;
	}

	.collection-content {
		padding: 18px;
	}

	.collection-content h3 {
		font-size: 20px;
	}

	.request-license {
		height: 48px;
		font-size: 12px;
	}

	.badge {
		font-size: 10px;
		padding: 6px 10px;
	}

	.license-intro,
	.license-feature {
		padding: 25px;
	}

	.hero {
		min-height: 560px;
		background-position: 75% center;
	}

	.hero h1 {
		font-size: 38px;
	}

	.hero .lead {
		font-size: 18px;
	}

	.faq summary {
		padding-right: 50px;
	}

	.btn.gold {
		display: none;
	}
	
	.mobile-menu {
		padding-left: 0;
    	text-align: right;
    	margin-right: 20px;
	}
}