/* Ganadera - Compra Directa : estilos frontend */
.gcd-box {
	margin: 16px 0;
	width: 100%;
	display: block;
	box-sizing: border-box;
}
.gcd-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 72px;
	width: 100%;
	max-width: none;
	background: #2e6b3e !important;
	background-image: none !important;
	color: #fff !important;
	border: none;
	border-radius: 6px;
	padding: 14px 22px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	line-height: 1.2;
	transition: background .15s ease;
}
.gcd-box .gcd-btn:hover {
	background: #245631 !important;
}
.gcd-btn .gcd-btn-main {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.gcd-btn .gcd-btn-precio {
	background: rgba(255, 255, 255, .18);
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 17px;
}
.gcd-btn .gcd-btn-sub {
	color: #fff;
	font-weight: 400;
	font-size: 13px;
	opacity: .95;
}
.gcd-btn.gcd-btn-disabled,
.gcd-btn:disabled {
	background: #c3c4c7;
	cursor: not-allowed;
}
.gcd-btn.gcd-loading {
	opacity: .7;
	cursor: wait;
}
.gcd-sub {
	margin: 8px 0 0;
	font-size: 13px;
	color: #50575e;
}
.gcd-sub em {
	color: #8a6d00;
}
.gcd-precio {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
}
.gcd-aviso {
	font-size: 13px;
	color: #50575e;
}

/* Tarjeta para el estado "no logueado": mantiene el cuadro aunque no haya botón */
.gcd-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
	min-height: 72px;
	justify-content: center;
	padding: 14px 22px;
	border: 2px solid #2e6b3e;
	border-radius: 6px;
	background: #f3f8f4;
	text-align: center;
}
.gcd-card-label {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .5px;
	color: #2e6b3e;
}
.gcd-card-precio {
	font-size: 20px;
	font-weight: 700;
	color: #222;
}
.gcd-card-aviso {
	font-size: 13px;
	color: #50575e;
}
/* Tarjeta en modo previa (subasta deshabilitada por fecha) */
.gcd-card-disabled {
	border-color: #c3c4c7;
	background: #f6f7f7;
}
.gcd-card-disabled .gcd-card-label {
	color: #787c82;
}
.gcd-msg {
	display: block;
	margin-top: 10px;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 14px;
}
.gcd-msg.gcd-ok {
	background: #edfaef;
	color: #008a20;
	border: 1px solid #b8e6c0;
}
.gcd-msg.gcd-err {
	background: #fcf0f1;
	color: #d63638;
	border: 1px solid #f5c2c3;
}

/* Precio actual del lote en color neutro: el verde queda reservado para las acciones (botones) */
.woo-ua-auction-price,
.woo-ua-auction-price span {
	color: #222 !important;
}

/* Botón "VENDIDO" en el catálogo (lote cerrado por compra directa).
   Sigue siendo un link al lote: el usuario puede entrar a verlo. */
.gcd-loop-vendido {
	background: #b32d2e !important;
	background-image: none !important;
	color: #fff !important;
	opacity: 1 !important;
}
.gcd-loop-vendido:hover {
	background: #8f2425 !important;
	color: #fff !important;
}
