/* ═══════════════════════════════════════════════════════
   NUANSA RINDU — home.css
   ═══════════════════════════════════════════════════════ */

/* ── HERO CROSSFADE SLIDER ────────────────────────────── */
.hero-custom-slider {
	position: relative;
	height: 100vh;
	min-height: 640px;
	width: 100%;
	display: block;
	overflow: hidden;
	background: #1a0e06;
}

.custom-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 1.5s ease-in-out,
		visibility 1.5s;
	display: flex;
	align-items: flex-end;
	padding: 0 60px calc(var(--nav-h) + 40px);
	z-index: 1;
}

.custom-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.custom-slide:not(.active) .hero-title,
.custom-slide:not(.active) .hero-desc,
.custom-slide:not(.active) .hero-actions {
	animation: none;
	opacity: 0;
}
.custom-slide.active .hero-title,
.custom-slide.active .hero-desc,
.custom-slide.active .hero-actions {
	animation-play-state: running;
}

.hero-video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
}

/* [PENTING] Gradient Ganda */
.hero-video-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to right,
			rgba(20, 10, 5, 0.85) 0%,
			rgba(20, 10, 5, 0.4) 45%,
			transparent 100%
		),
		linear-gradient(to bottom, rgba(20, 10, 5, 0.85) 0%, rgba(20, 10, 5, 0) 25%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 5.5vw, 5rem);
	font-weight: 300;
	line-height: 1.1;
	color: #f5f0e8;
	margin-bottom: 24px;
	opacity: 0;
	animation: fadeUp 1.2s 0.3s forwards;
}

.hero-title em {
	font-style: italic;
	color: #f5f0e8;
}

.hero-desc {
	font-size: 0.85rem;
	color: rgba(245, 240, 232, 0.75);
	max-width: 420px;
	margin-bottom: 44px;
	line-height: 1.85;
	opacity: 0;
	animation: fadeUp 1.2s 0.5s forwards;
}

.hero-actions {
	display: flex;
	gap: 28px;
	align-items: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 1.2s 0.7s forwards;
}

/* ── PAGINASI EDITORIAL (01 —— 03) ── */
.hero-fraction-pagination {
	position: absolute;
	right: 60px;
	bottom: calc(var(--nav-h) + 40px);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	color: #f5f0e8;
}

.pagination-line {
	display: inline-block;
	width: 40px;
	height: 1px;
	background: rgba(245, 240, 232, 0.5);
}

.hero-fraction-pagination .nav-trigger {
	cursor: pointer;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
	display: inline-block;
	padding: 4px;
}
.hero-fraction-pagination .nav-trigger:hover {
	color: #c4a35a;
	transform: scale(1.15);
}

/* ── ABOUT SECTION (PENGGANTI WHY SECTION) ────────────── */
.about-section {
	background: var(--cream);
	padding: 120px 60px;
}

.about-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 80px;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
}

.about-subtitle {
	font-size: 0.65rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
}

.about-subtitle .subtitle-line {
	display: block;
	width: 48px;
	height: 1px;
	background: rgba(138, 125, 107, 0.4);
}

.about-title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 300;
	color: var(--brown);
	line-height: 1.15;
	margin-bottom: 32px;
}

.about-desc p {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 20px;
	max-width: 440px;
}
.about-desc p:last-child {
	margin-bottom: 0;
}

.about-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brown);
	text-decoration: none;
	margin-top: 40px;
	transition: color var(--transition);
}

.about-link svg {
	transition: transform 0.3s ease;
}

.about-link:hover {
	color: var(--gold);
}

.about-link:hover svg {
	transform: translateX(6px);
}

/* ── Sisi Visual Video (Kanan) ── */
.about-video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 21 / 9;
	background: #1a1008;
	overflow: hidden;
	cursor: pointer;
}

.about-video-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.fallback-bg {
	background: linear-gradient(135deg, #b8a882, #8a6848);
}

.about-video-wrap:hover .about-video-img {
	transform: scale(1.03);
}

.play-btn-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(44, 30, 16, 0.15);
	transition: background 0.4s ease;
}

.about-video-wrap:hover .play-btn-overlay {
	background: rgba(44, 30, 16, 0.3);
}

