/*========================================================= Articulo Catalogo ==============================================*/

.product-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.35s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	height: 100%;
}

	.product-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
	}

/* Imagen */
.product-image {
	position: relative;
	overflow: hidden;
}

	.product-image img {
		width: 100%;
		height: 420px;
		object-fit: cover;
		transition: transform 0.5s ease;
	}

.product-card:hover .product-image img {
	transform: scale(1.08);
}

/* Badge */
.badge-new {
	position: absolute;
	top: 16px;
	left: 16px;
	background: linear-gradient(135deg, #6f7cff, #9b6dff);
	color: #fff;
	padding: 6px 14px;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 20px;
}

/* Body */
.product-body {
	padding: 20px;
}

.product-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.product-category {
	font-size: 0.85rem;
	color: #6c757d;
	margin-bottom: 14px;
}

/* Footer */
.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: #3b3b3b;
}

/* Botón */
.btn-product {
	background: #BD65A8;
	color: #fff;
	border-radius: 30px;
	padding: 6px 18px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

/*========================================================= Categorias Bar ==============================================*/

.menu-categorias {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 16px rgba(0,0,0,0.1);
	padding: 20px;
}

	.menu-categorias h4 {
		font-size: 1.4rem;
		font-weight: 700;
		margin-bottom: 20px;
		color: #333;
		border-bottom: 2px solid #BD65A8;
		padding-bottom: 8px;
	}

	.menu-categorias ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.menu-categorias ul li {
			margin-bottom: 12px;
		}

			.menu-categorias ul li a {
				display: flex;
				align-items: center;
				text-decoration: none;
				color: #444;
				font-weight: 500;
				padding: 12px 15px;
				border-radius: 8px;
				transition: all 0.3s ease;
				background: #f9f9f9;
			}

				.menu-categorias ul li a i {
					margin-right: 12px;
					font-size: 1.2rem;
					color: #BD65A8;
					transition: transform 0.3s ease, color 0.3s ease;
				}

				.menu-categorias ul li a:hover {
					background: #BD65A8;
					color: #fff;
					transform: translateX(5px);
				}

					.menu-categorias ul li a:hover i {
						color: #fff;
						transform: scale(1.2);
		
						}

/*========================================================= Articulo Individual ==============================================*/

.product-page .breadcrumb {
    font-size: 0.8rem;
    background: transparent;
}

/* Imagen con efecto de profundidad */
.product-image-container {
    position: relative;
    overflow: hidden;
}

.main-image {
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.main-image:hover {
    transform: scale(1.02);
}

.badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Selectores de Color */
.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    padding: 2px;
    background-clip: content-box;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: #000;
}

/* Selector de Tallas */
.size-selector .btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.size-selector .btn.active, 
.size-selector .btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* Botón de Carrito */
.btn-cart {
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Iconos (Bootstrap Icons) */
.bi {
    vertical-align: middle;
}

/* Estilos para Miniaturas */
.thumbnail-container img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.2s;
	border-radius: 12px;
}

	.thumbnail-container img:hover {
		opacity: 0.8;
	}

	.thumbnail-container img.thumb-active {
		border-color: #000;
	}

/* Tarjetas de Productos Recomendados */
.product-card {
	transition: transform 0.3s ease;
}

	.product-card img {
		transition: transform 0.5s ease;
 		object-fit: cover;
	}

	.product-card:hover img {
		transform: scale(1.08);
	}

.btn-wishlist {
	position: absolute;
	top: 15px;
	right: 15px;
	background: white;
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: all 0.2s;
}

	.btn-wishlist:hover {
		background: #ff4757;
		color: white;
	}