.zhopy-address {
    /* max-width: 700px; */
    margin: 30px auto;
    padding: 25px 30px;
    background: linear-gradient(to bottom right, #f9fafb, #e2e8f0);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
}

.zhopy-address input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.zhopy-address input[type="text"]:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
    background-color: #ffffff;
}

.zhopy-address button {
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}
/* input::placeholder {
    color: #888; /* Or any visible color 
} */
.zhopy-address button:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    transform: translateY(-2px);
}

.zhopy-address button:active {
    transform: translateY(0);
}
/* .zhopy-address input {
    color: #080808; /* dark gray, visible on light bg 
    opacity: 100%;  ensure it's fully opaque 
    font-weight: 500;
} */

input::placeholder {
  color: #6b7280!important; /* Tailwind gray-500 */
  opacity: 1;     /* Ensure full visibility */
  font-style: italic;
  font-weight: 500;
}
