/** Shopify CDN: Minification failed

Line 41:0 Unexpected "}"

**/
/* =============================================
   Casa Mango - Complete Stylesheet
   Clean white, Barker & Stonehouse inspired
   ============================================= */

:root {
  --cm-primary: #1a1a1a;
  --cm-accent: #c8a882;
  --cm-light: #f7f5f2;
  --cm-white: #ffffff;
  --cm-text: #1a1a1a;
  --cm-text-light: #666;
  --cm-border: #e8e0d8;
  --cm-radius: 4px;
  --cm-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", Arial, sans-serif;
  color: var(--cm-text);
  background: #fff;
  margin: 0;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: #5c7a3e !important;
  color: #fff !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  width: 100% !important;
  display: block !important;
}
}
.announcement-bar__message,
.announcement-bar a {
  color: #fff !important;
}

/* ---- HERO ---- */
.cm-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cm-hero-img-wrap {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.cm-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cm-hero-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.cm-hero-title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  color: #fff !important;
}

.cm-hero-sub {
  font-size: 18px;
  margin: 0 0 24px;
  opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.cm-hero-btn {
  display: inline-block;
  background: #fff;
  color: var(--cm-primary);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.cm-hero-btn:hover {
  background: var(--cm-accent);
  color: #fff;
}

/* ---- CATEGORY GRID ---- */
.cm-categories-wrap {
  padding: 0;
  background: #fff;
}

.cm-cat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: #e8e0d8;
}

.cm-cat-item {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.cm-cat-link {
  display: block;
  text-decoration: none;
  position: relative;
}

.cm-cat-img-wrap {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.cm-cat-item--large .cm-cat-img-wrap {
  aspect-ratio: 1/1;
}

.cm-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cm-cat-item:hover .cm-cat-img-wrap img {
  transform: scale(1.04);
}

.cm-cat-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.cm-cat-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  font-family: "Georgia", serif;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ---- TOP PICKS ---- */
.cm-toppicks-wrap {
  padding: 48px 24px;
  background: var(--cm-light);
}

.cm-toppicks-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--cm-primary);
  margin: 0 0 24px;
}

.cm-toppicks-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cm-pick-item {
  background: #fff;
  border-radius: var(--cm-radius);
}

.cm-pick-link {
  display: block;
  text-decoration: none;
  color: var(--cm-text);
}

.cm-pick-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cm-light);
}

.cm-pick-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cm-pick-item:hover .cm-pick-img-wrap img {
  transform: scale(1.04);
}

.cm-pick-meta {
  padding: 12px;
}

.cm-pick-title {
  font-size: 13px;
  margin: 0 0 6px;
  color: var(--cm-text);
  line-height: 1.3;
  font-weight: 500;
}

.cm-pick-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--cm-primary);
  margin: 0;
}

/* ---- NEWSLETTER ---- */
.cm-newsletter {
  background: var(--cm-primary);
  padding: 48px 24px;
  text-align: center;
  color: #fff;
}

.cm-newsletter h2 {
  font-size: 24px;
  color: #fff !important;
  margin: 0 0 8px;
}

.cm-newsletter p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0 0 24px;
}

.cm-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.cm-newsletter__form input {
  padding: 14px 16px;
  border: none;
  font-size: 14px;
  width: 100%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.cm-newsletter__form input::placeholder { color: rgba(255,255,255,0.6); }

.cm-btn--primary {
  display: inline-block;
  background: var(--cm-accent);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.cm-btn--primary:hover { opacity: 0.85; }

/* ---- FOOTER ---- */
.footer {
  background: var(--cm-primary) !important;
  color: rgba(255,255,255,0.8) !important;
}

.footer a { color: rgba(255,255,255,0.8) !important; }
.footer a:hover { color: #fff !important; }
.footer__heading { color: #fff !important; }

/* ---- RESPONSIVE ---- */
@media (min-width: 750px) {
  .cm-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cm-toppicks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cm-newsletter__form { flex-direction: row; }
  .cm-hero-title { font-size: 56px; }
}

@media (min-width: 1100px) {
  .cm-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cm-toppicks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 749px) {
  .cm-hero-content {
    left: 24px;
    right: 24px;
    max-width: 100%;
  }
  .cm-hero-title { font-size: 28px; }
  .cm-hero-sub { font-size: 15px; }
}

/* ---- FOCUS ---- */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--cm-accent);
  outline-offset: 2px;
}