:root {
    --bg-color: #EBE7DD; /* Accurate stone/beige from mocup_design */
    --text-primary: #1C1C1C;
    --text-secondary: #5C5C5C;
    --accent: #D7CCC0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body, a, button, .product-card, .logo, .footer-logo, .hero-logo-svg {
    /* ROCK-SOLID NATIVE CURSOR: Visible from page load, zero lag, zero disappearance */
    cursor: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='15' y='18' width='2' height='12' fill='%238d6e63' rx='1' /%3E%3Ccircle cx='16' cy='12' r='9' fill='%23fce4ec' /%3E%3Ccircle cx='16' cy='12' r='7.5' fill='none' stroke='%2381c784' stroke-width='3' stroke-dasharray='11.78 35.34' stroke-dashoffset='11.78' /%3E%3Ccircle cx='16' cy='12' r='7.5' fill='none' stroke='%23f06292' stroke-width='3' stroke-dasharray='11.78 35.34' stroke-dashoffset='0' /%3E%3Ccircle cx='16' cy='12' r='7.5' fill='none' stroke='%23fff176' stroke-width='3' stroke-dasharray='11.78 35.34' stroke-dashoffset='-11.78' /%3E%3Ccircle cx='16' cy='12' r='7.5' fill='none' stroke='%234fc3f7' stroke-width='3' stroke-dasharray='11.78 35.34' stroke-dashoffset='-23.56' /%3E%3Ccircle cx='13' cy='11' r='1' fill='%23333' /%3E%3Ccircle cx='19' cy='11' r='1' fill='%23333' /%3E%3Cpath d='M 14 15 Q 16 16.5 18 15' stroke='%23333' stroke-width='0.8' fill='none' /%3E%3C/svg%3E") 16 12, auto;
}

/* Hide native only when the interactive licking layer is active (js managed) */
.hiding-native-cursor {
    cursor: none !important;
}

.hiding-native-cursor * {
    cursor: none !important;
}



body {
    background-color: var(--bg-color);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3C/svg%3E");
    background-blend-mode: overlay;
    background-opacity: 0.05;
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}



h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(253, 252, 251, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    position: relative;
    padding: 0 10px;
}

/* Logo SVG Container Alignment (Placed AFTER text) */
.logo-svg-container {
    width: 36px;  /* Scaled up to match text height better */
    height: 36px;
    margin-left: 6px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    transform: translateY(2px); /* Sit 'slightly below' as requested */
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.badge {
    font-size: 0.6rem;
    background: #EFEFEF;
    padding: 3px 6px;
    border-radius: 10px;
    vertical-align: super;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    font-size: 0.85rem;
    font-weight: 500;
}

.cart-btn {
    background: transparent;
    border: 1px solid var(--text-primary);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap; /* Prevent breaking on mobile */
}

@media (max-width: 480px) {
    .navbar { padding: 1rem 3%; }
    .logo { font-size: 1.5rem; }
    .cart-btn { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
    .nav-actions { gap: 0.5rem; }
}

/* Instagram Hero Section */
.center-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin: 0 auto;
    min-height: 80vh;
    background: transparent;
}

.instagram-frame {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    background: #EBE7DD;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

@media (max-width: 480px) {
    .instagram-frame {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 1rem;
        aspect-ratio: auto;
        min-height: 80vh;
    }
}


/* Sky-effekt / Fading Fog */
.instagram-frame::before, .instagram-frame::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 0;
}

.instagram-frame::before {
    animation: driftCloud 15s infinite alternate ease-in-out;
}

.instagram-frame::after {
    background: radial-gradient(circle, rgba(253,252,251,0.5) 0%, rgba(255,255,255,0) 70%);
    animation: driftCloud2 22s infinite alternate ease-in-out;
}

@keyframes driftCloud {
    0% { transform: scale(1) translate(10%, 10%); opacity: 0.2; }
    50% { transform: scale(1.2) translate(-5%, -5%); opacity: 0.6; }
    100% { transform: scale(0.9) translate(-10%, 5%); opacity: 0.2; }
}

@keyframes driftCloud2 {
    0% { transform: scale(0.8) translate(-10%, -10%); opacity: 0.3; }
    50% { transform: scale(1.3) translate(5%, 10%); opacity: 0.5; }
    100% { transform: scale(1) translate(15%, -15%); opacity: 0.3; }
}

.hero-text-content-center {
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
    position: relative;
    z-index: 10;
}

.hero-text-content-center h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
}

