/** Shopify CDN: Minification failed

Line 171:29 Expected identifier but found whitespace
Line 171:31 Unexpected "{"
Line 171:41 Expected ":"
Line 172:18 Expected identifier but found whitespace
Line 172:20 Unexpected "{"
Line 172:30 Expected ":"
Line 173:32 Expected identifier but found whitespace
Line 173:34 Unexpected "{"
Line 173:44 Expected ":"

**/
/* 
  NEIWAI Prototype Styling 
  This file implements exact Tailwind-style utility classes used in the prototype 
  to ensure visual parity while integrating with Shopify's CSS variables.
*/

:root {
  /* Prototype Colors */
  --neiwai-color-ink: #1a1714;
  --neiwai-color-taupe: #8e8780;
  --neiwai-color-cream: #f5f5f5;
  --neiwai-color-charcoal: #2c2824;
  --neiwai-color-charcoal-80: rgba(44, 40, 36, 0.8);
  --neiwai-color-charcoal-40: rgba(44, 40, 36, 0.4);
  
  /* Prototype Typography */
  --neiwai-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --neiwai-font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

/* Base Utility Classes mapped from Tailwind */

/* Typography */
.font-display { font-family: var(--neiwai-font-display); }
.font-body { font-family: var(--neiwai-font-body); }
.font-light { font-weight: 300; }
.italic { font-style: italic; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.36em\] { letter-spacing: 0.36em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.1\] { line-height: 1.1; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

/* Colors */
.text-ink { color: var(--neiwai-color-ink); }
.text-taupe { color: var(--neiwai-color-taupe); }
.text-cream { color: var(--neiwai-color-cream); }
.text-cream\/80 { color: rgba(245, 245, 245, 0.8); }
.text-cream\/90 { color: rgba(245, 245, 245, 0.9); }
.bg-cream { background-color: var(--neiwai-color-cream); }
.bg-charcoal { background-color: var(--neiwai-color-charcoal); }
.bg-taupe\/10 { background-color: rgba(142, 135, 128, 0.1); }
.opacity-50 { opacity: 0.5; }

/* Layout & Flexbox */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.h-screen { height: 100vh; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.pb-0\.5 { padding-bottom: 0.125rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-24 { padding-bottom: 6rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Sizing & Constraints */
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[1440px\] { max-width: 1440px; }
.max-w-\[1280px\] { max-width: 1280px; }
.min-h-\[600px\] { min-height: 600px; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }
.overflow-hidden { overflow: hidden; }

/* Effects & Transitions */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-charcoal\/80 { --tw-gradient-from: var(--neiwai-color-charcoal-80) var(--tw-gradient-from-position); --tw-gradient-to: rgba(44, 40, 36, 0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-5\% { --tw-gradient-from-position: 5%; }
.via-charcoal\/40 { --tw-gradient-to: rgba(44, 40, 36, 0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), rgba(44, 40, 36, 0.4) 30%, var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent var(--tw-gradient-to-position); }

.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-700 { transition-duration: 700ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Interactive Hover States */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.hover\:text-cream:hover { color: var(--neiwai-color-cream); }
.group:hover .group-hover\:border-ink { border-color: var(--neiwai-color-ink); }

/* Responsive Overrides (lg: and md:) */
@media (min-width: 640px) {
  .sm\:text-\[48px\] { font-size: 48px; }
}

@media (min-width: 1024px) {
  .lg\:min-h-\[100vh\] { min-height: 100vh; }
  .lg\:pb-32 { padding-bottom: 8rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .lg\:text-\[20px\] { font-size: 20px; }
  .lg\:text-\[32px\] { font-size: 32px; }
  .lg\:text-\[36px\] { font-size: 36px; }
  .lg\:text-\[40px\] { font-size: 40px; }
  .lg\:text-\[64px\] { font-size: 64px; }
  .lg\:whitespace-nowrap { white-space: nowrap; }
}

@media (min-width: 1280px) {
  .xl\:text-\[72px\] { font-size: 72px; }
}

/* Specific Utilities found in extraction */
.text-\[36px\] { font-size: 36px; }
.text-\[14px\] { font-size: 14px; }
.text-\[17px\] { font-size: 17px; }
.text-\[12px\] { font-size: 12px; }
.text-\[18px\] { font-size: 18px; }
.text-\[15px\] { font-size: 15px; }
.text-\[13px\] { font-size: 13px; }
.text-\[24px\] { font-size: 24px; }
.text-\[28px\] { font-size: 28px; }

.border-b { border-bottom-width: 1px; }
.border-ink\/20 { border-color: rgba(26, 23, 20, 0.2); }
.border-ink\/10 { border-color: rgba(26, 23, 20, 0.1); }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

/* Custom Overrides for Shopify Settings Integration */
.bg-cream { background-color: {{ settings.colors_background_1 | default: '#f5f5f5' }}; }
.text-ink { color: {{ settings.colors_text | default: '#1a1714' }}; }
.bg-charcoal { background-color: {{ settings.colors_background_2 | default: '#2c2824' }}; }
