/* flaunt glass CSS - Art magazine inspired premium glassware brand */

:root {
    --base-black: #111;
    --base-white: #f4f4f4;
    --accent-color: #ff00ff;
    --secondary-accent: #00ffff;
    --text-color: #1a1a1a;
    --off-white: #f8f8f8;
    --dark-gray: #222;
    --gold: #d4af37;
    --yellow: #ffdd00;
    --grid-size: 8px;
    --cyan: #00FFFF;
    --magenta: #FF00FF;
    --yellow-print: #FFDD00;
    
    /* CSS variables for randomization */
    --cyan-offset-x: -4px;
    --cyan-offset-y: -3px;
    --cyan-rotate: -1deg;
    --cyan-opacity: 0.7;
    --cyan-font-size: clamp(3rem, 10vw, 6rem);
    --cyan-letter-spacing: -2px;
    
    --magenta-offset-x: 3px;
    --magenta-offset-y: 2px;
    --magenta-rotate: 0.5deg;
    --magenta-opacity: 0.7;
    --magenta-font-size: clamp(3rem, 10vw, 6rem);
    --magenta-letter-spacing: -1px;
    
    --yellow-offset-x: -2px;
    --yellow-offset-y: 4px;
    --yellow-rotate: 0.2deg;
    --yellow-opacity: 0.7;
    --yellow-font-size: clamp(3rem, 10vw, 6rem);
    --yellow-letter-spacing: 0px;

    /* CSS variables for additional overprint layers */
    --cyan-alt-offset-x: -6px;
    --cyan-alt-offset-y: 4px;
    --cyan-alt-rotate: 0.8deg;
    --cyan-alt-opacity: 0.6;
    --cyan-alt-font-size: clamp(3rem, 10vw, 6rem);
    --cyan-alt-letter-spacing: -1px;
    
    --magenta-alt-offset-x: -2px;
    --magenta-alt-offset-y: -5px;
    --magenta-alt-rotate: -0.7deg;
    --magenta-alt-opacity: 0.6;
    --magenta-alt-font-size: clamp(3rem, 10vw, 6rem);
    --magenta-alt-letter-spacing: -3px;
    
    --yellow-alt-offset-x: 5px;
    --yellow-alt-offset-y: 1px;
    --yellow-alt-rotate: 1.2deg;
    --yellow-alt-opacity: 0.6;
    --yellow-alt-font-size: clamp(3rem, 10vw, 6rem);
    --yellow-alt-letter-spacing: -0.5px;

    /* CSS variables for manifesto overprint layers */
    --manifesto-cyan-offset-x: -5px;
    --manifesto-cyan-offset-y: -4px;
    --manifesto-cyan-rotate: -0.5deg;
    --manifesto-cyan-opacity: 0.65;
    --manifesto-cyan-font-size: clamp(2rem, 8vw, 4rem);
    --manifesto-cyan-letter-spacing: -1px;
    
    --manifesto-magenta-offset-x: 4px;
    --manifesto-magenta-offset-y: 1px;
    --manifesto-magenta-rotate: 0.8deg;
    --manifesto-magenta-opacity: 0.65;
    --manifesto-magenta-font-size: clamp(2rem, 8vw, 4rem);
    --manifesto-magenta-letter-spacing: 0px;
    
    --manifesto-yellow-offset-x: -3px;
    --manifesto-yellow-offset-y: 3px;
    --manifesto-yellow-rotate: -0.3deg;
    --manifesto-yellow-opacity: 0.65;
    --manifesto-yellow-font-size: clamp(2rem, 8vw, 4rem);
    --manifesto-yellow-letter-spacing: 0.5px;
    
    --manifesto-cyan-alt-offset-x: -1px;
    --manifesto-cyan-alt-offset-y: -6px;
    --manifesto-cyan-alt-rotate: 1.2deg;
    --manifesto-cyan-alt-opacity: 0.55;
    --manifesto-cyan-alt-font-size: clamp(2rem, 8vw, 4rem);
    --manifesto-cyan-alt-letter-spacing: -2px;
    
    --manifesto-magenta-alt-offset-x: 6px;
    --manifesto-magenta-alt-offset-y: -2px;
    --manifesto-magenta-alt-rotate: -1deg;
    --manifesto-magenta-alt-opacity: 0.55;
    --manifesto-magenta-alt-font-size: clamp(2rem, 8vw, 4rem);
    --manifesto-magenta-alt-letter-spacing: 1px;
    
    --manifesto-yellow-alt-offset-x: 3px;
    --manifesto-yellow-alt-offset-y: 5px;
    --manifesto-yellow-alt-rotate: 0.5deg;
    --manifesto-yellow-alt-opacity: 0.55;
    --manifesto-yellow-alt-font-size: clamp(2rem, 8vw, 4rem);
    --manifesto-yellow-alt-letter-spacing: -0.5px;
    
    /* Duotone effect variables */
    --duotone-cyan: #00FFFF;
    --duotone-magenta: #FF00FF;
    --duotone-yellow: #FFDD00;
    --duotone-blend-mode: screen;
    --duotone-intensity: 0.7;
}