.hero-image-studio img {
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
}

.rotating-words {
    display: flex;
    height: 1.6em; /* Increased even more for total clearance */
    overflow: hidden;
    justify-content: center;
    margin-top: 1.2rem;
}

.rotating-words-inner {
    display: flex;
    flex-direction: column;
    animation: spinWords 15s cubic-bezier(0.83, 0, 0.17, 1) infinite;
}

.rotating-words-inner span {
    line-height: 1.6em;
    height: 1.6em;
    font-weight: 600;
}

@keyframes spinWords {
    0%, 10% { transform: translateY(0); }
    14%, 24% { transform: translateY(-1.6em); }
    28%, 38% { transform: translateY(-3.2em); }
    42%, 52% { transform: translateY(-4.8em); }
    57%, 67% { transform: translateY(-6.4em); }
    71%, 81% { transform: translateY(-8.0em); }
    85%, 95% { transform: translateY(-9.6em); }
    100% { transform: translateY(-11.2em); }
}



/* Top Branding - Scaled Up */
.top-branding {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-brand-name {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700; /* Bolder as requested */
    color: #000; /* Solid Black */
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.1rem;
    position: relative;
    padding: 40px;
}

/* Creative Licking Logo */
/* Brand Icon Standardization */
.logo-svg-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-left: 6px !important; /* Adjusted to be right after the text */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.brand-icon-svg {
    width: 0.8em; /* Proportional to text */
    height: 0.8em;
    min-width: 24px;
    min-height: 24px;
}


.logo:hover .logo-svg-container, .logo.licking .logo-svg-container,
.hero-logo-svg:hover, .hero-logo-svg:active,
.footer-logo:hover .logo-svg-container, .footer-logo.licking .logo-svg-container {
    transform: scale(1.1);
}

.hero-logo-svg {
    width: 64px; /* Proportional scaling */
    height: 64px;
    margin-left: 12px; /* Standardized spacing */
    transform: translateY(4px);
}


.logo-tongue {
    opacity: 0;
    transform: translateY(5px) scale(0);
    transition: all 0.2s ease;
}

.logo:hover .logo-tongue, .logo.licking .logo-tongue,
.hero-logo-svg:hover .logo-tongue, .hero-logo-svg.licking .logo-tongue,
.footer-logo:hover .logo-tongue, .footer-logo.licking .logo-tongue {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    animation: lickLogo 0.4s ease-in-out infinite;
}

@keyframes lickLogo {
    0%, 100% { transform: translate(0, 0) scaleY(1); }
    50% { transform: translate(0, -3px) scaleY(2.5); }
}

@keyframes bobLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.top-brand-name span, .top-brand-name img {
    display: inline-block;
    transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}



.top-brand-slogan {
    display: block;
    font-size: 1.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 0.5rem;
    font-weight: 500;
}


.cloud-quotes-container {
    position: relative;
    height: 120px;
    margin-top: 2rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

/* Mobile Top Nav Menu Styles */
.nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none !important;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        justify-content: center;
        align-items: center;
        z-index: 1001;
    }
    
    .logo-svg-container {
        margin-left: 12px !important;
    }

    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-links.mobile-active, .nav-actions.mobile-active {
        display: flex !important;
    }

    .nav-actions.mobile-active {
        flex-direction: column;
        position: fixed;
        top: 310px;
        left: 0;
        right: 0;
        background: transparent;
        padding: 0 2rem 2rem;
        gap: 1.5rem;
        z-index: 999;
    }
}




.cloud-quote {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    opacity: 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    /* Updated to 32s for 4 quotes (8s per quote) for a much slower read and transition */
    animation: fadeQuote 32s infinite ease-in-out;
}

.quote-1 { animation-delay: 0s; }
.quote-2 { animation-delay: 8s; }
.quote-3 { animation-delay: 16s; }
.quote-4 { animation-delay: 24s; }

