/**
 * Locker Growth reference drawer — standalone stylesheet, kept separate
 * from penco-configurator.css (see penco-locker-growth.js for why).
 */

.penco-growth-trigger {
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 8px;
	padding: 8px 14px;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	font-size: 13px;
	margin-left: auto;
}
.penco-growth-trigger:hover { border-color: var(--yellow, #f0c419); }

.penco-growth-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9998;
}

.penco-growth-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(560px, 92vw);
	background: #fff;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	overflow-y: auto;
	padding: 20px;
}

.penco-growth-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}
.penco-growth-drawer-head h3 { margin: 0; font-size: 18px; }

.penco-growth-close {
	border: none;
	background: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	padding: 0 4px;
}
.penco-growth-close:hover { color: #1e1e1e; }

.penco-growth-drawer-body img {
	width: 100%;
	height: auto;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	margin-bottom: 16px;
}

.penco-growth-notes {
	margin: 0;
	padding-left: 18px;
}
.penco-growth-notes li {
	font-size: 13px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 8px;
}