/* Base styles reused from parent site with modifications */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: var(--base-white);
    font-family: 'Work Sans', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    perspective: 1000px;
    box-sizing: border-box;
}

/* Registration marks - from parent styles.css */
.registration-mark {
    position: fixed;
    width: min(20px, 3vw);
    height: min(20px, 3vw);
    pointer-events: none;
    z-index: 20;
}

.registration-mark::before,
.registration-mark::after {
    content: "";
    position: absolute;
    background-color: var(--base-black);
}

.registration-mark::before {
    width: 100%;
    height: 10%;
    top: 45%;
    left: 0;
}

.registration-mark::after {
    width: 10%;
    height: 100%;
    top: 0;
    left: 45%;
}

.registration-mark-tl {
    top: 1vh;
    left: 1vw;
}

.registration-mark-tr {
    top: 1vh;
    right: 1vw;
}

.registration-mark-bl {
    bottom: 1vh;
    left: 1vw;
}

.registration-mark-br {
    bottom: 1vh;
    right: 1vw;
}

/* Color swatches - from parent site */
.color-swatches {
    position: fixed;
    top: 3vh;
    left: 3vw;
    display: flex;
    gap: min(3px, 0.6vw);
    padding: min(3px, 0.6vw);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    z-index: 20;
    cursor: pointer;
}

.color-swatch {
    width: min(15px, 2.5vw);
    height: min(15px, 2.5vw);
    border: 1px solid var(--dark-gray);
}

.swatch-c { background-color: #00FFFF; cursor: pointer; }
.swatch-m { background-color: #FF00FF; cursor: pointer; }
.swatch-y { background-color: #FFFF00; cursor: pointer; }
.swatch-k { background-color: #000000; cursor: pointer; }

/* Subtle hover effect */
.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

/* Visual effects from parent site - toned down for more refined look */
.halftone-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
    opacity: 0.3;
    z-index: 12;
}

.paper-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/png;base64,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');
    opacity: 0.1; /* More subtle texture */
    pointer-events: none;
    z-index: 5;
}

/* VHS tracking effect - more subtle version */
.vhs-tracking {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0) 0,
        rgba(0,0,0,0) 4px,
        rgba(0,0,0,0.02) 5px,
        rgba(0,0,0,0) 6px
    );
    background-size: 100% auto;
    pointer-events: none;
    z-index: 30;
    mix-blend-mode: overlay;
}

/* Screen flicker - very subtle version for art aesthetic */
@keyframes screen-flicker {
    0%, 100% { opacity: 1; }
    98% { opacity: 1; }
    98.5% { opacity: 0.97; }
    99% { opacity: 1; }
}

.screen-flicker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    mix-blend-mode: overlay;
    animation: screen-flicker 20s infinite;
    pointer-events: none;
    z-index: 40;
}

