/** Shopify CDN: Minification failed

Line 13:0 Unexpected "{"
Line 13:1 Expected identifier but found "%"
Line 15:15 Expected identifier but found whitespace
Line 15:17 Unexpected "{"
Line 15:26 Expected ":"
Line 17:0 Unexpected "{"
Line 17:1 Expected identifier but found "%"

**/
/* assets/theme.css - COMPLETE FILE */
{% style %}
  .hero {
    --hero-pos: {{ section.settings.image_position }};
  }
{% endstyle %}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Typography - Fluid Scaling */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #2c2c2c;
    background: #faf9f7;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Prevent horizontal scroll on mobile */
body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Images - Always responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    transition: padding 0.3s ease;
    min-height: 80px;
}

.logo {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.3rem;
    color: #2c2c2c;
    flex-shrink: 0;
    z-index: 1001;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo img {
    max-height: clamp(35px, 5vw, 50px);
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    letter-spacing: 0.1rem;
    transition: opacity 0.3s;
    text-transform: uppercase;
    font-weight: 300;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Hero Section - Fluid Responsive */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(250, 249, 247, 0.3), rgba(250, 249, 247, 0.3));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: 80px;
    padding: 2rem 5%;
}

/* Ensure background image stays centered on all devices */
@supports (object-fit: cover) {
    .hero {
        background-size: cover;
        background-position: center center;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color:rgb(255, 255, 255);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    letter-spacing: 0.15rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    padding: 0.5rem 2.5rem;
    background:rgb(255, 255, 255);
    color:hsl(0, 0.00%, 3.50%);
    text-decoration: none;
    border: 1px solid #2c2c2c;
    letter-spacing: 0.15rem;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    text-transform: uppercase;
    transition: all 0.4s ease;
    font-weight: 350;
    margin-top: 80px;
}

.cta-button:hover {
    background:rgb(197, 193, 193);
    color:rgb(255, 255, 255);
}
/* ===============================================
   HERO SECTION — FULL IMAGE, MINIMAL CROPPING
   =============================================== */
.hero {
  background-size: cover;                      /* keep immersive feel */
  background-repeat: no-repeat;
  background-position: center;
  height: 95vh;                                /* near fullscreen */
  max-height: 1200px;                          /* don’t stretch too tall */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Ensure proper focal point from settings */
.hero {
  background-position: var(--hero-pos, center center) !important;
}

/* Overlay content centering */
.hero .hero-content {
  text-align: center;
  color: #2b2b2b;
  max-width: 80%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero {
    height: 70vh;                  /* display more of the dress on mobile */
    background-position: center top !important;
  }

  .hero .hero-content h1 {
    font-size: 3rem;
  }

  .hero .hero-content p {
    font-size: 1.2rem;
  }
}

/* ===================================
   COLLECTIONS GRID - FIXED FOR EVEN DISTRIBUTION
   Default: 2 columns for most screens
   =================================== */

.collections {
    padding: clamp(4rem, 10vw, 8rem) 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 3rem);
}

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: linear-gradient(135deg, #e8e6e3 0%, #d4d2cf 100%);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.collection-card:hover .collection-overlay {
    transform: translateY(0);
    opacity: 1;
}

.collection-overlay h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
}

.collection-overlay p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    letter-spacing: 0.05rem;
    font-weight: 300;
}

.collection-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Philosophy Section */
.philosophy {
    padding: clamp(4rem, 10vw, 8rem) clamp(5%, 10vw, 10%);
    text-align: center;
    background: white;
}

.philosophy h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.15rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.philosophy p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    letter-spacing: 0.08rem;
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.philosophy-author {
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #8a8a8a;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    padding: clamp(4rem, 10vw, 8rem) clamp(5%, 10vw, 10%);
    background: #faf9f7;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.feature p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: #faf9f7;
    padding: clamp(2rem, 5vw, 4rem) 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #faf9f7;
    text-decoration: none;
    letter-spacing: 0.1rem;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    transition: opacity 0.3s;
    font-weight: 300;
}

.footer-links a:hover {
    opacity: 0.6;
}

.social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social a {
    color: #faf9f7;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-decoration: none;
    transition: opacity 0.3s;
}

.social a:hover {
    opacity: 0.6;
}

.copyright {
    margin-top: 2rem;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    color: #b0b0b0;
    letter-spacing: 0.05rem;
    font-weight: 300;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Extra Large Screens (1800px+) - 3 columns */
@media (min-width: 1800px) {
    .collections {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Screens (1400px - 1799px) - 3 columns */
@media (min-width: 1400px) and (max-width: 1799px) {
    .collections {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium-Large Screens (1100px - 1399px) - 2 columns */
@media (min-width: 1100px) and (max-width: 1399px) {
    .collections {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets and Below (1024px) */
@media (max-width: 1024px) {
    .nav {
        padding: 1.5rem 3%;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .collections {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Landscape & Tablets (768px) */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 4%;
        min-height: 70px;
    }
    
    .logo {
        font-size: 1.3rem;
        letter-spacing: 0.2rem;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .nav-links {
        gap: 1.25rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.05rem;
    }
    
    .hero {
        min-height: 90vh;
        margin-top: 70px;
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .hero h1 br {
        display: none;
    }
    
    .hero p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .collections {
        grid-template-columns: repeat(2, 1fr);
        padding: 4rem 5%;
        gap: 2rem;
    }
    
    .collection-overlay {
        padding: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        padding: 4rem 5%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Portrait (480px and below) - 1 column */
@media (max-width: 480px) {
    .nav {
        padding: 0.875rem 4%;
        min-height: 65px;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 0.15rem;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 0.05rem;
    }
    
    .hero {
        min-height: 100vh;
        margin-top: 65px;
        padding: 1.5rem 4%;
        /* FILL SCREEN but show the woman - adjust X position to show subject */
        background-position: 65% center;
        background-size: cover;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: auto;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        letter-spacing: 0.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        letter-spacing: 0.05rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 0.1rem;
    }
    
    .collections {
        grid-template-columns: 1fr !important;
        padding: 3rem 4%;
        gap: 1.5rem;
    }
    
    .collection-card {
        aspect-ratio: 2/3;
    }
    
    .collection-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    }
    
    .philosophy {
        padding: 3rem 5%;
    }
    
    .features {
        padding: 3rem 5%;
        gap: 2rem;
    }
    
    footer {
        padding: 2rem 5%;
    }
}

/* Very Small Devices (375px and below) */
@media (max-width: 375px) {
    .hero {
        min-height: 100vh;
        background-size: cover;
        /* Shift focus more to the right to show the woman on small screens */
        background-position: 70% center;
    }
}

/* Very Small Devices (320px) */
@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    
    .nav {
        padding: 0.75rem 3%;
    }
    
    .logo {
        font-size: 1rem;
        letter-spacing: 0.2rem;
    }
    
    .nav-links {
        font-size: 0.7rem;
        gap: 0.5rem;
    }
    
    .collections {
        padding: 2rem 3%;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .collection-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .collection-card img {
        transform: none;
    }
    
    .nav-links a,
    .cta-button,
    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        min-height: auto;
        padding: 4rem 5%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}