.play-btn-circle {
	width: 64px;
	height: 64px;
	background: rgba(245, 240, 232, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition:
		transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
		background 0.3s;
}

.play-btn-circle svg {
	width: 20px;
	height: 20px;
	fill: var(--brown);
	margin-left: 4px;
}

.play-btn-text {
	font-size: 0.65rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #f5f0e8;
}

.about-video-wrap:hover .play-btn-circle {
	transform: scale(1.1);
	background: #ffffff;
}

/* ── JOURNEY SECTION ──────────────────────────────────── */
.journey-section {
	background: var(--warm);
	padding: 100px 60px;
}
.journey-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 56px;
}
.journey-cards {
	display: grid !important;
	grid-auto-flow: column !important;
	grid-template-columns: none !important;
	grid-auto-columns: calc(25% - 2.25px) !important;
	gap: 3px !important;

	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-snap-type: x mandatory !important;
	scroll-behavior: smooth !important;
	-webkit-overflow-scrolling: touch;

	scrollbar-width: none;
	-ms-overflow-style: none;
}

.journey-cards::-webkit-scrollbar {
	display: none;
}

.j-card {
	scroll-snap-align: start !important;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 2/3;
	background: var(--brown);
}
.j-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.75;
	transition:
		transform 0.6s ease,
		opacity 0.4s ease;
}
.j-card:hover .j-card-img {
	transform: scale(1.06);
	opacity: 0.9;
}
.j-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(26, 5, 0, 0.85) 0%,
		rgba(26, 5, 0, 0.1) 55%,
		transparent 100%
	);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: background 0.4s;
}
.j-card:hover .j-card-overlay {
	background: linear-gradient(
		to top,
		rgba(26, 5, 0, 0.92) 0%,
		rgba(26, 5, 0, 0.3) 60%,
		transparent 100%
	);
}
.j-card-collection {
	font-size: 0.58rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-lt);
	margin-bottom: 8px;
}
.j-card-name {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 400;
	color: #f5f0e8;
	margin-bottom: 6px;
}
.j-card-tagline {
	font-size: 0.75rem;
	color: rgba(245, 240, 232, 0.55);
	margin-bottom: 18px;
	line-height: 1.5;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}
.j-card:hover .j-card-tagline {
	max-height: 60px;
}
.j-card-arrow {
	display: block;
	width: 28px;
	height: 1px;
	background: var(--gold-lt);
	transition: width 0.35s;
}
.j-card:hover .j-card-arrow {
	width: 48px;
}

.j-card-bg-classic {
	background: linear-gradient(160deg, #a8c4b8, #4a7b6a, #2a4a3a);
}
.j-card-bg-signature {
	background: linear-gradient(160deg, #3b2a1a, #5c3d20, #2a1a0a);
}
.j-card-bg-private {
	background: linear-gradient(160deg, #b8a882, #6a5030, #e8d8c0);
}
.j-card-bg-sacred {
	background: linear-gradient(160deg, #8b7355, #c4a35a, #3b2a1a);
}

/* ── VISUAL STORY (MASONRY GRID) ──────────────────────── */
.visual-story {
	background: var(--dark);
	padding: 100px 60px;
}
.visual-story .section-label {
	color: rgba(196, 163, 90, 0.6);
}
.visual-story .section-label::after {
	background: rgba(196, 163, 90, 0.4);
}
.vs-heading {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 300;
	color: #f5f0e8;
	margin-bottom: 56px;
	max-width: 420px;
}

.vs-masonry-container {
	width: 100%;
}

.vs-masonry {
	column-count: 3;
	column-gap: 24px;
}

.vs-item {
	break-inside: avoid;
	margin-bottom: 24px;
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	background: #1a1008;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition:
		transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
		box-shadow 0.4s ease;
	cursor: pointer;
}

.vs-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(196, 163, 90, 0.15);
}

.vs-img {
	width: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.vs-item:hover .vs-img {
	transform: scale(1.05);
}

.vs-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10, 5, 2, 0.8) 0%,
		rgba(10, 5, 2, 0) 40%
	);
	transition: background 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vs-item:hover .vs-overlay {
	background: linear-gradient(
		to top,
		rgba(10, 5, 2, 0.9) 0%,
		rgba(10, 5, 2, 0.3) 100%
	);
}

.vs-play-btn {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.1);
	border: 1.5px solid var(--gold, #c4a35a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	opacity: 0;
	transform: scale(0.8);
}
.vs-item:hover .vs-play-btn {
	background: var(--gold, #c4a35a);
	transform: scale(1.1);
	opacity: 1;
}
.vs-play-btn svg {
	width: 20px;
	height: 20px;
	fill: #f5f0e8;
	margin-left: 4px;
	transition: fill 0.3s;
}
.vs-item:hover .vs-play-btn svg {
	fill: #1a1008;
}

.vs-title-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	opacity: 0;
	transform: translateY(15px);
	transition: all 0.4s ease;
}
.vs-item:hover .vs-title-overlay {
	opacity: 1;
	transform: translateY(0);
}
.vs-item-badge {
	display: inline-block;
	font-size: 0.5rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold, #c4a35a);
	margin-bottom: 6px;
	border: 1px solid var(--gold, #c4a35a);
	padding: 2px 8px;
	border-radius: 20px;
}
.vs-item-title {
	font-family: var(--font-display, serif);
	font-size: 1.15rem;
	color: #f5f0e8;
	margin: 0;
	font-weight: 300;
}

/* ── TRAVEL ESSENTIALS (SWIPEABLE SLIDER) ────────────── */
.fashion-essentials {
	padding: 100px 60px;
	background: var(--cream);
}
.essentials-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: flex-end;
	margin-bottom: 40px;
}
.essentials-header-right {
	display: flex;
	justify-content: flex-end; /* Memposisikan link Lihat Semua ke Kanan */
}

.essentials-slider-wrapper {
	position: relative;
	width: 100%;
}
.ess-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	background: #1a1008;
	border: 1px solid var(--gold);
	color: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	outline: none;
}
.ess-btn:hover {
	background: var(--gold);
	color: var(--cream);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(196, 163, 90, 0.3);
}
.ess-btn svg {
	width: 20px;
	height: 20px;
}
.ess-btn.prev-btn {
	left: -24px;
}
.ess-btn.next-btn {
	right: -24px;
}

.essentials-items {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 20px;
}
.essentials-items::-webkit-scrollbar {
	display: none;
}

.ess-item {
	flex: 0 0 calc(25% - 3px);
	scroll-snap-align: start;
	position: relative;
	overflow: hidden;
	cursor: grab;
	aspect-ratio: 3/4;
	background: var(--brown);
}
.ess-item:active {
	cursor: grabbing;
}
.ess-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	transition:
		transform 0.6s ease,
		opacity 0.4s;
	display: block;
	pointer-events: none;
}
.ess-item:hover .ess-img {
	transform: scale(1.05);
	opacity: 0.95;
}
.ess-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px 16px;
	background: linear-gradient(
		to top,
		rgba(26, 5, 0, 0.85) 0%,
		transparent 100%
	);
	pointer-events: none;
}
.ess-name {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: #f5f0e8;
	margin-bottom: 4px;
}
.ess-detail {
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-lt);
}