/* Main container for flaunt glass */
.flaunt-container {
    position: relative;
    width: calc(100% - 28px); /* Account for the 14px sprocket width on each side */
    max-width: 1600px;
    margin: 0 auto;
    padding: calc(var(--grid-size) * 6) calc(var(--grid-size) * 3);
    box-sizing: border-box;
    z-index: 10;
}

/* Overprinting effect styles */
.overprint-container {
    position: relative;
    height: auto;
    margin: 0;
    padding: 0;
}

.overprint-text {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0.9;
    text-transform: lowercase;
    pointer-events: none;
    white-space: nowrap;
    mix-blend-mode: multiply;
    margin: 0;
    font-size: clamp(3rem, 10vw, 6rem);
}

.overprint-cyan {
    font-family: var(--cyan-font-family, 'Bodoni Moda', serif);
    color: var(--cyan);
    opacity: var(--cyan-opacity);
    transform: translate(var(--cyan-offset-x), var(--cyan-offset-y)) rotate(var(--cyan-rotate));
    letter-spacing: var(--cyan-letter-spacing);
    font-size: var(--cyan-font-size);
}

.overprint-magenta {
    font-family: var(--magenta-font-family, 'Playfair Display', serif);
    color: var(--magenta);
    opacity: var(--magenta-opacity);
    transform: translate(var(--magenta-offset-x), var(--magenta-offset-y)) rotate(var(--magenta-rotate));
    letter-spacing: var(--magenta-letter-spacing);
    font-size: var(--magenta-font-size);
}

.overprint-yellow {
    font-family: var(--yellow-font-family, 'Roboto Mono', monospace);
    color: var(--yellow-print);
    opacity: var(--yellow-opacity);
    transform: translate(var(--yellow-offset-x), var(--yellow-offset-y)) rotate(var(--yellow-rotate));
    letter-spacing: var(--yellow-letter-spacing);
    font-size: var(--yellow-font-size);
}

.overprint-cyan-alt {
    font-family: var(--cyan-alt-font-family, 'Times New Roman', serif);
    color: var(--cyan);
    opacity: var(--cyan-alt-opacity);
    transform: translate(var(--cyan-alt-offset-x), var(--cyan-alt-offset-y)) rotate(var(--cyan-alt-rotate));
    letter-spacing: var(--cyan-alt-letter-spacing);
    font-size: var(--cyan-alt-font-size);
}

.overprint-magenta-alt {
    font-family: var(--magenta-alt-font-family, 'Georgia', serif);
    color: var(--magenta);
    opacity: var(--magenta-alt-opacity);
    transform: translate(var(--magenta-alt-offset-x), var(--magenta-alt-offset-y)) rotate(var(--magenta-alt-rotate));
    letter-spacing: var(--magenta-alt-letter-spacing);
    font-size: var(--magenta-alt-font-size);
}

.overprint-yellow-alt {
    font-family: var(--yellow-alt-font-family, 'Courier New', monospace);
    color: var(--yellow-print);
    opacity: var(--yellow-alt-opacity);
    transform: translate(var(--yellow-alt-offset-x), var(--yellow-alt-offset-y)) rotate(var(--yellow-alt-rotate));
    letter-spacing: var(--yellow-alt-letter-spacing);
    font-size: var(--yellow-alt-font-size);
}

