/** Shopify CDN: Minification failed

Line 475:11 Expected identifier but found "3\\\\"
Line 501:14 Expected identifier but found "20\\\\"
Line 515:15 Unexpected "/"
Line 529:20 Unexpected "/"

**/
/*
 * Base stylesheet for Soie Studio theme.
 *
 * This file defines a lightweight set of utility classes inspired by utility
 * frameworks like Tailwind. The goal is to provide semantic class names used
 * throughout the theme templates without relying on external dependencies. It
 * also imports the free fonts Playfair Display (serif) and Inter (sans) via
 * Google Fonts and sets sensible defaults for headings, body text, colors and
 * spacing. The design draws on minimalist principles—ample whitespace,
 * streamlined colour palettes and oversized typography【248803622531450†L53-L60】.
 */

/* Import fonts - Using Inter for minimalist luxury aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap');

/* CSS variables for colours and spacing */
:root {
  --color-background: #ffffff;
  --color-text: #000000;
  --color-accent: #000000;
  --color-muted: #666666;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --max-width: 1200px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  font-weight: 200;
  letter-spacing: 0.02em;
}
p {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Typography utility */
.font-display {
  font-family: 'Inter', sans-serif;
}
.font-sans {
  font-family: 'Inter', sans-serif;
}
.font-thin {
  font-weight: 100;
}
.font-extralight {
  font-weight: 200;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.uppercase {
  text-transform: uppercase;
}
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.02em\] { letter-spacing: 0.02em; }
.leading-relaxed { line-height: 1.6; }

/* Container */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-4 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-3 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-2 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.py-16 { padding-top: var(--spacing-xl) * 2; padding-bottom: var(--spacing-xl) * 2; }
.py-12 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-8 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: var(--spacing-lg); }
.p-8 { padding: 2rem; }