@keyframes fadeQuote {
    0% { opacity: 0; transform: translateY(8px); }
    5%, 20% { opacity: 1; transform: translateY(0); }
    25%, 100% { opacity: 0; transform: translateY(-8px); }
}

.hero-text-content-center p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

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

.cta-button {
    display: inline-block;
    background: var(--text-primary);
    color: var(--bg-color);
    padding: 1.1rem 2.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #333;
}


/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding: 1rem 0;
    border-top: 1px solid var(--text-primary);
    border-bottom: 1px solid var(--text-primary);
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    animation: marquee 25s linear infinite;
    display: inline-block;
    min-width: 200%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Bundles (Pakker) */
.bundles-section {
    padding: 6rem 5%;
    background-color: #F8F7F3;
}

.bundles-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bundle-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.bundle-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bundle-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.bundle-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.bundle-price {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.featured {
    border: 2px solid var(--text-primary);
    transform: scale(1.05);
}

.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border: 2px solid var(--text-primary);
}

.buy-btn {
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid var(--text-primary);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.buy-btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

/* Products */
.products {
    padding: 6rem 5%;
    text-align: center;
}

.products h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns as requested for phone scrolling */
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* --- The Master Prompt Engine (Tactical Textures & Bokeh) --- */
.vibe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 20px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    /* 85mm Bokeh Simulation */
    backdrop-filter: blur(5px);
}

/* Texture & Shadow Logic (Making it 'Pop') */
.studio-photo-mount img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    /* Master Prompt: Vibrant, sharp details, Deep tactical weave */
    filter: 
        drop-shadow(0 30px 60px rgba(0,0,0,0.5)) 
        contrast(1.15) 
        brightness(1.05) 
        saturate(1.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

/* Master Prompt: Soft Cinematic Lighting Overlays */
.vibe-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 6;
}

/* Vibe 1: The Studio (Mandag) - Cinematic Focus */
.vibe-studio {
    background: #e8e8e8;
    background-image: 
        radial-gradient(circle at center, transparent, rgba(0,0,0,0.1)),
        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
}
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #fff;
    border-radius: 4px; /* Subtle sharp boutique corners */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* Soft studio shadow like the mocup */
    margin-bottom: 1.5rem;
}

.masterpiece-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Use cover for the perfectly posed studio masterpieces */
    transition: transform 0.8s ease;
}

.product-card:hover .masterpiece-img {
    transform: scale(1.03);
}

/* Content Typography */
.card-content {
    padding: 0 5px;
}

.day-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: #999;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: #111;
}

.product-material {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #222;
}

.product-buy-btn {
    width: fit-content;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid #111;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.product-buy-btn:hover {
    background: #111;
    color: #fff;
}

/* Featured Spotlight */
.featured-post-vibe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 10rem;
    padding: 0 5%;
}

.featured-post-vibe .product-image-container {
    aspect-ratio: 1/1; /* Square for the main highlight */
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
}

/* Responsive Cleanup */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .featured-post-vibe {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .products h2 {
        font-size: 2.5rem;
    }
}
    font-weight: 600;
}

.studio-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.studio-price {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.studio-price .currency {
    font-size: 1rem;
    color: #888;
}

.studio-buy-btn {
    background: #111;
    color: #fff;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: none;
    width: 100%;
}

.studio-buy-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
    .featured-post-studio {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .studio-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

.featured-post .product-image {
    aspect-ratio: auto;
    background: transparent;
    margin-bottom: 0;
}

.featured-post .card-content {
    padding: 2rem;
    text-align: left;
}

.product-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.product-image-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-material {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-card {
    text-align: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    perspective: 1000px;
    background: transparent;
    border-radius: 12px;
}

.product-card:hover {
    transform: translateY(-8px) rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 20px 20px 40px rgba(0,0,0,0.08), -10px -10px 30px rgba(255,255,255,0.8);
    z-index: 10;
}

.product-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: transparent;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.product-image img {
    mix-blend-mode: multiply; /* Fjerner hvit/grå bakgrunn fra screenshot slik at det smelter inn */
}

.product-card:hover .product-image {
    box-shadow: none;
}

.tshirt-mock {
    width: 65%;
    height: 75%;
    border-radius: 15px 15px 0 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tshirt-text {
    position: absolute;
    top: 30%;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
}

.day-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-secondary);
}

.product-buy-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--text-primary);
    border-radius: 20px;
    width: 100%;
    transition: all 0.3s;
}

