@import url('https://fonts.cdnfonts.com/css/pp-neue-montreal');


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

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    /* Prevent horizontal scroll on html level too */
}

body {
    font-family: 'Manrope', sans-serif;
    background: #FAFAFA;
    min-height: 100vh;
    color: #1A1A1A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Fallback */
    overflow-x: clip;
    /* Modern browsers */
    position: relative;
    width: 100%;
}


.gradient-text {
    background: linear-gradient(135deg, #1A1A1A 0%, #666 50%, #1A1A1A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 8s linear infinite;
    font-weight: 500;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


.navbar {
    background: transparent !important;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    padding: 1.5rem 0;
    position: fixed;
    /* Sticky on all pages */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* High z-index */
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    /* Shrink slightly on scroll */
}

/* Ensure text is black when scrolled (and usually always, based on new design) */
.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .mobile-menu-btn {
    color: #1A1A1A !important;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'PP Neue Montreal', 'Instrument Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

.nav-links a:hover,
.nav-links a.active {
    color: #1A1A1A;
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.8);
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}


.page-title {
    margin-bottom: 4rem;
}

.page-title h1 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-title p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
}


.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #1A1A1A;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}


.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #1A1A1A;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}


.card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.section-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.checkbox.checked {
    background: #1A1A1A;
    border-color: #1A1A1A;
}

.checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.seller-info {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 2;
}

.seller-badge {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: right;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.seller-name {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: -0.01em;
    opacity: 0.8;
}

.seller-location {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    margin-top: 0.15rem;
    font-weight: 300;
    opacity: 0.7;
}

.product-content {
    padding: 2rem 2rem 2.25rem;
}

.product-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: normal;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.product-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.price {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.heart-icon {
    width: 22px;
    height: 22px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
}

.heart-icon:hover {
    color: #FF6B6B;
    transform: scale(1.1);
}

.heart-icon.favorited {
    color: #FF6B6B;
}

.buy-now-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1A1A1A;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.buy-now-btn i {
    font-size: 0.9rem;
}

.buy-now-btn:hover {
    background: #333;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-0.5px);
}

.buy-now-btn:active {
    transform: translateY(0);
    background: #000;
}

.feature-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.feature-badge.featured {
    color: #FFD700;
}

.feature-badge.top-seller {
    color: #00D4AA;
}

.feature-badge.fresh {
    color: #FFFFFF;
}

.feature-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .page-title h1 {
        font-size: 2.5rem;
    }

    .product-content {
        padding: 1.5rem 1.5rem 1.75rem;
    }
}



.features-section {
    padding: 10rem 2rem;
    background: white;
    position: relative;
    z-index: 20;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 4rem;
}

.feature-item {
    text-align: left;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: #FFFFFF;
}

.feature-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}


.story-section {
    padding: 10rem 2rem;
    background: #FAFAFA;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.story-content {
    position: relative;
}

.story-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1A1A1A;
    margin-bottom: 2rem;
    display: block;
    position: relative;
    padding-left: 3rem;
}

.story-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: #1A1A1A;
}

.story-title {
    font-family: 'Instrument Serif', serif;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 3rem;
    color: #1A1A1A;
    letter-spacing: -0.03em;
}

.story-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
    font-weight: 300;
}

.story-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 700px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-image:hover img {
    transform: scale(1.05);
}

.teen-badge {
    position: absolute;
    bottom: 3rem;
    left: -3rem;
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: rotateBadge 20s linear infinite;
    z-index: 10;
}

.teen-badge-text {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-title {
        font-size: 2.5rem;
    }

    .teen-badge {
        width: 100px;
        height: 100px;
        bottom: -1rem;
        left: -1rem;
        padding: 1rem;
    }

    .teen-badge-text {
        font-size: 0.7rem;
    }
}





