/**
 * OpenSea-style floor NFT sidebar widget.
 */

.apechain-opensea-collections-widget .apechain-opensea-widget {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.apechain-opensea-widget__collections,
.apechain-opensea-widget__collection {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	line-height: 1.5;
}

.apechain-opensea-widget__collections a {
	color: #8b9cb3;
	text-decoration: none;
}

.apechain-opensea-widget__collections a:hover {
	color: #fff;
	text-decoration: underline;
}

.apechain-opensea-widget__collection {
	margin-bottom: 0.35rem;
}

.apechain-opensea-widget__collection a {
	color: #8b9cb3;
	text-decoration: none;
}

.apechain-opensea-widget__collection a:hover {
	color: #fff;
	text-decoration: underline;
}

.apechain-opensea-widget__notice {
	margin: 0;
	padding: 0.75rem;
	font-size: 0.85rem;
	border-radius: 0.5rem;
	background: var(--apechain-gm-blue, #e2f0ff);
	color: var(--apechain-secondary, #002787);
	border-left: 3px solid var(--apechain-primary, #0054fa);
}

/* OpenSea-inspired NFT card */
.apechain-os-nft-card {
	display: block;
	width: 100%;
	text-decoration: none;
	color: var(--apechain-text-on-secondary, #fff);
	background: var(--apechain-secondary, #002787);
	border: none;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 0 1px rgba(226, 240, 255, 0.2);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.apechain-os-nft-card:hover,
.apechain-os-nft-card:focus {
	color: #fff;
	text-decoration: none;
	box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.45);
	transform: translateY(-2px);
}

.apechain-os-nft-card__media {
	line-height: 0;
	background: var(--apechain-anchor-black, #000);
}

.apechain-os-nft-card__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	vertical-align: top;
}

.apechain-os-nft-card__img--placeholder {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, var(--apechain-secondary, #002787) 0%, var(--apechain-anchor-black, #000) 100%);
}

.apechain-os-nft-card__body {
	padding: 0.55rem 0.65rem 0.65rem;
	font-size: 0.8125rem;
	line-height: 1.35;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.apechain-os-nft-card__collection {
	color: #8b9cb3;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.apechain-os-nft-card__row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}

.apechain-os-nft-card__row--top {
	margin-bottom: 0.35rem;
}

.apechain-os-nft-card__name {
	font-weight: 700;
	font-size: 0.9rem;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 55%;
}

.apechain-os-nft-card__usd {
	flex-shrink: 0;
	color: #9aa7b5;
	font-size: 0.8rem;
}

.apechain-os-nft-card__price {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.95rem;
	color: #fff;
}

.apechain-os-nft-card__icon {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.apechain-os-nft-card__ends,
.apechain-os-nft-card__last-sale {
	color: #9aa7b5;
	font-size: 0.75rem;
	margin-top: 0.2rem;
}

.apechain-os-nft-card__last-sale {
	margin-top: 0.35rem;
}
