/* Add custom CSS styles below */ 
body{
background-color:#ffffff;
}
.product-more-info .more-tab-container .more-info-tabs__nav-link {
        background: #275016;
        }
        
  .s-button-primary {
      background-color: #275016;
    }
    .s-add-product-button-mini-checkout-content svg {
   
    fill: rgb(138 10 24);
}
.s-fast-checkout-button.outline {
    background-color: transparent;
    border: 1px solid #275016;
    color: #275016;
}





.coupon-box {
  background-color: #fffff;
  border: 1px solid #eee;
  padding: 16px 14px;
  margin: 40px auto 30px;
  width: 60%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Tajawal', Arial, sans-serif;
  direction: rtl;
  box-sizing: border-box;
}

.coupon-code {
  font-size: 20px;
  font-weight: bold;
  color: #8a0a18;
  display: flex;
  align-items: center;
  gap: 4px;
}

.coupon-code::before {
  content: "💸";
  font-size: 20px;
}

.copy-btn {
  background-color: #275016;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(138, 10, 24, 0.2);
}

.copy-btn:hover {
  background-color: #6e0813;
  transform: scale(1.05);
}

.copy-message {
  display: none;
  font-size: 14px;
  color: green;
  margin-right: 10px;
}