.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../image.png');
    background-size: cover;
    background-position: center 75%;
    background-repeat: no-repeat;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(0px);
    animation: colorFadeIn 3s ease-out forwards;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 400px;
    background: linear-gradient(180deg,
            #FAFAFA 0%,
            #FAFAFA 100px,
            rgba(250, 250, 250, 0.85) 170px,
            rgba(250, 250, 250, 0.5) 260px,
            rgba(250, 250, 250, 0.2) 330px,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes colorFadeIn {
    0% {
        backdrop-filter: blur(0px);
        background: transparent;
    }

    100% {
        backdrop-filter: blur(1px);
        background: transparent;
    }
}

@keyframes gradientFloat {

    0%,
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05) rotate(2deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
}

.hero-flourish {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #FF6B35, #FFA07A, #FFE5D9, #FFDAB9);
    background-size: 300% 300%;
    background-position: 80% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 130, 90, 0.6)) drop-shadow(0 0 16px rgba(255, 160, 122, 0.4));
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtleShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.gradient-picker {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.gradient-btn {
    background: #2c273a;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    background: #615b99;
    transform: scale(1.05);
}

#gradient-position {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #2c273a;
    min-width: 50px;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #4a4355;
    font-weight: 450;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 1.1rem 2.5rem;
    background: #1A1A1A;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.01em;
}

.cta-primary:hover {
    background: #2C273A;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.cta-primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(4px);
}

.cta-secondary {
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #1A1A1A;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.cta-secondary:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}




.collections-section {
    padding: 8rem 0;
    background: #FAFAFA;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-large {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-flourish {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #3D4F5C 0%, #5E6F5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.15rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.collection-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 480px;
}

.collection-card.large {
    grid-row: span 1;
    height: 480px;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(2px);
    transition: all 0.5s ease;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.75) 100%);
    backdrop-filter: blur(4px);
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
    color: white;
}

