/* sells.css - Upgraded to match index style without hero image */

:root {
  --white: #ffffff;
  --bg-gradient: linear-gradient(180deg, rgba(6,123,255,0.05) 0%, rgba(255,204,0,0.06) 100%);
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #007bff;
  --accent-2: #ffcc00;
  --shadow: 0 10px 30px rgba(12,22,38,0.08);
  --container: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg-gradient);
  color: #0f172a;
}

/* WRAP */
.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CONTAINER */
.container {
  max-width: var(--container);
  margin: 20px auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER */
.site-header {
  background: transparent;
  padding: 18px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--accent-2);
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 204, 0, 0.3);
}

.btn:hover {
  background: #ffd633;
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #111;
  box-shadow: none;
}

.small {
  padding: 6px 12px;
  font-size: 14px;
}

/* TEXT COLORS */
.muted {
  color: var(--muted);
}

/* CARD */
.card {
  background: var(--card);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(12,22,38,0.12);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 14px;
}

/* SERVICE BUTTONS */
.service-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: 2px solid rgba(15,23,42,0.04);
  background: #fff;
  color: #0f172a;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all .25s ease;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-2);
}

.service-btn .title {
  font-weight: 700;
}

.service-btn .price {
  float: right;
  opacity: 0.9;
  color: var(--accent);
}

/* FOOTER */
.footer {
  margin-top: auto;
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.modal-content {
  width: 100%;
  max-width: 680px;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  border-top: 5px solid var(--accent-2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--accent);
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}

/* ACCOUNT LIST */
.acct-list {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.acct-list li {
  padding: 10px;
  border-radius: 8px;
  background: rgba(15,23,42,0.03);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* INPUTS */
input,
textarea {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #111;
}

/* HR */
hr {
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
  margin: 12px 0;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .modal-content { max-width: 95%; }
}
@media (max-width: 440px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