/* Responsive padding utilities */
@media (min-width: 768px) {
  .md\:p-3 { padding: 0.75rem; }
  .md\:p-6 { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:p-4 { padding: 1rem; }
  .lg\:p-8 { padding: 2rem; }
}
.mb-8 { margin-bottom: var(--spacing-xl); }
.mb-6 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-1 { margin-bottom: var(--spacing-xs); }

/* Flex utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-2 { gap: var(--spacing-sm); }
.gap-4 { gap: var(--spacing-md); }
.gap-6 { gap: var(--spacing-lg); }
.gap-8 { gap: var(--spacing-xl); }
.space-y-2 > * + * { margin-top: var(--spacing-sm); }
.space-y-4 > * + * { margin-top: var(--spacing-md); }
.space-y-6 > * + * { margin-top: var(--spacing-lg); }
.space-y-8 > * + * { margin-top: var(--spacing-xl); }

/* Grid utilities */
.grid { display: grid; gap: var(--spacing-lg); }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Media queries for responsive grid */
@media (min-width: 640px) {
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:w-1\/4 { width: 25%; }
  .md\:w-3\/4 { width: 75%; }
  .md\:pl-12 { padding-left: calc(var(--spacing-lg) * 2); }
  .md\:h-96 { height: 24rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:sticky { position: sticky; }
  .lg\:top-24 { top: 6rem; }
}

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.z-50 { z-index: 50; }
.z-40 { z-index: 40; }
.z-10 { z-index: 10; }

/* Display & overflow */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }

/* Backgrounds & colors */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e5e5; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-800 { background-color: #1f2937; }
.bg-opacity-50 { background-color: rgba(0,0,0,0.5); }
.bg-opacity-95 { background-color: rgba(255,255,255,0.95); }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-800 { color: #1f2937; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-green-600 { color: #16a34a; }

/* Borders */
.border { border-width: 1px; border-style: solid; border-color: #d1d5db; }
.border-t { border-top-width: 1px; border-style: solid; border-color: #e5e5e5; }
.border-b { border-bottom-width: 1px; border-style: solid; border-color: #e5e5e5; }
.border-gray-200 { border-color: #e5e5e5; }
.border-gray-300 { border-color: #d1d5db; }

/* Shadows */
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.drop-shadow { filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)); }

/* Ultra-subtle text shadows - nearly invisible, just for edge definition */
.text-shadow-subtle {
  text-shadow: 
    0 1px 1px rgba(0, 0, 0, 0.2);
}

.text-shadow-subtle-sm {
  text-shadow: 
    0 1px 1px rgba(0, 0, 0, 0.15);
}

/* Rounded corners */
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }

/* Buttons */
button, .button {
  cursor: pointer;
  border: none;
}
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:text-black:hover { color: #000000; }

/* Modals */
#SearchModal, #SizeGuideModal {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Show/hide for JS toggles (populated by theme.js) */
.open {
  display: block !important;
  transform: translateX(0) !important;
  opacity: 1 !important;
}

/* High-fashion specific styles */
.hero-wrapper {
  padding: 20px;
  background-color: #ffffff;
}

.hero-container {
  height: calc(100vh - 40px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.hero-title {
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  animation: fadeInUp 1.2s ease;
}

.hero-image {
  animation: fadeIn 1.5s ease;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-video {
  animation: fadeIn 1.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Split section videos */
.split-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Maintain aspect ratio for video containers */
.video-content {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-content img,
.video-content video {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-content:hover img,
.video-content:hover video {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .video-content {
    aspect-ratio: auto;
    height: 100%;
  }
}

/* Scroll animations */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery styles */
.gallery-item {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Coming soon form */
.newsletter-form input {
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Header animations */
.soie-header {
  transition: transform 0.3s ease;
}

.soie-header.hidden {
  transform: translateY(-100%);
}

/* Mobile menu */
.mobile-menu {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Navigation links */
.nav-link {
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Aspect ratios */
.aspect-\\[3\\/4\\] {
  aspect-ratio: 3/4;
}

/* Transitions */
.transition-all {
  transition: all 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease;
}

/* Filters */
.filter {
  filter: var(--tw-filter);
}

.grayscale-\\[20\\%\\] {
  filter: grayscale(20%);
}

.grayscale-0 {
  filter: grayscale(0);
}

/* Backdrop blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Border utilities */
.border-white\\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.border-gray-100 {
  border-color: #f3f4f6;
}

/* Outline */
.outline-none {
  outline: none;
}

/* Placeholder */
.placeholder-white\\/50::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive text sizes */
@media (min-width: 768px) {
  .md\\:text-3xl { font-size: 1.875rem; }
  .md\\:text-4xl { font-size: 2.25rem; }
  .md\\:text-5xl { font-size: 3rem; }
  .md\\:text-6xl { font-size: 3.75rem; }
  .md\\:text-7xl { font-size: 4.5rem; }
}

/* Hero banner responsive adjustments */
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 15px;
  }
  .hero-container {
    height: calc(100vh - 30px);
  }
}

/* Coming Soon Container Styles */
.coming-soon-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px 40px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.coming-soon-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.4;
}

.email-input-container {
  display: flex;
  max-width: 495px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background: white;
  height: 50px;
}

.email-input-container input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  outline: none;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.email-input-container input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.email-input-container button {
  padding: 14px 35px;
  background: #000000;
  color: white;
  border: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.email-input-container button:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* Mobile adjustments for Coming Soon Container */
@media (max-width: 768px) {
  .coming-soon-container {
    padding: 40px 25px;
    max-width: calc(100% - 30px);
  }
  
  .coming-soon-title {
    font-size: 20px;
  }
  
  .coming-soon-subtitle {
    font-size: 13px;
  }
  
  .email-input-container {
    flex-direction: column;
    height: auto;
  }
  
  .email-input-container input {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  
  .email-input-container button {
    padding: 15px;
  }
}

/* Max widths */
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Grid gaps */
.gap-2 { gap: 0.5rem; }
.gap-12 { gap: 3rem; }

/* Responsive padding */
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 768px) {
  .md\\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

/* Animate bounce */
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Rich text styling for blog and page content */
.prose { font-family: 'Inter', sans-serif; }
.prose h1, .prose h2, .prose h3 { font-family: 'Playfair Display', serif; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1rem; }
.prose a { text-decoration: underline; }

/* Coming Soon Styling */
.coming-soon-outline {
  animation: fadeIn 1.5s ease;
  font-weight: 100;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  -webkit-text-fill-color: transparent;
  text-stroke: 1px rgba(255, 255, 255, 0.8);
  text-fill-color: transparent;
}

@supports not (-webkit-text-stroke: 1px white) {
  .coming-soon-outline {
    -webkit-text-fill-color: white;
    text-fill-color: white;
    opacity: 0.9;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-newsletter-form input {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  border-radius: 0;
}

.hero-newsletter-form input::placeholder {
  font-style: normal;
  opacity: 0.5;
}

.hero-newsletter-form button {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  border-radius: 0;
}

.hero-newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Remove gap between input and button on desktop */
@media (min-width: 640px) {
  .hero-newsletter-form input {
    border-right: none;
  }
}

/* Accessibility: hide but keep for screen readers */
.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;
}