/* Estilos para la pagina de Inicio*/
.promo-badge {
	font-size: 1.1rem !important;
	font-weight: 600 !important;
	color: #000 !important;
	margin-bottom: 18px !important;
	background: #e9f6ec !important;
	border: 1px dashed #bcd747 !important;
	display: inline-block !important;
	padding: 8px 16px !important;
}

/* Estilos para la pagina de Category */
.product-thumb:hover {
	cursor: pointer;
}

/* Estilos para la pagina "Nosotros" */
.about_title {
	font-weight: 900 !important;
}

.about_description {
	color: color-mix(in srgb, var(--default-color), transparent 20%) !important;
	font-weight: bold !important;
}

h3 a.about_card-title {
	font-weight: bold;
}

.about_card-description {
	color: color-mix(in srgb, var(--default-color), transparent 20%) !important;
	font-weight: bold !important;
}

/* Estilos para la pagina "Product Details" */
.stock-hidden {
	display: none !important;
}
.btn-disabled {
	background-color: #e9ecef !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
	border: none !important;
}

.product-max-message {
	display: none;
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity 0.3s ease, transform 0.3s ease;

	/* estilo visual */
	background-color: #fdecea;
	color: #b02a37;
	border: 1px solid #f5c2c7;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

/* estado visible */
.product-max-message.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

/* Estilos para la pagina "Cart" */
.btn-continue-shopping {
	align-self: flex-start;
	background-color: var(--accent-color);
	color: var(--default-color);
	font-weight: bold;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	transition: all 0.3s ease;
}
.btn-continue-shopping:hover {
	background-color: color-mix(in srgb, var(--accent-color), #000 10%);
	color: var(--default-color);
}

/* Estilos para la pagina "Checkout" */
.btn-modal {
	background: #bcd747;
}
.btn-modal:hover {
	background: #bcd747;
}

.text-danger.input-error-message {
	font-size: 0.85 rem !important;
}
#shipping-address {
	overflow: hidden;
	transition: all 0.3s ease;
}

.shipping-hidden {
	max-height: 0;
	opacity: 0;
	pointer-events: none;
}

.shipping-visible {
	max-height: 1000px;
	opacity: 1;
	pointer-events: auto;
}

.success-message {
	padding: 16px;
	background-color: rgba(40, 167, 69, 0.1);
	border: 1px solid rgba(40, 167, 69, 0.2);
	border-radius: 12px;
	color: #28a745;
	font-weight: 500;
	margin-bottom: 20px;
	text-align: center;
}
.btn-confirm {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 12px;
	background-color: var(--accent-color);
	border: none;
	box-shadow: 0 4px 12px rgba(54, 144, 231, 0.2);
	transition: all 0.3s ease;
}
#confirm-order .btn-text {
	color: #fff;
}

#container-order-details-hidden {
	display: none;
}

.order-item-card {
	border: 1px solid #dc3545 !important;
	border-radius: 20px !important;
}

.confirm-order-box {
	max-width: 700px;
	margin: 0 auto;
	padding: 35px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-left: 6px solid #bcd747;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.08);
	text-align: center;
	animation: fadeInUp 0.5s ease;
}

.confirm-order-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #e9f6ec;
	color: #bcd747;
	font-size: 34px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #bcd747;
}

.confirm-order-title {
	font-size: 1.7rem;
	font-weight: 700;
	color: #000000;
	margin-bottom: 18px;
}

.confirm-order-message {
	font-size: 1rem;
	line-height: 1.7;
	color: #333;
	margin-bottom: 15px;
}

.confirm-order-thanks {
	font-size: 1rem;
	font-weight: 600;
	color: #000;
	margin-top: 20px;
	margin-bottom: 25px;
}

.btn-confirm {
	background: #bcd747;
	color: #000;
	border: none;
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.btn-confirm:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(188, 215, 71, 0.35);
}

.confirm-order-link {
	text-decoration: none;
}

.confirm-order-number {
	font-size: 1.1rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 18px;
	background: #e9f6ec;
	border: 1px dashed #bcd747;
	display: inline-block;
	padding: 8px 16px;
	border-radius: 8px;
}

.confirm-order-number strong {
	color: #000;
	letter-spacing: 1px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* Estilos para nuestras marcas */
.brands {
	padding: 20px;
	background: #f5f5f5;
	text-align: center;
}

.brands-container {
	max-width: 100%;
	margin: 0 auto;
}

.brands-title {
	font-size: 25px;
	font-weight: 900;
	color: #555;
	line-height: 1.4;
}

.brands-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(180px, 1fr));
	align-items: center;
	justify-items: center;
}

.brands-grid .brand-item {
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.3s ease;
}

.brand-item img:hover {
	transform: scale(1.05);
}

.brand-item.empty {
	visibility: hidden;
}

/* Tablets */
@media (max-width: 1050px) {
	.brands-title {
		font-size: 18px;
	}
	.brands-grid {
		grid-template-columns: repeat(3, minmax(180px, 1fr));
	}

}

/* Móviles */
@media (max-width: 600px) {
	.brands-grid {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
	}
	.brand-item {
		height: 100px;
	}
}