/** Shopify CDN: Minification failed

Line 279:18 Unexpected "{"
Line 279:27 Expected ":"
Line 280:18 Unexpected "{"
Line 280:27 Expected ":"
Line 281:18 Unexpected "{"
Line 281:27 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bulk-order-form (INDEX:5) */
/* ============================================================
   BULK ORDER FORM — Section Styles
   Scoped to .bulk-order-section to avoid theme conflicts
   ============================================================ */

.bulk-order-section {
  width: 100%;
  box-sizing: border-box;
}

.bulk-order-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ---------- Header ---------- */
.bulk-order-header {
  margin-bottom: 10px;
}

.bulk-order-heading {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-top: 20px;
}

.bulk-order-subtitle {
  font-size: 16px;
  color: #555555;
  margin: 10px 0 0;
  padding: 0;
  line-height: 1.5;
}

/* ---------- Form Wrapper ---------- */
.bulk-order-form-wrapper {
  background-color: #f3f3f3;
  border-radius: 0;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  box-shadow: none;
}

/* ---------- Status Message ---------- */
.bulk-form-message {
  display: none;
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.bulk-form-message.bulk-form-message--success {
  display: block;
  background-color: #edf7ed;
  color: #1a6b1a;
  border: 1px solid #b0d9b0;
}

.bulk-form-message.bulk-form-message--error {
  display: block;
  background-color: #fdecea;
  color: #b91c1c;
  border: 1px solid #f5c6c6;
}

/* ---------- Form Layout ---------- */
.bulk-order-form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.bulk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}

.bulk-form-row--full {
  grid-template-columns: 1fr;
}

/* ---------- Form Groups ---------- */
.bulk-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bulk-form-group--full {
  width: 100%;
}

/* ---------- Labels ---------- */
.bulk-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  line-height: 1.4;
  display: block;
}

.bulk-required {
  color: #e02020;
  margin-left: 2px;
}

/* ---------- Inputs ---------- */
.bulk-form-input,
.bulk-form-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  background-color: #f3f3f3;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 15px;
  color: #222222;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.bulk-form-input {
  height: 50px;
}

.bulk-form-textarea {
  height: 140px;
  resize: none;
  line-height: 1.5;
}

.bulk-form-input::placeholder,
.bulk-form-textarea::placeholder {
  color: #aaaaaa;
  font-size: 14px;
}

.bulk-form-input:focus,
.bulk-form-textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* Input error state */
.bulk-form-input.bulk-input--error,
.bulk-form-textarea.bulk-input--error {
  border-color: #e02020;
  box-shadow: 0 0 0 2px rgba(224, 32, 32, 0.08);
}

/* ---------- Field Errors ---------- */
.bulk-field-error {
  font-size: 12px;
  color: #e02020;
  font-weight: 500;
  min-height: 16px;
  line-height: 1.3;
  display: block;
}

/* ---------- Submit Button ---------- */
.bulk-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.bulk-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #f3f3f3;
  border: none;
  border-radius: 999px;
  height: 48px;
  width: 150px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.1s ease;
  position: relative;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.bulk-submit-btn:hover:not(:disabled) {
  background-color: #222222;
}

.bulk-submit-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.bulk-submit-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}

