:root {
	--theme-color: #03A297;
	--color-white: #ffffff;
	--box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	--transition: all .5s ease-in-out;
	--color-red: #FD6A6A;
}
.custom-variable-product-radio  ul.variations-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.custom-variable-product-radio ul.variations-list li.variation-item {
    padding: 2px 0;
    font-family: 'Oswald';
    font-size: 18px;
}
.product-img-side {
    height: 100%;
}

.product-img-side img {
    height: 100%;
}
/* Quantity Wrapper */
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
	flex-wrap: wrap;
}

.qty-button {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, border 0.3s ease;
}

.qty-button:hover {
    background: #ddd;
    border-color: #bbb;
}

input.qty {
    width: 60px;
    text-align: center;
    height: 32px;
    border: 1px solid #ddd;
    font-size: 16px;
    border-radius: 4px;
    margin: 0;
}
.theme-btn {
  position: relative;
  font-size: 16px;
  background: var(--theme-color);
  color: var(--color-white);
  padding: 10px 20px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}
.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--color-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}
.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}
.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--color-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}
.single_add_to_cart_button {
    font-family: "Poppins 500", sans-serif;
}
.quantity {
    font-family: "Poppins 500", sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.custom-variable-product-radio p:empty {
    display: none;
}
.custom-variable-product-radio h2 {
    font-family: "Poppins 500", sans-serif;
    font-weight: 600;
    margin: 10px 0;
}
.custom-variable-product-radio {
    margin: 0;
    display: inline-block;
}
p.free-shipping-message {
    font-size: 1.38rem;
    margin: 1rem 0;
}

/* Coupon Code */
ul.product-coupon-code {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

ul.product-coupon-code li {
    padding: 2px 8px;
    color: #fff;
    font-size: 16px;
}

ul.product-coupon-code li.coupon-code {
    background-color: var(--theme-color);
	border: 1px solid var(--theme-color);
}
ul.product-coupon-code li.coupon-text {
    border: 1px dashed #000;
    color: #000;
}

ul.product-coupon-code li.coupon-text em {
    font-style: normal;
}

li.coupon-copy-btn {
    padding: 8px;
    margin-left: 6px;
    background: #efefef;
    display: initial;
    border: 1px solid #efefef;
}

li.coupon-copy-btn a {
    color: #000;
    text-decoration: none;
}