/**
 * Price list — lock screen WhatsApp CTA + quantity selector + order summary styles.
 */

/* ── Company logo on price list page ────────────────────────────────────────── */

.price-list-company-logo {
	margin-bottom: 24px;
}

.price-list-company-logo img {
	max-height: 80px;
	max-width: 260px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

/* ── Lock screen WhatsApp block ─────────────────────────────────────────────── */

.price-list-lock__wa {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #2a2a2a;
	text-align: center;
}

.price-list-lock__wa-hint {
	color: #888;
	font-size: 14px;
	margin-bottom: 12px;
}

.price-list-lock__wa-btn {
	display: inline-flex;
	align-items: center;
	background: #25d366;
	color: #fff !important;
	text-decoration: none !important;
	padding: 11px 22px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	transition: background 0.2s;
}

.price-list-lock__wa-btn:hover {
	background: #1ebe5d;
	color: #fff !important;
}

/* ── Quantity selector ──────────────────────────────────────────────────────── */

.price-list-table__col-qty {
	white-space: nowrap;
	text-align: center;
}

.price-list-table__col-stock {
	text-align: center;
	color: #aaa;
}

.pl-qty-wrap {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.pl-qty-dec,
.pl-qty-inc {
	width: 28px;
	height: 28px;
	border: 1px solid #555;
	background: #2a2a2a;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	user-select: none;
}

.pl-qty-dec:hover,
.pl-qty-inc:hover {
	background: #3a3a3a;
}

.pl-qty-input {
	width: 50px;
	height: 28px;
	text-align: center;
	background: #1a1a1a;
	color: #fff;
	border: 1px solid #555;
	border-left: none;
	border-right: none;
	font-size: 14px;
	-moz-appearance: textfield;
}

.pl-qty-input::-webkit-outer-spin-button,
.pl-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* ── Order summary block ────────────────────────────────────────────────────── */

.pl-summary {
	margin-top: 40px;
	max-width: 520px;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 4px;
	padding: 28px 32px;
}

.pl-summary__title {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pl-summary__table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.pl-summary__table td {
	padding: 6px 8px;
	color: #ccc;
	font-size: 14px;
}

.pl-summary__table td:last-child {
	text-align: right;
	color: #fff;
}

.pl-summary__table tr:last-child td {
	font-size: 16px;
	padding-top: 12px;
	border-top: 1px solid #333;
}

.pl-summary__actions {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.pl-summary__fields {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 180px;
}

#pl-client-name,
#pl-client-company {
	width: 100%;
	background: #111;
	color: #fff;
	border: 1px solid #444;
	padding: 9px 12px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
}

#pl-client-name:focus,
#pl-client-company:focus {
	border-color: #888;
}

#pl-generate {
	white-space: nowrap;
}

#pl-msg {
	margin-top: 12px;
	color: #888;
	font-size: 13px;
	min-height: 18px;
}

/* ── Discount info tooltip ──────────────────────────────────────────────────── */

.pl-discount-info {
	display: none;
	margin-top: 32px;
	padding: 16px 20px;
	background: #111;
	border: 1px solid #222;
	border-radius: 4px;
	max-width: 520px;
}

.pl-discount-info__title {
	margin: 0 0 10px;
	font-size: 13px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pl-discount-info__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	color: #aaa;
}

.pl-discount-info__table td {
	padding: 3px 8px;
}

.pl-discount-info__table td:last-child {
	text-align: right;
	color: #fff;
}
