/** Shopify CDN: Minification failed

Line 85:4 Unexpected "{"
Line 85:5 Expected identifier but found "%"
Line 87:4 Unexpected "{"
Line 87:5 Expected identifier but found "%"
Line 89:4 Unexpected "{"
Line 89:5 Expected identifier but found "%"
Line 91:4 Unexpected "{"
Line 91:5 Expected identifier but found "%"
Line 133:0 Unexpected "{"
Line 133:1 Expected identifier but found "%"
... and 2 more hidden warnings

**/
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #72363b 0%, #000000 50%, #72363b 100%);
    --accent-gradient: linear-gradient(135deg, #72363b 0%, #000000 100%);
    --text-primary: #000000;
    --text-secondary: #72363b;
    --background-main: #f7f7f7;
    --background-white: #ffffff;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-quick: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body-family), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--background-main);
    overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.custom-cursor.active { opacity: 1; }
.custom-cursor.hover { transform: scale(2); }

/* Animated Background */
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, var(--background-main), var(--background-white), #f0f0f0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

/* Container Variants */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-container {
    {% if content_width == 'narrow' %}
    max-width: 700px;
    {% elsif content_width == 'medium' %}
    max-width: 900px;
    {% else %}
    max-width: 1200px;
    {% endif %}
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Header */
.nav-header {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(114, 54, 59, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-quick);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: var(--background-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.back-link:hover {
    transform: translateX(-3px);
    color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(114, 54, 59, 0.15);
}

{% if show_share_buttons %}
.share-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-quick);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 54, 59, 0.15);
    background: var(--text-secondary);
    color: white;
}
{% endif %}

/* Article Header */
.article-header {
    padding: 15rem 0 0rem 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards 0.3s;
}

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

.article-category {
    display: inline-block;
    background: rgba(114, 54, 59, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.article-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Featured Image */
.featured-image {
    margin: 4rem 0;
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    animation: fadeInScale 1.5s ease forwards 0.6s;
}

@keyframes fadeInScale {
    to {
    opacity: 1;
    transform: scale(1);
    }
    from {
    transform: scale(0.98);
    }
}

.featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Article Content - Integrates with Shopify's rich text editor */
.article-content {
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards 0.9s;
    max-width: 700px;
    margin: 0 auto;
}

/* Shopify Rich Text Editor Styles */
.rte h1, .article-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-primary);
    margin: 4rem 0 2rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rte h2, .article-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    margin: 4rem 0 2rem 0;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rte h2::after, .article-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--text-secondary);
}

.rte h3, .article-content h3 {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 400;
    color: var(--text-primary);
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.rte p, .article-content p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.rte p:first-child, .article-content p:first-child {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.6;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(114, 54, 59, 0.15);
    font-style: italic;
}

/* Drop Cap */
.rte p:first-of-type::first-letter, .article-content p:first-of-type::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 3.5rem;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    font-family: serif;
}

.rte blockquote, .article-content blockquote {
    background: none;
    border: none;
    border-left: 2px solid var(--text-secondary);
    padding: 0 0 0 3rem;
    margin: 4rem 0;
    font-style: italic;
    font-size: 1.3rem;
    position: relative;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
}

.rte blockquote::after, .article-content blockquote::after {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gradient);
}

.rte ul, .rte ol, .article-content ul, .article-content ol {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.rte li, .article-content li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 300;
    position: relative;
    padding-left: 2rem;
    line-height: 1.75;
}

.rte li::before, .article-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-secondary);
    font-weight: 400;
}

.rte strong, .article-content strong {
    color: var(--text-primary);
    font-weight: 500;
}

.rte em, .article-content em {
    font-style: italic;
    color: var(--text-secondary);
}

/* Shopify Image Handling */
.rte img, .article-content img {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 4rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(114, 54, 59, 0.1);
    justify-content: center;
}

.tag {
    background: rgba(114, 54, 59, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-quick);
}

.tag:hover {
    background: var(--text-secondary);
    color: white;
    transform: translateY(-2px);
}
.author-bio {
    background: var(--background-white);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards 1.2s;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-description {
    color: var(--text-primary);
    line-height: 1.6;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container,
    .content-container {
    padding: 0 1.5rem;
    }
    
    .nav-content {
    flex-direction: column;
    gap: 1rem;
    }
    
    .article-header {
    padding: 10rem 0 0rem 0;
    }
    .featured-image{
    margin:2rem 0;
    }
    
    .article-meta {
    flex-direction: column;
    gap: 0.5rem;
    }
    
    .rte p:first-of-type::first-letter, 
    .article-content p:first-of-type::first-letter {
    font-size: 3.5rem;
    line-height: 2.8rem;
    }
    
    .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    }
    
    .custom-cursor {
    display: none;
    }
    
    .article-tags {
    justify-content: flex-start;
    }
}