.product-buy-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

/* Footer */
.footer {
    padding: 8rem 5% 6rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo-emoji {
    display: inline-block;
    animation: bobLogo 3s ease-in-out infinite;
    margin-left: 10px;
    font-size: 1.2em;
    vertical-align: middle;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns only on narrow tablets */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .featured-post .card-content {
        padding: 1.5rem;
    }
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .hero-text-content-center h1 { font-size: 2.2rem; }
    .top-brand-name { font-size: 2.2rem; }
    .top-brand-slogan { font-size: 0.8rem; letter-spacing: 2px; }
    .hero p { font-size: 1.1rem; }
    .hero { min-height: 60vh; height: auto; padding-top: 2rem; padding-bottom: 2rem; }
    .logo-emoji { font-size: 1.5rem; }
}

/* Hero Branding & Animations */
.enklere-container {
    height: 35px;
    overflow: hidden;
    margin-top: 10px;
}

.enklere-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: enklereSlide 3s infinite ease-in-out;
}

@keyframes enklereSlide {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    20%, 80% { opacity: 0.6; transform: translateY(0); }
}

/* Color Mapped Days */
.color-monday { color: #1a3b5c; }
.color-tuesday { color: #2b7a78; }
.color-wednesday { color: #506240; }
.color-thursday { color: #ff0000; }
.color-friday { color: #e67e22; }
.color-saturday { color: #2d5a27; }
.color-sunday { color: #c29b40; }

/* Emoji-style Custom Cursor Interaction */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 10002; 
    transform: translate(-50%, -50%) rotate(-20deg);
    transform-origin: center center;
    transition: transform 0.02s linear;
    display: block;
    opacity: 0; /* Hidden by default, only shown on click for animation */
}


@media (min-width: 769px) {
    #custom-cursor {
        display: block !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    #custom-cursor {
        display: none !important;
    }
    /* Restoration of visibility for mobile/tablet users */
    html, body, a, button, .product-card, .logo, .footer-logo {
        cursor: auto !important;
    }
}




.cursor-face {
    transition: opacity 0.2s ease;
    opacity: 1 !important; /* Face is always visible now as requested */
}


#custom-cursor.clicking .tongue {
    animation: cursorLick 0.4s ease-out; /* Trigger lick on click */
}

#custom-cursor.hovering .tongue {
    animation: cursorLick 1.2s infinite;
}

@keyframes cursorLick {
    0% { transform: scale(1) translateX(0); opacity: 0; }
    20% { opacity: 1; transform: scale(1.3) translate(3px, 1px); } /* Slikke seg om munden */
    50% { transform: scale(1.1) translate(-2px, 1px); }
    80% { opacity: 1; }
    100% { transform: scale(1) translateX(0); opacity: 0; }
}



#custom-cursor.clicking .mouth {
    animation: cursorSmile 0.5s forwards;
}

@keyframes cursorSmile {
    to { transform: scaleX(1.4) translateY(1px); }
}

#custom-cursor.hovering .cursor-svg {
    transform: scale(1.15);
}

#custom-cursor.clicking .cursor-svg {
    transform: scale(0.9);
}


/* Masterpiece Product Grid Cleanup */
.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: radial-gradient(circle at center, #F4F2EE 0%, #E7E3D7 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 80px 20px #E7E3D7; /* Heavy professional vignette to hide artifacts */
    border-radius: 8px;
}

.product-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px 10px #E7E3D7;
    pointer-events: none;
    z-index: 2;
}



.authentic-sprite {
    width: 100%;
    height: 100%;
    background-image: url('images/authentic_grid.jpg');
    background-size: 315% 315%; /* Wider zoom to show whole shirt */
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
    z-index: 1;
}



.product-card:hover .authentic-sprite {
    transform: scale(1.15); /* Elegant hover zoom */
}

