/* Estilos para la galería moderna horizontal */

.ds-modern-gallery-wrapper {
	position: relative;
	width: 100vw;
	height: 100vh;
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
	font-family: 'Inter', sans-serif;
	color: #000000;
	background: #ffffff;
}

.ds-modern-gallery-wrapper .bg-name {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Cormorant Garamond', serif;
	font-size: 18vw;
	font-style: italic;
	color: #f9f9f9;
	white-space: nowrap;
	z-index: 1;
	pointer-events: none;
}

.ds-modern-gallery-wrapper .category-header {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 20px;
	pointer-events: none;
}

.ds-modern-gallery-wrapper .cat-line { 
	width: 40px; 
	height: 1px; 
	background: #000000; 
}

.ds-modern-gallery-wrapper .category-label {
	font-size: 10px;
	letter-spacing: 5px;
	text-transform: uppercase;
	font-weight: 700;
	transition: opacity 0.3s ease;
}

.ds-modern-gallery-wrapper .nav-arrows {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	display: flex;
	gap: 15px;
}

.ds-modern-gallery-wrapper .nav-arrow {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 20px;
	color: #000000;
}

.ds-modern-gallery-wrapper .nav-arrow:hover {
	background: #000000;
	color: #ffffff;
}

.ds-modern-gallery-container { 
	width: 100%;
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.ds-modern-gallery-container::-webkit-scrollbar {
	display: none;
}

.ds-modern-gallery-container .art-container { 
	display: flex; 
	align-items: center; 
	padding-left: 11vw; 
	padding-right: 35vw; 
	height: 100vh;
}

.ds-modern-gallery-container .art-item { 
	flex-shrink: 0;
	width: 30vw; 
	margin-right: 18vw; 
	display: flex; 
	flex-direction: column;
	z-index: 10;
}

.ds-modern-gallery-container .image-box { 
	width: 100%; 
	height: 450px; 
	overflow: hidden; 
	background: #f4f4f4;
	position: relative;
}

.ds-modern-gallery-container .image-box img { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%;
	object-fit: cover !important;
	object-position: center;
	display: block;
}

.ds-modern-gallery-container .art-details { 
	margin-top: 25px;
	text-align: center;
}

.ds-modern-gallery-container .photo-number {
	font-size: 13px;
	color: #666;
	margin: 0 0 10px 0;
	font-weight: 500;
	letter-spacing: 0.5px;
	display: block;
}

.ds-modern-gallery-container .art-name { 
    font-family: 'Poppins', sans-serif;
	font-size: 25px; 
	margin: 0; 
	font-weight: 300;
    color: #ACACAC; 
}

.ds-modern-gallery-container .art-medium {
	margin: 8px 0 0 0;
	font-size: 14px;
	font-style: italic;
	color: #666;
}

.ds-modern-gallery-container .art-specs { 
	margin-top: 15px; 
	display: flex; 
	gap: 20px; 
	font-size: 9px; 
	letter-spacing: 2px; 
	text-transform: uppercase; 
	color: #999999;
	border-top: 1px solid #eee; 
	padding-top: 15px;
	justify-content: center;
}

.ds-modern-gallery-container .art-specs b { 
	color: #000000; 
	font-weight: 600; 
}

.ds-modern-gallery-container .ds-modern-gallery-msg {
	padding: 100px 40px;
	text-align: center;
	font-size: 18px;
	color: #333;
	background: #f5f5f5;
	border: 2px dashed #ddd;
	margin: 50px;
}

/* Estilos del lightbox */
.ds-lightbox-arrow:hover, 
.ds-lightbox-arrow:focus { 
	color: #b5b5b5 !important; 
	background: none !important; 
	border: none !important; 
	box-shadow: none !important; 
	outline: none !important; 
}

.ds-modern-gallery-container .image-box a { 
	display: block; 
	cursor: pointer;
	width: 100%;
	height: 100%;
	position: relative;
}

.ds-modern-gallery-container .image-box a img { 
	transition: transform 0.3s ease; 
}

.ds-modern-gallery-container .image-box a:hover img { 
	transform: scale(1.02); 
}