.collection-name {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.collection-count {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.collection-link:hover {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    transform: translateX(4px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.collection-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.collection-link:hover i {
    transform: translate(2px, -2px);
}


.artisan-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
}

.artisan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.artisan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.artisan-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.artisan-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
}

.artisan-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(168, 203, 159, 0.3);
    transition: all 0.4s ease;
}

.artisan-card:hover .artisan-image {
    border-color: rgba(97, 91, 153, 0.5);
    transform: scale(1.05);
}

.artisan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artisan-info {
    text-align: center;
}

.artisan-name {
    font-family: 'Instrument Serif', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.artisan-craft {
    font-size: 0.85rem;
    color: #615b99;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.artisan-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}


.products-section {
    padding: 8rem 0;
    background: #FAFAFA;
    position: relative;
    z-index: 1;
}

.view-all-container {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #1A1A1A;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.view-all-btn:hover {
    background: #1A1A1A;
    color: white;
    border-color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.view-all-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}


@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-card.large {
        grid-column: span 2;
    }

    .artisan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 5rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .collections-section,
    .artisan-section,
    .products-section {
        padding: 5rem 0;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .collection-card.large {
        grid-column: span 1;
    }

    .artisan-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .collection-card {
        height: 400px;
    }

    .collection-name {
        font-size: 1.5rem;
    }
}

/* Premium UI Utilities - Wisprflow Style */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
}

.btn-peak {
    background: #111;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-family: 'Instrument Sans', sans-serif;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-peak:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #000;
}

.btn-peak-secondary {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
}

.btn-peak-secondary:hover {
    background: #fff;
    border-color: #111;
    transform: translateY(-2px);
}

.input-peak {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 16px;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 0.95rem;
}

.input-peak:focus {
    outline: none;
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.card-peak {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-peak:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    /* Top padding for fixed navbar */
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.heading-peak {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #111;
}

.text-subtle {
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive Utilities for Peak Design */

/* Horizontal Card layout that stacks on mobile (used in Artisans) */
.card-peak-horizontal {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-peak-horizontal:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

@media (max-width: 768px) {
    .card-peak-horizontal {
        grid-template-columns: 1fr;
        max-width: 450px;
        /* Constrain width on mobile for better look */
    }

    .card-content-wrapper {
        padding: 2rem;
    }

    .product-image {
        min-height: 250px !important;
    }
}

/* Global Mobile Tweaks */
@media (max-width: 768px) {

    .container,
    .page-container {
        padding: 6rem 1rem 2rem 1rem !important;
        /* Reduce side padding, keep top for navbar */
    }

    .heading-peak {
        font-size: 2rem !important;
        /* Scale down varied heading sizes */
    }

    .page-title h1 {
        font-size: 2.5rem !important;
    }

    .navbar {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.95) !important;
        /* Ensure readable background on mobile */
    }
}

/* Mobile Menu Styling */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1A1A1A;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1A1A1A;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu-btn:hover {
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-link {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-link:hover {
    color: #666;
}

.mobile-link.active {
    color: #1A1A1A;
    position: relative;
}

.mobile-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1A1A1A;
    border-radius: 2px;
}

.mobile-menu-overlay.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for links */
.mobile-menu-overlay.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-link:nth-child(5) {
    transition-delay: 0.3s;
}

@media (max-width: 900px) {
    .nav-links.desktop-only {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Override previous incorrect nav override checks if any exist */
    .navbar-content {
        flex-direction: row !important;
        /* Keep logo and burger in one line */
        justify-content: space-between !important;
    }
}

@media (max-width: 768px) {

    .navbar {
        position: fixed;
        z-index: 1000;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        padding: 1rem 0;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    }

    .navbar-content {
        padding: 0 1.5rem;
    }

    .logo {
        color: #1A1A1A !important;
        text-shadow: none !important;
        font-size: 1.5rem;
    }

    .mobile-menu-btn,
    .mobile-menu-btn i {
        color: #1A1A1A !important;
        text-shadow: none !important;
        cursor: pointer;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 8rem 1.5rem 4rem;
        align-items: center;
        justify-content: center;
    }

    .hero-gradient {
        background-image: url('../assets/mobile-hero-bg.jpg');
        background-size: cover;
        background-position: center -80px;
    }

    .hero-gradient::before {
        background: rgba(0, 0, 0, 0.15);
    }

    .hero-content {
        z-index: 10;
        width: 100%;
        padding: 0;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-flourish {
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
    }

    .hero-title {
        color: #1A1A1A !important;
        font-size: clamp(2rem, 8vw, 2.75rem);
        text-shadow: 0 2px 20px rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 1.25rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        color: #444 !important;
        text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }


    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
        padding: 0 0.5rem;
    }

    .cta-primary {
        width: 100%;
        justify-content: center;
        background: #1A1A1A;
        color: #FFFFFF;
        border: none;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .cta-secondary {
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #1A1A1A;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .gradient-picker {
        z-index: 3000 !important;
    }

    .mobile-menu-btn {
        z-index: 2001;
        position: relative;
    }

    .mobile-menu-overlay {
        z-index: 2100 !important;
    }

    /* Features section mobile */
    .features-section {
        padding: 5rem 1.5rem;
    }

    .features-grid {
        gap: 1.5rem;
        padding-top: 2.5rem;
    }

    .feature-item {
        padding: 1.75rem;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        background: white;
    }

    .feature-title {
        font-size: 1.25rem;
        opacity: 1;
    }

    .feature-desc {
        font-size: 0.95rem;
        opacity: 0.8;
    }

    /* Story section mobile */
    .story-section {
        padding: 5rem 1.5rem;
    }

    .story-container {
        gap: 3rem;
    }

    .story-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .story-text {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .story-image {
        height: 400px;
        border-radius: 16px;
    }

    .teen-badge {
        width: 90px;
        height: 90px;
        bottom: -0.5rem;
        left: -0.5rem;
        padding: 1rem;
    }

    .teen-badge-text {
        font-size: 0.65rem;
    }
}