/* Full Circle Music, Inc. — mock site stylesheet
   Colors sampled directly from the live site (fullcirclemusicinc.com):
   --fcm-primary   #2C40C7  (page background blue, computed body background-color)
   --fcm-secondary #6868C6  (site-identity header panel background-color)
   --fcm-light     #C9CCF2  (heading / widget-title color on blue background)
   --fcm-navy      #1B3A8F  (dark note-mark from the logo)
   Fonts match the live site: Poppins (body) + Abril Fatface (display headings)
*/

:root {
  --fcm-primary: #2C40C7;
  --fcm-secondary: #6868C6;
  --fcm-light: #C9CCF2;
  --fcm-navy: #1B3A8F;
  --fcm-navy-dark: #142a66;
  --fcm-ink: #1a1c33;
  --fcm-cream: #f6f7fd;
  --fcm-gold: #e0a83e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 58, 143, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--fcm-ink);
  background: var(--fcm-cream);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top utility bar ---------- */
.top-bar {
  background: var(--fcm-navy-dark);
  color: #dfe3ff;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { opacity: 0.9; }
.top-bar a:hover { opacity: 1; text-decoration: underline; }
.top-bar .tb-item { margin-right: 18px; }

/* ---------- Header ---------- */
header.site-header {
  background: var(--fcm-secondary);
  color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img.logo {
  height: 62px;
  width: auto;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.brand-text .brand-name {
  font-family: 'Abril Fatface', serif;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #fff;
}
.brand-text .brand-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fcm-light);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  border-bottom-color: var(--fcm-gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  nav.main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin-top: 12px;
  }
  nav.main-nav a { display: block; padding: 12px 4px; }
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--fcm-primary);
  color: #fff;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #fff;
}
.hero h1 span { color: var(--fcm-light); }
.hero p.lead {
  font-size: 1.1rem;
  color: #e4e6ff;
  max-width: 46ch;
}
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255,255,255,0.15);
}
.hero-badges {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  vertical-align: middle;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--fcm-gold);
  color: var(--fcm-navy-dark);
}
.btn-primary:hover { box-shadow: 0 8px 18px rgba(224,168,62,0.4); }
.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark {
  background: var(--fcm-navy);
  color: #fff;
}
.btn-dark:hover { box-shadow: 0 8px 18px rgba(27,58,143,0.35); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-alt { background: #fff; }
.section-tint { background: var(--fcm-cream); }
.section-dark {
  background: var(--fcm-primary);
  color: #fff;
}
.section-dark h2 { color: #fff; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fcm-secondary);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: var(--fcm-light); }
.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 { font-size: 2.1rem; }
.section-head p { color: #4c4f6b; }
.section-dark .section-head p { color: #dfe3ff; }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 6px 20px rgba(27,58,143,0.08);
  border: 1px solid #ececfb;
}
.card h3 { font-size: 1.2rem; color: var(--fcm-navy); }
.card .icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
}

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.photo-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.photo-card .cap {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #4c4f6b;
}

/* ---------- Reviews ---------- */
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 6px 20px rgba(27,58,143,0.08);
}
.stars { color: var(--fcm-gold); letter-spacing: 2px; margin-bottom: 10px; }
.review .who { font-weight: 700; margin-top: 12px; color: var(--fcm-navy); }
.review .src { font-size: 0.8rem; color: #8b8ea8; }

/* ---------- Updates strip ---------- */
.updates-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.update-card {
  flex: 0 0 260px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 16px rgba(27,58,143,0.08);
  border-left: 4px solid var(--fcm-gold);
}
.update-card .date { font-size: 0.78rem; color: #8b8ea8; text-transform: uppercase; letter-spacing: 1px; }
.update-card h4 { margin: 8px 0 6px; color: var(--fcm-navy); font-family: 'Poppins', sans-serif; font-weight: 700; }
.update-card p { font-size: 0.9rem; color: #4c4f6b; margin: 0; }

/* ---------- Info strip (hours/location/phone) ---------- */
.info-strip {
  background: var(--fcm-navy-dark);
  color: #fff;
}
.info-strip .grid { grid-template-columns: repeat(3, 1fr); }
.info-strip h4 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--fcm-light);
  margin-bottom: 10px;
}
.info-strip p { margin: 0; color: #e4e6ff; }
@media (max-width: 700px) { .info-strip .grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer {
  background: var(--fcm-navy-dark);
  color: #b7bce6;
  padding: 40px 0 24px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
footer .foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 24px;
}
footer h5 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 12px; }
footer a:hover { color: #fff; }
footer .fine-print { text-align: center; opacity: 0.7; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }
@media (max-width: 700px) { footer .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
form.demo-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label { font-size: 0.85rem; font-weight: 600; color: var(--fcm-navy); display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d6d8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfbff;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--fcm-secondary);
  box-shadow: 0 0 0 3px rgba(104,104,198,0.18);
}
.form-note {
  font-size: 0.78rem;
  color: #8b8ea8;
  margin-top: 14px;
}
.form-success {
  display: none;
  background: #eaf7ee;
  border: 1px solid #bfe6c8;
  color: #256a3c;
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 18px;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ---------- Shop ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: start;
}
@media (max-width: 860px) { .shop-layout { grid-template-columns: 1fr; } }

.filter-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 6px 16px rgba(27,58,143,0.08);
  position: sticky;
  top: 100px;
}
.filter-panel h4 { margin: 0 0 14px; color: var(--fcm-navy); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;}
.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list li { margin-bottom: 4px; }
.filter-list button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #4c4f6b;
  font-family: inherit;
}
.filter-list button:hover { background: var(--fcm-cream); }
.filter-list button.active { background: var(--fcm-primary); color: #fff; font-weight: 600; }

/* Category rows that have real subcategories (matches the live site's own */
/* Products menu, e.g. Guitars > Acoustic / Acoustic-Electric / Classical / */
/* Electric / Handmade) get an expand-in-place accordion toggle. */
.filter-row { display: flex; align-items: stretch; gap: 2px; }
.filter-row button[data-filter] { flex: 1; }
.subcat-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #9498b8;
  font-size: 0.85rem;
  line-height: 1;
  padding: 9px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  width: 34px;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.subcat-toggle:hover { background: var(--fcm-cream); color: var(--fcm-navy); }
.has-subcats.expanded .subcat-toggle { color: var(--fcm-navy); }
.subcat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
.has-subcats.expanded .subcat-list { max-height: 400px; margin-top: 2px; }
.subcat-list li { margin-bottom: 2px; }
.subcat-list button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 7px 10px 7px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  color: #6a6d8a;
  font-family: inherit;
}
.subcat-list button:hover { background: var(--fcm-cream); }
.subcat-list button.active { background: var(--fcm-primary); color: #fff; font-weight: 600; }

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(27,58,143,0.08);
  border: 1px solid #ececfb;
  display: flex;
  flex-direction: column;
}
.product-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--fcm-secondary), var(--fcm-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-body .cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--fcm-secondary); font-weight: 700; }
.product-body h4 { margin: 6px 0; font-size: 1.02rem; color: var(--fcm-ink); font-family: 'Poppins', sans-serif; font-weight: 700; }
.product-body p { font-size: 0.85rem; color: #6a6d8a; margin: 0 0 12px; flex: 1; }
.product-body .price-row { display: flex; justify-content: space-between; align-items: center; }
.price { font-weight: 700; color: var(--fcm-navy); font-size: 1.05rem; }
.tag-used { font-size: 0.7rem; background: #fdeecb; color: #8a5a00; padding: 3px 9px; border-radius: 999px; }
.tag-new { font-size: 0.7rem; background: #e6ecff; color: var(--fcm-navy); padding: 3px 9px; border-radius: 999px; }

.results-count { color: #6a6d8a; font-size: 0.9rem; margin-bottom: 18px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--fcm-primary);
  color: #fff;
  padding: 60px 0 50px;
}
.page-hero h1 { color: #fff; font-size: 2.3rem; }
.page-hero p { color: #dfe3ff; max-width: 60ch; }
.crumbs { font-size: 0.82rem; color: var(--fcm-light); margin-bottom: 14px; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- Utility ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.list-check { list-style: none; margin: 0; padding: 0; }
.list-check li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--fcm-gold);
  font-weight: 700;
}

.demo-note {
  font-size: 0.78rem;
  color: #9498b8;
  text-align: center;
  margin-top: 10px;
}

/* ---------- Header layout order (logo -> nav -> cart/menu, always) ---------- */
.header-inner .brand { order: 1; }
.header-inner nav.main-nav { order: 2; }
.header-inner .header-actions { order: 3; }
@media (max-width: 860px) {
  .header-inner .header-actions { order: 2; }
}

/* ---------- Header cart icon ---------- */
.header-actions { display: flex; align-items: center; gap: 18px; }
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}
.cart-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--fcm-gold);
  color: var(--fcm-navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---------- Product images (shop grid) ---------- */
.product-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--fcm-secondary), var(--fcm-primary));
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag-contact { font-size: 0.7rem; background: #ffe3d6; color: #a34a13; padding: 3px 9px; border-radius: 999px; }
.tag-consignment { font-size: 0.7rem; background: #eee0fb; color: #6b2fa3; padding: 3px 9px; border-radius: 999px; }
.tag-shipfree { font-size: 0.72rem; color: #4c4f6b; }
.product-body .btn { width: 100%; text-align: center; padding: 10px 14px; font-size: 0.88rem; }
.btn-soldout { background: #b3455a; color: #fff; }
.btn:disabled, .btn[disabled] { cursor: not-allowed; opacity: 0.6; transform: none !important; box-shadow: none !important; }

/* ---------- Cart page ---------- */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th {
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fcm-navy);
  background: var(--fcm-cream);
  padding: 14px 18px;
}
.cart-table td { padding: 16px 18px; border-top: 1px solid #ececfb; vertical-align: middle; }
.cart-item-name { font-weight: 700; color: var(--fcm-ink); }
.cart-item-thumb {
  width: 56px; height: 56px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--fcm-secondary), var(--fcm-primary));
  flex-shrink: 0;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-row { display: flex; align-items: center; gap: 14px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid #d6d8f0; border-radius: 8px; overflow: hidden; }
.qty-stepper button {
  background: var(--fcm-cream); border: none; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; color: var(--fcm-navy);
}
.qty-stepper input { width: 42px; text-align: center; border: none; border-left: 1px solid #d6d8f0; border-right: 1px solid #d6d8f0; border-radius: 0; padding: 6px 0; }
.remove-link { color: #b3455a; font-size: 0.82rem; cursor: pointer; background: none; border: none; font-family: inherit; padding: 0; }
.cart-summary {
  background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  position: sticky; top: 100px;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: #4c4f6b; font-size: 0.95rem; }
.summary-row.total { font-weight: 700; color: var(--fcm-navy); font-size: 1.15rem; border-top: 1px solid #ececfb; padding-top: 14px; margin-top: 14px; }
.empty-state { text-align: center; padding: 60px 20px; color: #6a6d8a; }
.empty-state .icon { font-size: 2.6rem; margin-bottom: 14px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: start; }
@media (max-width: 860px) { .checkout-layout { grid-template-columns: 1fr; } }
.fulfillment-option {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid #d6d8f0; border-radius: 10px; padding: 16px; margin-bottom: 12px; cursor: pointer;
}
.fulfillment-option.selected { border-color: var(--fcm-secondary); background: #f4f5ff; }
.fulfillment-option input { width: auto; margin-top: 4px; }
.fulfillment-note { font-size: 0.82rem; color: #8b8ea8; margin-top: 4px; }
.ship-fields { display: none; }
.ship-fields.show { display: block; }
.order-line { display: flex; justify-content: space-between; font-size: 0.88rem; color: #4c4f6b; margin-bottom: 8px; }

/* ---------- Admin ---------- */
.admin-login-wrap {
  max-width: 380px; margin: 90px auto; background: #fff; border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow); text-align: center;
}
.admin-login-wrap .icon { font-size: 2rem; margin-bottom: 10px; }
.admin-error { color: #b3455a; font-size: 0.85rem; margin-top: 10px; display: none; }
.admin-error.show { display: block; }
.admin-bar {
  background: var(--fcm-navy-dark); color: #fff; padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-table-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 30px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--fcm-navy); background: var(--fcm-cream); padding: 12px 16px;
}
.admin-table td { padding: 12px 16px; border-top: 1px solid #ececfb; font-size: 0.9rem; vertical-align: middle; }
.admin-table img.thumb { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.admin-table .actions button { background: none; border: none; cursor: pointer; font-size: 0.85rem; font-weight: 600; margin-right: 12px; }
.edit-link { color: var(--fcm-secondary); }
.delete-link { color: #b3455a; }
.toggle-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.toggle-row input[type="checkbox"],
.toggle-row input[type="radio"] {
  width: 18px;
  height: 18px;
  flex: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  accent-color: var(--fcm-secondary);
}
.toggle-row label { margin: 0; flex: 1; }
.admin-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.file-drop {
  border: 1.5px dashed #d6d8f0; border-radius: 10px; padding: 18px; text-align: center; font-size: 0.85rem; color: #8b8ea8; cursor: pointer;
}
.image-preview { width: 100%; max-width: 180px; border-radius: 10px; margin-top: 10px; display: none; }
.image-preview.show { display: block; }