/* Manifesto overprinting effect styles */
.manifesto-overprint-container {
    position: relative;
    height: auto;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.manifesto-overprint {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0.9;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    mix-blend-mode: multiply;
    margin: 0;
}

.manifesto-cyan {
    font-family: var(--manifesto-cyan-font-family, 'Bodoni Moda', serif);
    color: var(--cyan);
    opacity: var(--manifesto-cyan-opacity);
    transform: translate(var(--manifesto-cyan-offset-x), var(--manifesto-cyan-offset-y)) rotate(var(--manifesto-cyan-rotate));
    letter-spacing: var(--manifesto-cyan-letter-spacing);
    font-size: var(--manifesto-cyan-font-size);
}

.manifesto-magenta {
    font-family: var(--manifesto-magenta-font-family, 'Playfair Display', serif);
    color: var(--magenta);
    opacity: var(--manifesto-magenta-opacity);
    transform: translate(var(--manifesto-magenta-offset-x), var(--manifesto-magenta-offset-y)) rotate(var(--manifesto-magenta-rotate));
    letter-spacing: var(--manifesto-magenta-letter-spacing);
    font-size: var(--manifesto-magenta-font-size);
}

.manifesto-yellow {
    font-family: var(--manifesto-yellow-font-family, 'Roboto Mono', monospace);
    color: var(--yellow-print);
    opacity: var(--manifesto-yellow-opacity);
    transform: translate(var(--manifesto-yellow-offset-x), var(--manifesto-yellow-offset-y)) rotate(var(--manifesto-yellow-rotate));
    letter-spacing: var(--manifesto-yellow-letter-spacing);
    font-size: var(--manifesto-yellow-font-size);
}

.manifesto-cyan-alt {
    font-family: var(--manifesto-cyan-alt-font-family, 'Times New Roman', serif);
    color: var(--cyan);
    opacity: var(--manifesto-cyan-alt-opacity);
    transform: translate(var(--manifesto-cyan-alt-offset-x), var(--manifesto-cyan-alt-offset-y)) rotate(var(--manifesto-cyan-alt-rotate));
    letter-spacing: var(--manifesto-cyan-alt-letter-spacing);
    font-size: var(--manifesto-cyan-alt-font-size);
}

.manifesto-magenta-alt {
    font-family: var(--manifesto-magenta-alt-font-family, 'Georgia', serif);
    color: var(--magenta);
    opacity: var(--manifesto-magenta-alt-opacity);
    transform: translate(var(--manifesto-magenta-alt-offset-x), var(--manifesto-magenta-alt-offset-y)) rotate(var(--manifesto-magenta-alt-rotate));
    letter-spacing: var(--manifesto-magenta-alt-letter-spacing);
    font-size: var(--manifesto-magenta-alt-font-size);
}

.manifesto-yellow-alt {
    font-family: var(--manifesto-yellow-alt-font-family, 'Courier New', monospace);
    color: var(--yellow-print);
    opacity: var(--manifesto-yellow-alt-opacity);
    transform: translate(var(--manifesto-yellow-alt-offset-x), var(--manifesto-yellow-alt-offset-y)) rotate(var(--manifesto-yellow-alt-rotate));
    letter-spacing: var(--manifesto-yellow-alt-letter-spacing);
    font-size: var(--manifesto-yellow-alt-font-size);
}

/* Adjusting section-title style for overlapping */
.manifesto-overprint-container .section-title {
    position: relative;
    z-index: 4;
}

/* Header styling */
.flaunt-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: calc(var(--grid-size) * 8);
    position: relative;
    padding-top: 20px; /* Added padding to account for the overprinting effect */
}

/* Updated font to sans-serif for the brand name */
.flaunt-brand {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(3rem, 10vw, 6rem);
    margin: 0;
    line-height: 0.9;
    text-transform: lowercase;
    letter-spacing: -1px;
    color: var(--base-black);
    position: relative;
    z-index: 4; /* Higher z-index to ensure it sits on top of the overprinted text */
}

.flaunt-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: #555;
    margin: calc(var(--grid-size)) 0 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

/* Hero section styling */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: calc(var(--grid-size) * 8);
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) grayscale(0.1);
    transition: transform 0.5s ease-out;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
    mix-blend-mode: multiply;
}

.hero-quote {
    position: absolute;
    bottom: calc(var(--grid-size) * 6);
    left: calc(var(--grid-size) * 6);
    max-width: 500px;
    padding: calc(var(--grid-size) * 3);
    background: rgba(255,255,255,0.9);
    z-index: 2;
}

.hero-quote p {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.4;
    font-weight: 300;
    font-style: italic;
    margin: 0;
    color: var(--base-black);
}

