/* ==========================================================================
   Frontend WhatsApp button — base style
   ========================================================================== */
.wob-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 10px 0;
	padding: 12px 20px;
	border-radius: 6px;
	border: 2px solid transparent;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	background-color: #25D366;
	color: #ffffff;
	transition: opacity 0.2s ease, transform 0.1s ease;
	box-sizing: border-box;
}

.wob-whatsapp-button:hover {
	opacity: 0.9;
	color: inherit;
}

.wob-whatsapp-button:active {
	transform: scale(0.98);
}

.wob-whatsapp-icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

/* Shape: rounded (default) */
.wob-shape-rounded {
	border-radius: 6px;
}

/* Shape: pill / fully rounded */
.wob-shape-pill {
	border-radius: 999px;
}

/* Shape: square corners */
.wob-shape-square {
	border-radius: 0;
}

/* Shape: outline (transparent background, colored border) */
.wob-shape-outline {
	border-width: 2px;
	border-style: solid;
}

/* Shape: circular icon-only floating button */
.wob-shape-circle {
	width: 56px;
	height: 56px;
	padding: 0;
	border-radius: 50%;
	gap: 0;
}
.wob-shape-circle .wob-whatsapp-text {
	display: none;
}
.wob-shape-circle .wob-whatsapp-icon svg {
	width: 26px;
	height: 26px;
}

/* Cart / checkout buttons sit next to WooCommerce's own buttons */
.wob-cart-button,
.wob-checkout-button {
	margin-left: 10px;
	vertical-align: middle;
}

/* ==========================================================================
   Admin analytics dashboard
   ========================================================================== */
.wob-summary-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 20px 0;
}

.wob-card {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 6px;
	padding: 16px 24px;
	min-width: 120px;
	text-align: center;
	box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.wob-card-highlight {
	border-color: #25D366;
	background: #f0fdf5;
}

.wob-card-number {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #1d2327;
}

.wob-card-label {
	display: block;
	font-size: 13px;
	color: #646970;
	margin-top: 4px;
}

.wob-filter-form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin: 20px 0;
	background: #fff;
	border: 1px solid #ccd0d4;
	padding: 12px 16px;
	border-radius: 6px;
}

.wob-custom-range {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wob-compare-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
}

.wob-compare-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 16px 0 24px;
}

.wob-compare-block {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 6px;
	padding: 16px 20px;
	min-width: 220px;
	flex: 1;
}

.wob-compare-block h3 {
	margin: 0 0 6px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #646970;
}

.wob-compare-block p {
	margin: 4px 0;
}

.wob-compare-range {
	font-size: 12px;
	color: #646970;
}

.wob-compare-change {
	background: #f6f7f7;
}

.wob-up {
	color: #1a7f37;
	font-weight: 600;
}

.wob-down {
	color: #c92a2a;
	font-weight: 600;
}
