/* General Reset */
 @import url("https://fonts.googleapis.com/css2?family=Belleza&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
 @import url('https://fonts.googleapis.com/css2?family=Belleza&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Didot;
  }
  body {
    font-family: Didot;
    background: #fff;
    color: #333;
  }
  
  
  
  /* Product Card */
  .section-header {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 10px;
  }
  .custom-product-card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .product-image-wrapper {
    position: relative;
  }
  .product-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    padding: 2px 8px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .product-name {
    font-size: 16px;
    font-weight: 400;
  }
  .product-price {
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
  }
  .product-tax {
    font-size: 13px;
    white-space: nowrap;
    transform: translateY(1px);
  }
  .shipping-btn {
    border-color: #ddd;
    font-size: 12px;
    padding: 3px 10px;
    line-height: 1.2;
    border-radius: 0;
    white-space: nowrap;
  }
  .color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
  }
  .buy-now-btn {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    display: inline-block;
    text-align: left;
  }
  @media (max-width: 576px) {
    .product-name {
      font-size: 15px;
    }
    .product-price {
      font-size: 14px;
    }
    .product-tax {
      font-size: 12px;
    }
    .shipping-btn {
      font-size: 11px;
      padding: 2px 8px;
    }
    .color-dot {
      width: 16px;
      height: 16px;
    }
    .buy-now-btn {
      font-size: 13px;
    }
  }
  
  /* login cta box  */
  .login-cta-box {
    background-color: #F3EEE6;
    margin-top: 20px;
    margin-bottom: 70px;
    padding: 40px 20px;
  }
  
  .login-cta-btn {
    background-color: #372826;
    color: #fff;
    border-radius: 999px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 200px;
  }
  
  .login-cta-btn:hover {
    background-color: #1a1110;
    color: #fff;
  }
  @media (max-width: 767px) {
    .login-cta-btn {
        padding: 20px;
    }
    .login-cta-btn {
    padding: 8px 16px;
    font-size: 12px;
    width: 150px;
    }
}
  /* end of login cta box */




