.admin-bar .coupon-code-section {
	display: flex !important;
}

.coupon-code-section {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	position: relative;
	background: white;
	position: relative;
	width: 100%;
	max-width: 480px;

	clip-path: path("M0,0 H100% V90 c10,5 20,5 30,0 c10,-5 20,-5 30,0 c10,5 20,5 30,0 c10,-5 20,-5 30,0 V0 Z");
}

.coupon-code-section .icon svg {
	width: 60%;
	height: 30px;
	width: auto;
	display: block;
}

.coupon-code-section .label {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 55%;
	padding: 10px 20px;
	background: #ffe4e4;
}

.coupon-code-section .label p {
	margin: 0;
	line-height: 100%;
}

.coupon-code-section .code {
	background: #000;
	padding: 15px 30px;
	opacity: 1;
	width: 45%;
	transition: .4s ease all;
}
.coupon-code-section .code:hover {
	opacity: 0.3;
}

.coupon-code-section .code p {
	margin: 0;
	text-align: center;
	color: #fff;
	font-weight: 600;
	line-height: 100%;
}


.coupon-popup {
    position: absolute;
    top: -40px;
    left: calc(50% - 16px);
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
    transition: opacity .3s ease, transform .3s ease;
    white-space: nowrap;
}

.coupon-popup.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
