body.gqeberha-gallery-page {
  background:
    radial-gradient(circle at 15% 6%, rgba(0, 109, 119, 0.12), transparent 35%),
    radial-gradient(circle at 85% 2%, rgba(191, 143, 40, 0.14), transparent 32%),
    #f6f9fb;
  color: #1c2b34;
}

body.gqeberha-gallery-page .hero {
  padding-bottom: 22px;
}

body.gqeberha-gallery-page .hero-subtitle {
  margin: 10px 0 0;
  color: #ecf7f8;
  font-size: 1rem;
}

body.gqeberha-gallery-page .gallery-main {
  width: min(1120px, calc(100% - 20px));
  margin: 16px auto 24px;
  display: grid;
  gap: 14px;
}

body.gqeberha-gallery-page .card {
  background: #ffffff;
  border: 1px solid #d7e3ea;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(16, 46, 70, 0.08);
  padding: 16px;
  text-align: left;
}

body.gqeberha-gallery-page h2 {
  margin: 0 0 10px;
  color: #103e73;
}

body.gqeberha-gallery-page .gallery-intro ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

body.gqeberha-gallery-page .cta-line {
  margin-top: 12px;
  font-weight: 600;
}

body.gqeberha-gallery-page .cta-line a {
  color: #0d4f86;
}

body.gqeberha-gallery-page .gallery-controls {
  display: grid;
  gap: 10px;
}

body.gqeberha-gallery-page #artSearch {
  border: 1px solid #b7cad6;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

body.gqeberha-gallery-page #artSearch:focus,
body.gqeberha-gallery-page .artist-upload input:focus,
body.gqeberha-gallery-page .artist-upload select:focus,
body.gqeberha-gallery-page .artist-upload button:focus,
body.gqeberha-gallery-page .filter-btn:focus,
body.gqeberha-gallery-page .buy-btn:focus {
  outline: 2px solid #bf8f28;
  outline-offset: 2px;
}

body.gqeberha-gallery-page .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.gqeberha-gallery-page .filter-btn {
  border: 1px solid #1c5664;
  background: #0f4a56;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

body.gqeberha-gallery-page .filter-btn:hover,
body.gqeberha-gallery-page .filter-btn.active {
  background: #0a3942;
  border-color: #bf8f28;
}

body.gqeberha-gallery-page .count-pill {
  margin: 0;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d6c59f;
  background: #fff8e8;
  color: #644d16;
  font-weight: 700;
  font-size: 0.86rem;
}

body.gqeberha-gallery-page .artist-upload form {
  display: grid;
  gap: 8px;
}

body.gqeberha-gallery-page .artist-upload label {
  font-weight: 600;
  color: #213848;
}

body.gqeberha-gallery-page .artist-upload input,
body.gqeberha-gallery-page .artist-upload select,
body.gqeberha-gallery-page .artist-upload button {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #b8cddd;
  padding: 10px;
  font-size: 0.95rem;
}

body.gqeberha-gallery-page .artist-upload button {
  background: linear-gradient(135deg, #1a5e90, #10456b);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

body.gqeberha-gallery-page .artist-upload button:hover {
  background: linear-gradient(135deg, #0f4e7c, #0a3756);
}

body.gqeberha-gallery-page .art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

body.gqeberha-gallery-page .art-card {
  border: 1px solid #d8e2e9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(16, 46, 70, 0.08);
  display: flex;
  flex-direction: column;
}

body.gqeberha-gallery-page .art-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #eff4f8;
}

body.gqeberha-gallery-page .art-meta {
  padding: 10px;
  text-align: left;
}

body.gqeberha-gallery-page .art-meta h3 {
  margin: 0;
  font-size: 1rem;
  color: #193f67;
}

body.gqeberha-gallery-page .art-meta p {
  margin: 6px 0;
  font-size: 0.9rem;
}

body.gqeberha-gallery-page .art-price {
  color: #2f6512;
  font-weight: 700;
}

body.gqeberha-gallery-page .buy-btn {
  border: 1px solid #277c33;
  background: #2c8b3a;
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 700;
  cursor: pointer;
}

body.gqeberha-gallery-page .buy-btn:hover {
  background: #216b2c;
}

body.gqeberha-gallery-page .add-cart-btn {
  border: 1px solid #1a5a8f;
  background: #1f6cad;
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 6px;
}

body.gqeberha-gallery-page .add-cart-btn:hover {
  background: #14507f;
}

body.gqeberha-gallery-page .art-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

body.gqeberha-gallery-page .badge {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid transparent;
}

body.gqeberha-gallery-page .badge.approved {
  background: #e7f8eb;
  color: #1e6f2f;
  border-color: #88d39a;
}

body.gqeberha-gallery-page .badge.pending {
  background: #fff7e9;
  color: #7b580a;
  border-color: #e7c67b;
}

body.gqeberha-gallery-page .badge.rejected {
  background: #ffecec;
  color: #842929;
  border-color: #ebb1b1;
}

body.gqeberha-gallery-page .badge.neutral {
  background: #eff4f8;
  color: #365064;
  border-color: #cedbe6;
}

body.gqeberha-gallery-page .verification {
  margin-top: 0;
}

body.gqeberha-gallery-page .cart-list,
body.gqeberha-gallery-page .moderation-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
}

body.gqeberha-gallery-page .cart-item,
body.gqeberha-gallery-page .moderation-item {
  border: 1px solid #d8e2e9;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 8px;
}

body.gqeberha-gallery-page .cart-item-head,
body.gqeberha-gallery-page .moderation-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.gqeberha-gallery-page .remove-cart-btn,
body.gqeberha-gallery-page .admin-btn {
  border: 1px solid #35566f;
  background: #244c66;
  color: #fff;
  border-radius: 8px;
  padding: 7px 10px;
  font-weight: 700;
  cursor: pointer;
}

body.gqeberha-gallery-page .admin-btn.approve {
  border-color: #2b7c2d;
  background: #2f9231;
}

body.gqeberha-gallery-page .admin-btn.remove {
  border-color: #983d3d;
  background: #b34747;
}

body.gqeberha-gallery-page .remove-cart-btn:hover,
body.gqeberha-gallery-page .admin-btn:hover {
  filter: brightness(0.95);
}

body.gqeberha-gallery-page #checkoutForm {
  display: grid;
  gap: 8px;
}

body.gqeberha-gallery-page #checkoutForm input,
body.gqeberha-gallery-page #checkoutForm select,
body.gqeberha-gallery-page #checkoutForm textarea,
body.gqeberha-gallery-page #checkoutForm button {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #b8cddd;
  padding: 10px;
  font-size: 0.95rem;
}

body.gqeberha-gallery-page #checkoutForm button {
  border: none;
  background: linear-gradient(135deg, #0f5e7d, #0d4861);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

body.gqeberha-gallery-page #checkoutForm button:hover {
  background: linear-gradient(135deg, #0d4c65, #0a3a4d);
}

body.gqeberha-gallery-page .status {
  min-height: 1.2em;
  color: #2a4250;
  font-weight: 600;
}

@media (max-width: 640px) {
  body.gqeberha-gallery-page .gallery-main {
    width: calc(100% - 12px);
    margin: 10px auto 16px;
  }

  body.gqeberha-gallery-page .card {
    padding: 12px;
  }
}
