/*
 Theme Name: Alder & Ash – Botiga Child
 Theme URI: https://alderandash.example
 Description: Minimal, matte-black child theme for Botiga. Clean edges, elegant typography.
 Author: ChatGPT
 Template: botiga
 Version: 1.0
*/

/* Typography */
:root{
  --aa-font-headings: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --aa-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --aa-black: #111111;
  --aa-gray: #f7f7f7;
  --aa-mid: #2c2c2c;
}

/* Global reset-ish */
body{
  color:#111;
  background:#fff;
  font-family: var(--aa-font-body);
  -webkit-font-smoothing: antialiased;
  line-height:1.6;
}

a{ text-decoration:none; }
a:hover{ text-decoration:underline; }

/* Header */
.site-header, header, .site-branding{
  background:#111;
  color:#fff;
}

.site-title a, .site-title, .site-description{
  color:#fff !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Navigation */
.main-navigation a{
  color:#fff !important;
  letter-spacing:0.03em;
}
.main-navigation a:hover{
  opacity:.85;
}

/* Buttons */
button, .button, .wp-block-button__link, .add_to_cart_button{
  background:#111;
  color:#fff !important;
  border-radius:12px;
  padding:.7rem 1rem;
  border:1px solid #111;
}
button:hover, .button:hover, .wp-block-button__link:hover, .add_to_cart_button:hover{
  background:#fff;
  color:#111 !important;
}

/* Cards / product tiles */
.woocommerce ul.products li.product, .wc-block-grid__product{
  border:1px solid #eaeaea;
  border-radius:16px;
  padding:16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}

/* Price + badges */
.price{ font-weight:600; }
.onsale{ background:#111 !important; color:#fff !important; border-radius:999px; }

/* Footer */
.site-footer{
  background:#111;
  color:#fff;
}
.site-footer a{ color:#fff; }
*/