/* Section titles */
.section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: calc(var(--grid-size) * 4);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--yellow);
}

/* Collection grid */
.collection-preview {
    margin-bottom: calc(var(--grid-size) * 10);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: calc(var(--grid-size) * 3);
}

.collection-item {
    position: relative;
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.item-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: calc(var(--grid-size) * 2);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: contrast(1.2) grayscale(0.4); /* Base filter for all images */
}

/* Duotone effect with before/after pseudo-elements */
.item-image::before, 
.item-image::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Create three different duotone styles using nth-child for variety */

/* Magenta/Cyan duotone for first items (default style) */
.collection-item:nth-child(3n+1) .item-image::before {
    background-color: var(--duotone-cyan);
    mix-blend-mode: screen;
    opacity: var(--duotone-intensity);
    transform: translateX(-5px);
}

.collection-item:nth-child(3n+1) .item-image::after {
    background-color: var(--duotone-magenta);
    mix-blend-mode: multiply;
    opacity: calc(var(--duotone-intensity) - 0.2);
    transform: translateX(5px);
}

/* Yellow/Cyan duotone for second items */
.collection-item:nth-child(3n+2) .item-image::before {
    background-color: var(--duotone-yellow);
    mix-blend-mode: multiply;
    opacity: calc(var(--duotone-intensity) - 0.3);
    transform: translateX(-3px) translateY(3px);
}

.collection-item:nth-child(3n+2) .item-image::after {
    background-color: var(--duotone-cyan);
    mix-blend-mode: screen;
    opacity: var(--duotone-intensity);
    transform: translateX(3px) translateY(-3px);
}

/* Yellow/Magenta duotone for third items */
.collection-item:nth-child(3n) .item-image::before {
    background-color: var(--duotone-yellow);
    mix-blend-mode: overlay;
    opacity: calc(var(--duotone-intensity) - 0.2);
    transform: translateX(4px) translateY(-2px);
}

.collection-item:nth-child(3n) .item-image::after {
    background-color: var(--duotone-magenta);
    mix-blend-mode: color;
    opacity: calc(var(--duotone-intensity) - 0.3);
    transform: translateX(-4px) translateY(2px);
}

/* Enhanced hover state for collection items */
.collection-item:hover .item-image img {
    transform: scale(1.03);
}

/* Hover effects for different duotone styles */
.collection-item:nth-child(3n+1):hover .item-image::before {
    opacity: calc(var(--duotone-intensity) - 0.1);
    transform: translateX(-8px) translateY(-3px);
}

.collection-item:nth-child(3n+1):hover .item-image::after {
    opacity: calc(var(--duotone-intensity) - 0.1);
    transform: translateX(8px) translateY(3px);
}

.collection-item:nth-child(3n+2):hover .item-image::before {
    opacity: calc(var(--duotone-intensity) - 0.1);
    transform: translateX(-6px) translateY(6px);
}

.collection-item:nth-child(3n+2):hover .item-image::after {
    opacity: calc(var(--duotone-intensity) - 0.1);
    transform: translateX(6px) translateY(-6px);
}

.collection-item:nth-child(3n):hover .item-image::before {
    opacity: calc(var(--duotone-intensity) - 0.1);
    transform: translateX(7px) translateY(-4px);
}

.collection-item:nth-child(3n):hover .item-image::after {
    opacity: calc(var(--duotone-intensity) - 0.1);
    transform: translateX(-7px) translateY(4px);
}

/* Special effect for featured item - keep as is but add more dynamic movement */
.collection-item.featured .item-image::before {
    background-color: var(--yellow-print);
    mix-blend-mode: multiply;
    opacity: 0.4;
    transform: translateX(3px) translateY(-3px);
}

.collection-item.featured .item-image::after {
    background-color: var(--cyan);
    mix-blend-mode: screen;
    opacity: 0.6;
    transform: translateX(-3px) translateY(3px);
}

.collection-item.featured:hover .item-image::before {
    transform: translateX(6px) translateY(-6px);
    opacity: 0.5;
}

