/* Vendor Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: modalopen 0.4s;
  }
  
  @keyframes modalopen {
    from {opacity:0; transform: translateY(-60px)}
    to {opacity:1; transform: translateY(0)}
  }
  
  .close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #df7366;
  }
  
  .modal-body {
    display: flex;
    gap: 30px;
    margin-top: 20px;
  }
  
  #modal-image {
    width: 40%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .modal-text {
    width: 60%;
  }
  
  .modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    align-items: center;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .modal-body {
      flex-direction: column;
    }
    
    #modal-image,
    .modal-text {
      width: 100%;
    }
  }