/* Fallback Gradients */
.ess-bg-1 {
	background: linear-gradient(160deg, #c8b890, #8a8060, #4a4030);
}
.ess-bg-2 {
	background: linear-gradient(160deg, #7890a0, #485868, #182030);
}
.ess-bg-3 {
	background: linear-gradient(160deg, #c0a070, #806040, #402010);
}
.ess-bg-4 {
	background: linear-gradient(160deg, #8a9880, #506048, #182018);
}
.ess-bg-5 {
	background: linear-gradient(160deg, #b89870, #786040, #382010);
}

/* ── JOURNAL SECTION ──────────────────────────────────── */
.journal-section {
	background: var(--warm);
	padding: 100px 60px;
}
.journal-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 56px;
}
.journal-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.jn-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border-radius: 2px;
	aspect-ratio: 4/3;
}
.jn-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.jn-card:hover .jn-card-img {
	transform: scale(1.04);
}
.jn-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(26, 5, 0, 0.85) 0%,
		rgba(26, 5, 0, 0.2) 50%,
		transparent 100%
	);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.jn-card-date {
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-lt);
	margin-bottom: 8px;
}
.jn-card-title {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 400;
	color: #f5f0e8;
	line-height: 1.3;
	margin-bottom: 16px;
}

.jn-bg-1 {
	background: linear-gradient(160deg, #8ba8b0, #2a4a55, #1a2a30);
}
.jn-bg-2 {
	background: linear-gradient(160deg, #7a9070, #2a3820, #c8d8b8);
}
.jn-bg-3 {
	background: linear-gradient(160deg, #c4a87a, #5a3820, #dec898);
}

/* ── Keyframes ────────────────────────────────────────── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── NAVIGASI SLIDER (PANAH) ─────────────────────────── */
.journey-nav-wrapper {
	display: flex;
	justify-content: flex-end;
}

.journey-slider-wrapper {
	position: relative;
	width: 100%;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	background: #1a1008;
	border: 1px solid var(--gold);
	color: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.slider-btn svg {
	width: 20px;
	height: 20px;
}

.slider-btn.prev-btn {
	left: -24px;
}
.slider-btn.next-btn {
	right: -24px;
}

.slider-btn:hover {
	background: var(--gold);
	color: var(--cream);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(196, 163, 90, 0.3);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
	.custom-slide,
	.why-section,
	.journey-section,
	.visual-story,
	.fashion-section,
	.journal-section {
		padding-left: 32px;
		padding-right: 32px;
	}
	.hero-fraction-pagination {
		right: 32px;
	}
	.why-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.journey-cards {
		grid-auto-columns: calc(50% - 1.5px) !important;
	}

	/* Penyesuaian Fashion Grid Homepage (Tablet) */
	.fashion-home-grid {
		aspect-ratio: 16 / 9;
	}

	.footer-bottom,
	.footer-copy,
	.footer-cta-section {
		padding-left: 32px;
		padding-right: 32px;
	}
	.footer-nav {
		display: none;
	}
	.j-card {
		grid-auto-columns: calc(50% - 1.5px);
	}
	.about-grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}
	.about-section {
		padding-left: 32px;
		padding-right: 32px;
	}

	/* Penyesuaian Visual Story Masonry iPad/Tablet */
	.vs-masonry {
		column-count: 2;
	}

	.fashion-essentials {
		padding-left: 32px;
		padding-right: 32px;
	}
	.essentials-header {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.essentials-header-right {
		justify-content: flex-start;
	}
	.ess-item {
		flex: 0 0 calc(33.333% - 2.6px);
	}
}

@media (max-width: 768px) {
	.custom-slide {
		padding: 0 24px calc(var(--nav-h) + 32px);
	}

	.hero-fraction-pagination {
		right: 24px;
		bottom: calc(var(--nav-h) + 32px);
	}

	.custom-slide:nth-child(1) .hero-video-wrap img {
		object-position: 75% center;
	}

	.journey-cards {
		grid-auto-columns: 85% !important;
		gap: 8px !important;
	}

	/* Penyesuaian Visual Story Masonry Handphone */
	.vs-masonry {
		column-count: 1;
	}
	.hide-on-mobile {
		display: none !important;
	}

	/* Penyesuaian Fashion Grid Homepage (Mobile) */
	.fashion-home-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		aspect-ratio: auto;
	}
	.fh-cell:nth-child(1) {
		aspect-ratio: 4 / 3;
	}
	.fh-cell:nth-child(2),
	.fh-cell:nth-child(3) {
		aspect-ratio: 3 / 2;
	}

	.journal-cards {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.why-items {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	.journey-header,
	.fashion-header,
	.journal-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.j-card {
		flex: 0 0 100%;
	}
	.slider-btn {
		display: none;
	}
	.about-video-wrap {
		aspect-ratio: 16 / 9;
	}

	.fashion-essentials {
		padding-left: 20px;
		padding-right: 20px;
	}
	.ess-item {
		flex: 0 0 calc(50% - 2px);
	}
	.ess-btn {
		display: none;
	} /* Sembunyikan panah di HP karena user bisa swipe layarnya */
}

@media (max-width: 480px) {
	.essentials-header {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.ess-item {
		flex: 0 0 calc(75% - 2px);
	}
}

/* ═══════════════════════════════════════════════════════
   GLIGHTBOX LUXURY CUSTOMIZATION (GLOBAL OVERRIDE)
   ═══════════════════════════════════════════════════════ */

.goverlay {
	background: rgba(10, 5, 2, 0.94) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.glightbox-clean .gslide-description {
	background: transparent !important;
	text-align: center;
	padding: 24px 0 !important;
}

.glightbox-clean .gslide-title {
	color: #f5f0e8 !important;
	font-family: var(--font-display, serif) !important;
	font-size: 2rem !important;
	font-weight: 300 !important;
	margin: 0 !important;
	line-height: 1.3 !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.glightbox-clean .gslide-media {
	box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6);
	border-radius: 8px;
	overflow: hidden;
	background: transparent !important;
}

.gvideo-wrapper {
	background: transparent !important;
}

.gbtn {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 50% !important;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.gbtn:hover {
	background: rgba(196, 163, 90, 0.3) !important;
	border-color: rgba(196, 163, 90, 0.8) !important;
	transform: scale(1.15) !important;
}

.gbtn svg {
	fill: #f5f0e8 !important;
}

.gclose {
	top: 24px !important;
	right: 32px !important;
	width: 44px !important;
	height: 44px !important;
	opacity: 0.8 !important;
}

.gnext,
.gprev {
	width: 54px !important;
	height: 54px !important;
	top: 50% !important;
	opacity: 0.8 !important;
}

@media (min-width: 769px) {
	.gnext {
		right: 40px !important;
	}
	.gprev {
		left: 40px !important;
	}
}

@media (max-width: 640px) {
	.glightbox-clean .gslide-title {
		font-size: 1.4rem !important;
	}
	.gclose {
		top: 16px !important;
		right: 16px !important;
		width: 38px !important;
		height: 38px !important;
	}
}