.collection-item.featured:hover .item-image::after {
    transform: translateX(-6px) translateY(6px);
    opacity: 0.7;
}

.edition-marker {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--base-white);
    color: var(--base-black);
    padding: 4px 8px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.collection-item h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 0 calc(var(--grid-size)) 0;
    color: var(--base-black);
}

.collection-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 calc(var(--grid-size)) 0;
    font-weight: 300;
}

.item-price {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Featured item styling */
.collection-item.featured {
    position: relative;
}

.collection-item.featured::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: -1;
}

.collection-item.featured .item-price {
    color: var(--yellow);
}

/* Manifesto section */
.manifesto {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--grid-size) * 10);
    padding: calc(var(--grid-size) * 8) 0;
}

.manifesto-content {
    flex: 0 0 60%;
    padding-right: calc(var(--grid-size) * 4);
}

.manifesto-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: calc(var(--grid-size) * 3);
    font-weight: 300;
    color: var(--text-color);
}

.manifesto-signature {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--yellow);
    margin-top: calc(var(--grid-size) * 4);
    text-align: right;
}

.geometric-accent {
    flex: 0 0 30%;
    position: relative;
    height: 400px;
}

.geo-shape {
    position: absolute;
    background: var(--accent-color);
    opacity: 0.8;
}

.shape-1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    background: var(--secondary-accent);
    mix-blend-mode: multiply;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 30%;
    background: var(--accent-color);
    mix-blend-mode: multiply;
    animation: rotation 30s infinite linear;
}

.shape-3 {
    width: 120px;
    height: 120px;
    border-radius: 0 50% 50% 50%;
    bottom: 10%;
    right: 20%;
    background: var(--yellow);
    mix-blend-mode: multiply;
    transform: rotate(45deg);
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

/* Product experience section */
.product-experience {
    margin-bottom: calc(var(--grid-size) * 10);
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--grid-size) * 4);
}

.feature {
    text-align: center;
    padding: calc(var(--grid-size) * 3);
    background: rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Changed icon color to yellow */
.feature i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: calc(var(--grid-size) * 2);
    position: relative;
    z-index: 5;
    transition: color 0.3s ease;
}

.feature:hover i {
    color: transparent !important; /* Hide the original icon on hover */
}

.icon-overprint-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .icon-overprint-container {
    opacity: 1;
}

.icon-overprint {
    position: absolute;
    font-size: 2.5rem;
    line-height: 1;
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
}

.icon-cyan {
    color: var(--cyan);
    opacity: 0.7;
}

.icon-magenta {
    color: var(--magenta);
    opacity: 0.7;
}

.icon-yellow {
    color: var(--yellow-print);
    opacity: 0.7;
}

.feature h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: calc(var(--grid-size) * 2);
    color: var(--base-black);
}

.feature p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    color: #555;
}

/* Newsletter section */
.newsletter {
    margin-bottom: calc(var(--grid-size) * 10);
    text-align: center;
    padding: calc(var(--grid-size) * 6) calc(var(--grid-size) * 3);
    background: rgba(0, 0, 0, 0.03);
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: calc(var(--grid-size) * 4);
    font-weight: 300;
    color: #555;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: calc(var(--grid-size) * 1.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    background: var(--base-white);
    color: var(--text-color);
}

.newsletter-form button {
    padding: calc(var(--grid-size) * 1.5) calc(var(--grid-size) * 3);
    border: none;
    background: var(--base-black);
    color: var(--base-white);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--yellow);
    color: var(--base-black);
}

/* Footer */
.flaunt-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: calc(var(--grid-size) * 6);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 0 calc(var(--grid-size)) 0;
    color: var(--base-black);
}

.footer-tagline {
    font-size: 0.8rem !important;
    color: #777 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: calc(var(--grid-size) * 3);
}

