/*
Theme Name: Mistbound Storefront Child
Theme URI: https://mistboundstudios.com
Description: Storefront child theme for Mistbound Studios (dark gothic styling, minimal maintenance).
Author: Mistbound Studios
Author URI: https://mistboundstudios.com
Template: storefront
Version: 1.0.0
Text Domain: mistbound-storefront-child
*/

/* ---- Brand tokens ---- */
:root{
  --mb-bg: #0b0b0e;
  --mb-surface: #14141a;
  --mb-text: #f0eef2;
  --mb-muted: #b9b4bf;
  --mb-accent: #7a0f1a;      /* blood red */
  --mb-accent-2: #3b0b12;    /* deep wine */
  --mb-border: rgba(255,255,255,.08);
}

/* Base typography + colors */
body{
  background: var(--mb-bg);
  color: var(--mb-text);
}
a{ color: #f2cbd0; }
a:hover{ color: #ffd7dc; }

/* Header + nav */
.site-header{
  background: linear-gradient(180deg, #0f0f14, #0b0b0e);
  border-bottom: 1px solid var(--mb-border);
}
.main-navigation ul li a,
.site-title a,
.site-description{
  color: var(--mb-text);
}
.main-navigation ul li a:hover{
  color: #fff;
}

/* Buttons */
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"]{
  background: var(--mb-accent);
  border-color: var(--mb-accent);
  color: #fff;
}
button:hover,
.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
  background: #5f0c14;
  border-color: #5f0c14;
}

/* Cards / surfaces */
.widget,
.site-content .content-area,
.site-main .entry,
.site-main .product,
.storefront-sorting,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error{
  background: transparent;
}
.woocommerce ul.products li.product,
.woocommerce div.product div.images,
.woocommerce div.product .summary{
  background: rgba(255,255,255,.02);
  border: 1px solid var(--mb-border);
  border-radius: 14px;
  padding: 12px;
}

/* Footer */
.site-footer{
  background: #07070a;
  border-top: 1px solid var(--mb-border);
  color: var(--mb-muted);
}
.site-footer a{ color: #e6c5ca; }

/* Gutenberg blocks */
.wp-block-cover{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--mb-border);
}
.wp-block-button__link{
  border-radius: 999px;
}

/* Utility: "Etsy strip" block group */
.mb-etsy-strip{
  border: 1px solid var(--mb-border);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 18px;
}

/* Mistbound Patreon top bar */
.mb-topbar {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mb-topbar .col-full {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.mb-topbar a {
  text-decoration: underline;
}
