
/* ==========================================
   SushiTime — Contact page
   ========================================== */
.st-contact, .st-contact *{ box-sizing:border-box; }

.st-page-title{
  margin:0 0 14px;
  font-size:22px;
  font-weight:1000;
  color:#111;
}

.st-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}

.st-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.06);
  padding:18px;
}

.st-card-title{
  margin:0 0 14px;
  font-size:16px;
  font-weight:1000;
  color:#111;
}

.st-field{ margin-bottom:12px; }
.st-label{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  font-weight:900;
  color:#333;
}

.st-help{
  margin-top:8px;
  color:#777;
  font-size:12.5px;
  font-weight:700;
  line-height:1.35;
}

/* inputs look */
.st-card input,
.st-card textarea,
.st-card select{
  width:100%;
  border-radius:14px !important;
  border:1px solid #eee !important;
  background:#fff !important;
  padding:10px 12px !important;
  outline:none !important;
  font-weight:800;
  color:#111;
}

.st-card textarea{ min-height:120px; resize:vertical; }

.st-btn{
  height:44px;
  padding:0 16px;
  border-radius:14px;
  border:0;
  color:#fff;
  font-weight:1000;
  font-size:14px;
  background: linear-gradient(90deg, #ff4d4f 0%, #ff8a00 100%);
  box-shadow: 0 12px 26px rgba(255, 77, 79, .22);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  white-space:nowrap;
}
.st-btn:hover{ filter:brightness(1.03); transform: translateY(-1px); }
.st-btn:active{ transform: translateY(0); }

.st-contacts p{
  margin:0 0 8px;
  color:#333;
  font-weight:800;
  line-height:1.45;
}
.st-contacts b{ font-weight:1000; color:#111; }

.st-link{
  color:#111;
  text-decoration:none;
  font-weight:1000;
}
.st-link:hover{ color:#ff4d4f; }

.st-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  font-weight:1000;
  font-size:12px;
  color:#333;
  margin-left:6px;
}

/* map card */
.st-map{
  margin-top:18px;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 18px 45px rgba(0,0,0,.06);
  background:#fff;
}
.st-map iframe{
  width:100%;
  height:320px;
  border:0;
  display:block;
}

/* align with your layout */
@media (max-width: 992px){
  .st-grid{ grid-template-columns:1fr; }
}
@media (max-width: 576px){
  .shop-page-area{ padding-top: 45px !important; padding-bottom: 45px !important; }
  .st-card{ padding:14px; }
  .st-page-title{ font-size:20px; }
  .st-btn{ width:100%; }
  .st-map iframe{ height:260px; }
}
