* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.order-btn {
  width: 30px;
  height: 30px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  overflow: visible;
}

.order-btn:hover {
  background-color: #111;
}

.order-btn .IconContainer {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.order-btn .IconContainer svg {
  width: 50%;
  z-index: 3;
}

.order-btn .box-top {
  transition: all 0.3s;
}

.order-btn:hover .box-top {
  transform: translateY(-4px);
}

.order-btn .coin {
  width: 22%;
  height: 22%;
  background-color: #e4d61a;
  position: absolute;
  border-radius: 30%;
  transition: all 0.3s;
  z-index: 1;
  border: 2px solid #ffe956;
  margin-top: 7px;
}

.order-btn:hover .coin {
  transform: translateY(-5px);
  transition-delay: 0.2s;
}

/* 🔥 Order Now Text as Popup */
.order-btn .text {
  position: absolute;
  top: 140%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  color: #000;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  z-index: 99;
}

/* 🧨 Show on hover */
.order-btn:hover .text {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* 📱 Responsive Handling */
@media (max-width: 768px) {
  .order-btn {
    width: 37px;
    height: 37px;
  }

  .order-btn .text {
        font-size: 12px;
    padding: 5px 10px;
    /* left: 48px; */
    top: 120%;
  }
}
.p-action-btn {
    width: 215px;
    display: flex;
    justify-content: space-between;
}
	.p-action-btn .button {
  --width: 100px;
  --height: 35px;
  --tooltip-height: 35px;
  --tooltip-width: 90px;
  --gap-between-tooltip-to-button: 18px;
  --button-color: #222;
  --tooltip-color: #fff;
  width: var(--width);
  height: var(--height);
  background: var(--button-color);
  position: relative;
  text-align: center;
  border-radius: 0.45em;
 	font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}

.p-action-btn .button::before {
  position: absolute;
  content: attr(data-tooltip);
  width: var(--tooltip-width);
  height: var(--tooltip-height);
  background-color: #555;
  font-size: 0.9rem;
  color: #fff;
  border-radius: .25em;
  line-height: var(--tooltip-height);
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
  left: calc(50% - var(--tooltip-width) / 2);
}

.p-action-btn .button::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #555;
  left: calc(50% - 10px);
  bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.p-action-btn .button::after,.p-action-btn .button::before {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.p-action-btn .text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-action-btn .button-wrapper,.p-action-btn .text,.icon {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
    color: #fff;
    background: #D4AF37;
	    border-radius: 5px;
	
	font-size: 0.8rem;
	font-weight: bold;
}

.p-action-btn .text {
  top: 0
}

.p-action-btn .text,.p-action-btn .icon {
  transition: top 0.5s;
}

.p-action-btn .icon {
  color: #fff;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-action-btn .icon svg {
  width: 24px;
  height: 24px;
}

.p-action-btn .button:hover {
  background: #222;
}

.p-action-btn .button:hover .text {
  top: -100%;
}

.p-action-btn .button:hover .icon {
  top: 0;
}

.p-action-btn .button:hover:before,.p-action-btn .button:hover:after {
  opacity: 1;
  visibility: visible;
}

.p-action-btn .button:hover:after {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.p-action-btn .button:hover:before {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

.action-btn-cont{
display: flex; justify-content: space-between; width: 77px;	
}

@media screen and (max-width: 768px) {
  .product_details_container {
    display: block;
  }
	.action-btn-cont{
		width: 100px;
	}
}
.bin-btn:hover{
		  background-color: rgb(237, 56, 56);
		overflow: visible;

	}


.bin-btn path, .bin-btn circle, .bin-btn rect {
  stroke: #fff;
  fill: #101218;
}	.bin-btn:hover path, .bin-btn:hover circle {
  stroke: #fff;
  fill: #fff;
}
	.bin-btn:hover rect{
		 fill: rgb(237, 56, 56);
	}
