.smart-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .sp-price-regular {
    color: #013B5B6B;
    font-size: 20px;
    line-height: 1.1;
    text-decoration: line-through;
  }
  
  .sp-price-discount {
    color: #000;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
  }

  .smart-price .sp-mainline{
    display:flex;
    align-items:baseline;
    gap:18px;
  }
  
  .smart-price .sp-discount-badge{
    color:#0078C0;
    font-size:16px;
    font-weight:400;
    white-space:nowrap;
  }
  
  
  .buy-now-btn button {
    width: 100% !important;
    background-color: #0078C07D !important;
    color: #fff !important;
    font-family: "Work Sans", sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border-radius: 18px !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 16px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    margin-left: 0px !important;
  }
  
  .buy-now-btn button:hover {
    opacity: 0.9 !important;
  }
  

  .custom-attributes-table {
    display: flex;
    flex-direction: column;
    border-top: 2px solid  rgb(0, 120, 192, 0.4);
    border-bottom: 2px solid  rgb(0, 120, 192, 0.4);
  }
  
  .custom-attributes-table .attr-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    position: relative;
    border-bottom: 2px solid rgb(0, 120, 192, 0.4);
  }
  
  .custom-attributes-table .attr-row:last-child {
    border-bottom: none;
  }
  
  .custom-attributes-table .attr-cell {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center !important;
  }
  
  .custom-attributes-table .attr-title {
    font-weight: 700;
    font-size: 16px;
    color: #013B5B;
    width: 200px !important;
    min-width: 200px !important;
  }
  
  .custom-attributes-table .attr-value {
    font-weight: 300;
    font-size: 16px;
    color: #013B5B;
    flex-wrap: wrap;
  }

  .woocommerce-js div.product form.cart .button {
margin-bottom: 10px !important;
  }
  
  .custom-attributes-table .attr-row::before {
    content: "";
    position: absolute;
    top: 0.7em;
    bottom: 0.7em;
    left: 50%;
    width: 2px;
    background-color: #0078C0;
    opacity: 0.4;
  }
  

  .specs-list {
    display: block;
    border-top: 2px solid rgba(0,120,192,.4);
  }
  
  .specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 2px solid rgba(0,120,192,.4);
  }
  
  .specs-label,
  .specs-value {
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 16px;
    color: #013B5B;
  }
  
  .specs-label {
    font-weight: 700;
    padding-right: 8px;
  }
  
  .specs-value {
    font-weight: 300;
    padding-left: 8px;
  }
  
