  /*
Theme Name: CreativeRebel Blossom Boutique
Theme URI: https://creativerebel.ch
Author: CreativeRebel
Author URI: https://creativerebel.ch
Description: Bright and elegant WooCommerce + Elementor ready theme for women-owned boutique shops.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: cr-blossom-boutique
*/

:root {
  --cr-bg: #fff8fb;
  --cr-surface: #ffffff;
  --cr-text: #3e2b36;
  --cr-muted: #80687a;
  --cr-primary: #df5f93;
  --cr-accent: #ffb3c9;
  --cr-border: #f4d9e4;
  --cr-radius: 16px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cr-text);
  background:
    radial-gradient(circle at 8% 0%, #ffe7ef 0%, transparent 35%),
    radial-gradient(circle at 92% 12%, #ffe1ea 0%, transparent 30%),
    var(--cr-bg);
}

a { color: var(--cr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.cr-site {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cr-container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.cr-header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--cr-border);
  backdrop-filter: blur(6px);
}

.cr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.cr-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.cr-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.cr-main {
  padding: 28px 0;
}

.cr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cr-card {
  background: var(--cr-surface);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(201, 111, 152, 0.08);
}

.cr-footer {
  border-top: 1px solid var(--cr-border);
  background: #fff2f7;
  padding: 20px 0;
  color: var(--cr-muted);
}

.button,
button,
input[type="submit"],
.wp-block-button__link {
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, var(--cr-primary), #ef7fab);
  color: #fff;
  padding: 0.7rem 1.2rem;
}

@media (min-width: 980px) {
  .has-sidebar .cr-grid {
    grid-template-columns: minmax(0, 2.3fr) minmax(260px, 0.7fr);
  }
}

/* BLOSSOM-CHECK-101 */
body { outline: 4px solid #ff4fa3 !important; }