.aw-widget {
	max-width: 640px;
	margin: 24px 0;
	font-family: inherit;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
}

.aw-timer-block {
	text-align: center;
	margin-bottom: 16px;
}

.aw-timer {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 2px;
}

.aw-timer.aw-ending-soon {
	color: #d63638;
}

.aw-timer-label {
	font-size: 13px;
	opacity: 0.7;
	margin-top: 4px;
}

.aw-price-block {
	display: flex;
	justify-content: center;
	gap: 8px;
	align-items: baseline;
	margin-bottom: 16px;
	font-size: 20px;
}

.aw-current-price {
	font-weight: 700;
	font-size: 26px;
}

.aw-bid-form {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.aw-bid-input {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
}

.aw-bid-button,
.aw-chat-button {
	padding: 10px 18px;
	border: none;
	border-radius: 6px;
	background: #1e1e1e;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
}

.aw-bid-button:hover,
.aw-chat-button:hover {
	opacity: 0.85;
}

.aw-bid-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.aw-bid-message {
	min-height: 18px;
	font-size: 13px;
	margin-bottom: 12px;
}

.aw-bid-message.aw-error { color: #d63638; }
.aw-bid-message.aw-success { color: #1e8e3e; }

.aw-bid-history {
	margin-bottom: 20px;
	max-height: 160px;
	overflow-y: auto;
	border-top: 1px solid #eee;
	padding-top: 8px;
}

.aw-bid-history h4,
.aw-chat-block h4 {
	margin: 0 0 8px;
	font-size: 14px;
	text-transform: uppercase;
	opacity: 0.6;
}

.aw-bid-history ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.aw-bid-history li {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
	border-bottom: 1px dashed #eee;
}

.aw-chat-block {
	border-top: 1px solid #eee;
	padding-top: 12px;
}

.aw-chat-messages {
	height: 220px;
	overflow-y: auto;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 10px;
	margin-bottom: 8px;
	font-size: 14px;
	background: #fafafa;
}

.aw-chat-messages .aw-chat-msg {
	margin-bottom: 6px;
}

.aw-chat-messages .aw-chat-user {
	font-weight: 600;
	margin-right: 4px;
}

.aw-chat-form {
	display: flex;
	gap: 8px;
}

.aw-chat-input {
	flex: 1;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

@media (max-width: 480px) {
	.aw-timer { font-size: 24px; }
	.aw-bid-form { flex-direction: column; }
}

/* ===== Главная страница: отдельный таймер и полноэкранный чат ===== */

.aw-home-timer {
	margin: 0 0 32px;
}

.aw-home-timer .aw-timer {
	font-size: 48px;
}

.aw-chat-fullscreen {
	max-width: 100%;
	width: 100%;
	margin: 0;
	border: none;
	border-radius: 0;
	padding: 0;
}

.aw-chat-fullscreen .aw-chat-block {
	border-top: none;
	padding-top: 0;
	display: flex;
	flex-direction: column;
	height: var(--aw-chat-height, 80vh);
}

.aw-chat-fullscreen .aw-chat-messages {
	flex: 1;
	height: auto;
	border-radius: 8px;
	font-size: 15px;
	padding: 16px;
}

.aw-chat-fullscreen .aw-chat-form {
	margin-top: 12px;
}

.aw-chat-fullscreen .aw-chat-input {
	padding: 12px 14px;
	font-size: 15px;
}

.aw-chat-fullscreen .aw-chat-button {
	padding: 12px 24px;
}
