/** Shopify CDN: Minification failed

Line 29:18 Expected identifier but found whitespace
Line 29:20 Unexpected "{"
Line 29:30 Expected ":"
Line 30:20 Expected identifier but found whitespace
Line 30:22 Unexpected "{"
Line 30:32 Expected ":"
Line 31:17 Expected identifier but found whitespace
Line 31:19 Unexpected "{"
Line 31:29 Expected ":"
Line 32:15 Expected identifier but found whitespace
... and 27 more hidden warnings

**/
/* ==========================================================================
   Bumble & Bloom — Airabella Theme Stylesheet
   Responsive warm florist aesthetic.
   ========================================================================== */

/* ── Reset / Base ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: {{ settings.color_primary }};
  --color-secondary: {{ settings.color_secondary }};
  --color-accent: {{ settings.color_accent }};
  --color-text: {{ settings.color_text }};
  --color-background: {{ settings.color_background }};
  --color-card: {{ settings.color_card }};
  --color-heading: {{ settings.color_primary }};
  --font-heading: {{ settings.font_heading }};
  --font-body: {{ settings.font_body }};
  --container-max: {{ settings.container_max_width }}px;
  --grid-columns: {{ settings.grid_columns }};
  --grid-columns-mobile: {{ settings.grid_columns_mobile }};
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  z-index: 1000;
  transition: left 0.2s;
}

.skip-link:focus {
  left: 0;
}

/* ── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1.3;
  min-height: 44px;
}

.btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ── Header / Navigation ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-card);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header-logo a {
  display: inline-block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.header-actions a {
  color: var(--color-text);
  padding: 0.5rem;
}

/* ── Product Cards Grid ────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.product-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
  transform: scale(1.05);
}

.product-card .card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-heading);
}

.product-card .card-title a {
  color: inherit;
}

.product-card .card-title a:hover {
  color: var(--color-accent);
}

.product-card .card-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-card .card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Cards (generic) ───────────────────────────────────────────────────── */
.card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* ── Sections ──────────────────────────────────────────────────────────── */
.section {
  padding: 4rem 0;
}

.section--hero {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-background) 100%);
}

.section--dark {
  background: var(--color-primary);
  color: #fff;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-card);
  border-top: 3px solid var(--color-secondary);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--color-text);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-links a {
  color: var(--color-text);
  font-size: 1.25rem;
  padding: 0.5rem;
  transition: color var(--transition);
}

.social-links a:hover {
  color: var(--color-primary);
}

.footer-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-form input[type="email"] {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-background);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.7;
}

/* ── Icon helper ───────────────────────────────────────────────────────── */
.icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --grid-columns: var(--grid-columns-mobile);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .nav-list {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section--hero {
    padding: 4rem 0;
  }

  .footer-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Print ───────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .mobile-menu-toggle { display: none; }
  body { background: #fff; color: #000; }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