.bulk-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.bulk-submit-btn--submitting {
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 767px) {
  .bulk-order-heading {
    font-size: 30px;
  }

  .bulk-order-subtitle {
    font-size: 15px;
  }

  .bulk-order-form-wrapper {
    padding: 8px 20px;
  }

  .bulk-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bulk-form-row--full {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bulk-order-heading {
    font-size: 36px;
  }

  .bulk-order-form-wrapper {
    padding: 36px 30px;
  }
}
/* END_SECTION:bulk-order-form */

/* START_SECTION:collection-grid (INDEX:15) */
/* ─── Reset ──────────────────────────────────────────── */
#collection-grid-{{ section.id }} *,
#collection-grid-{{ section.id }} *::before,
#collection-grid-{{ section.id }} *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Section ────────────────────────────────────────── */
.cg-section {
  padding-top:    var(--cg-pt, 60px);
  padding-bottom: var(--cg-pb, 60px);
  padding-left:   var(--cg-outer-gutter, 40px);
  padding-right:  var(--cg-outer-gutter, 40px);
  max-width:  var(--cg-max-width, 1800px);
  margin-inline: auto;
}

/* ─── Header ─────────────────────────────────────────── */
.cg-header {
  margin-bottom: 32px;
}
.cg-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--color-foreground, #1a1a1a);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cg-subheading {
  font-size: 15px;
  color: var(--color-foreground-muted, #6b6b6b);
  margin-top: 6px;
  line-height: 1.5;
}

/* ─── Grid ───────────────────────────────────────────── */
.cg-grid {
  display: grid;
  gap: var(--cg-gap, 20px);
  grid-template-columns: repeat(var(--cg-cols-mobile, 2), minmax(0, 1fr));
}

@media (min-width: 768px) {
  .cg-grid {
    grid-template-columns: repeat(var(--cg-cols-desktop, 4), minmax(0, 1fr));
  }
}

/* ─── Card ───────────────────────────────────────────── */
.cg-card {
  display: block;
  text-decoration: none;
  background: var(--color-background, #ffffff);
  border: 0.5px solid var(--color-border, rgba(0,0,0,0.10));
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 200ms ease,
    box-shadow   200ms ease,
    transform    200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.cg-card:hover {
  border-color: var(--color-border-hover, rgba(0,0,0,0.20));
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cg-card:focus-visible {
  outline: 2px solid var(--color-accent, #0066cc);
  outline-offset: 2px;
}

/* ─── Image wrapper ──────────────────────────────────── */
.cg-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-background-secondary, #f5f5f5);
}

/* ─── Image ──────────────────────────────────────────── */
.cg-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter    400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, filter;
}
.cg-card:hover .cg-card__img {
  transform: scale(1.06);
  filter: blur(8px) brightness(0.82);
}

/* Placeholder */
.cg-card__img--placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background-secondary, #f0f0f0);
}
.cg-placeholder-svg {
  width: 48px;
  height: 48px;
  opacity: 0.25;
}

/* ─── Shine ──────────────────────────────────────────── */
.cg-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.cg-card:hover .cg-card__shine { opacity: 1; }

/* ─── Overlay ────────────────────────────────────────── */
.cg-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* ─── Glass pill ─────────────────────────────────────── */
.cg-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border: 0.5px solid rgba(255,255,255,0.42);
  border-radius: 100px;
  padding: 9px 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.28);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity   260ms ease 50ms,
    transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1) 50ms;
}
.cg-card__pill svg {
  flex-shrink: 0;
  transform: translateX(-2px);
  transition: transform 200ms ease;
}
.cg-card:hover .cg-card__pill {
  opacity: 1;
  transform: scale(1);
}
.cg-card:hover .cg-card__pill svg {
  transform: translateX(2px);
}

/* ─── Card footer ────────────────────────────────────── */
.cg-card__footer {
  padding: 12px 14px 14px;
}
.cg-card__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-foreground, #1a1a1a);
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cg-card__count {
  font-size: 12px;
  color: var(--color-foreground-muted, #6b6b6b);
  margin-top: 4px;
}

/* ─── Empty state ────────────────────────────────────── */
.cg-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--color-foreground-muted, #6b6b6b);
  font-size: 15px;
  border: 1px dashed var(--color-border, rgba(0,0,0,0.15));
  border-radius: 16px;
}

/* ─── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cg-card,
  .cg-card__img,
  .cg-card__pill,
  .cg-card__pill svg,
  .cg-card__shine { transition: none !important; }

  .cg-card:hover .cg-card__img {
    transform: none;
    filter: brightness(0.82);
  }
  .cg-card:hover .cg-card__pill {
    opacity: 1;
    transform: none;
  }
}
/* END_SECTION:collection-grid */