.footer-links a {
    text-decoration: none;
    color: var(--base-black);
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-legal {
    width: 100%;
    margin-top: calc(var(--grid-size) * 4);
    font-size: 0.8rem;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .manifesto {
        flex-direction: column;
    }
    
    .manifesto-content {
        flex: 1;
        padding-right: 0;
        margin-bottom: calc(var(--grid-size) * 4);
    }
    
    .geometric-accent {
        flex: 1;
        height: 300px;
    }
    
    .hero-quote {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: none;
        margin-top: calc(var(--grid-size) * 2);
        padding: calc(var(--grid-size) * 2);
        background: rgba(0, 0, 0, 0.02);
    }
}

@media (max-width: 600px) {
    .flaunt-container {
        padding: calc(var(--grid-size) * 3) calc(var(--grid-size) * 2);
    }
    
    .hero-image {
        height: 60vh;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: calc(var(--grid-size));
    }
    
    .flaunt-footer {
        flex-direction: column;
    }
    
    .footer-brand {
        margin-bottom: calc(var(--grid-size) * 3);
    }
    
    .footer-links {
        margin-bottom: calc(var(--grid-size) * 3);
    }
}

/* Art magazine-inspired flourishes */
.flaunt-brand::after {
    content: "©";
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 1rem;
    color: var(--yellow);
    opacity: 0.7;
}

/* More subtle animations for the art aesthetic */
@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes color-shift {
    0%, 100% { color: var(--accent-color); }
    50% { color: var(--yellow); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--base-white);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
}

/* 35mm Film Roll Background Effect - Full Height Gradient */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 14px; /* Match sprocket width */
    width: calc(100% - 28px); /* Account for sprockets on both sides */
    height: 100%;
    background: 
        linear-gradient(45deg, var(--yellow), var(--accent-color), var(--secondary-accent));
    opacity: 0.15;
    z-index: -1;
}

/* Film roll perforations - extended full height with fixed positioning */
.film-roll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    background-color: white; /* Pure white background for edges */
}

.film-perforations-left {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 15px,
        rgba(0,0,0,0.8) 15px,
        rgba(0,0,0,0.8) 30px
    );
    height: 100%;
}

.film-perforations-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    bottom: 0;
    width: 6px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 15px,
        rgba(255,255,255,0.15) 15px, 
        rgba(255,255,255,0.15) 30px
    );
    border-radius: 3px;
    opacity: 0.7;
    height: 100%;
}

.film-perforations-right {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 15px,
        rgba(0,0,0,0.8) 15px,
        rgba(0,0,0,0.8) 30px
    );
    height: 100%;
}

.film-perforations-right::after {
    content: "";
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;
    width: 6px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 15px,
        rgba(255,255,255,0.15) 15px, 
        rgba(255,255,255,0.15) 30px
    );
    border-radius: 3px;
    opacity: 0.7;
    height: 100%;
}

/* Film numbers - enlarged and repeated vertically at different angles */
.film-numbers {
    position: fixed;
    right: 18px;
    bottom: 15px;
    font-family: 'Courier New', monospace;
    font-size: 18px; /* Enlarged from 12px */
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    transform: rotate(-5deg);
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

/* Additional film numbers at different positions and angles */
.film-numbers::before,
.film-numbers::after {
    content: attr(data-frame);
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.5);
    pointer-events: none;
    width: 100px;
}

/* Additional film numbers with pseudo-elements */
.film-roll::before {
    content: attr(data-frame-top);
    position: fixed;
    top: 20%;
    right: 20px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    transform: rotate(8deg);
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

.film-roll::after {
    content: attr(data-frame-middle);
    position: fixed;
    top: 40%;
    right: 22px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    transform: rotate(-10deg);
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

/* Fifth set of film numbers */
.film-perforations-left::before {
    content: attr(data-frame-left);
    position: fixed;
    top: 60%;
    left: 20px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    transform: rotate(90deg);
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

/* Sixth set of film numbers */
.film-perforations-right::before {
    content: attr(data-frame-right);
    position: fixed;
    top: 80%;
    right: 20px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    transform: rotate(-6deg);
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}