/* outer.css: bundle of root blog.css + product-template.css */

/* Critical mobile viewport fixes */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent any element from causing horizontal scroll */
.container,
.nav-container,
.hero-content-overlay,
.article-header,
.footer {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Content links styling */
a {
    color: var(--wine-red);
    text-decoration: none;
}

a:hover {
    color: #7A142F;
    text-decoration: underline;
}

/* Blog Navigation */
.blog-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(93, 15, 37, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-black);
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--text-black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 400;
    font-size: var(--text-sm);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--wine-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wine-red);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta-btn {
    background: var(--wine-red);
    color: var(--primary-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow);
    letter-spacing: var(--tracking-wide);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta-btn:hover {
	color: var(--primary-white);
    background: #7A142F;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-elegant);
}

.nav-cta-btn:hover::before {
    left: 100%;
}

.nav-cta-btn:hover::after {
    width: 300px;
    height: 300px;
}

.nav-cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Blog Hero */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-white) 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('media/hero-bg.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

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

.blog-hero-title {
    font-size: var(--text-6xl);
    font-weight: 200;
    line-height: var(--leading-tight);
    margin-bottom: 1.5rem;
    color: var(--text-black);
}

.blog-hero-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--primary-white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.search-container:focus-within {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--medium-gray);
    font-size: var(--text-lg);
}

.search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    outline: none;
    font-size: var(--text-base);
    background: transparent;
}

.search-input::placeholder {
    color: var(--medium-gray);
}

.search-btn {
    background: var(--wine-red);
    color: var(--primary-white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: #7A142F;
    transform: translateX(2px);
}

/* Blog Categories */
.blog-categories {
    padding: 3rem 0;
    background: var(--primary-white);
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover,
.category-card.active {
    background: var(--wine-red);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: var(--text-base);
}

/* Featured Article */
.featured-article {
    padding: 4rem 0;
    background: var(--light-gray);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

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

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

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--wine-red);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.featured-text {
    padding: 2rem 0;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category {
    background: var(--accent-yellow);
    color: var(--wine-red);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.article-date {
    color: var(--medium-gray);
    font-size: var(--text-sm);
}

.featured-title {
    font-size: var(--text-4xl);
    font-weight: 300;
    line-height: var(--leading-tight);
    margin-bottom: 1.5rem;
    color: var(--text-black);
}

.featured-excerpt {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.featured-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: var(--text-sm);
}

.stat-item i {
    color: var(--wine-red);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wine-red);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    transition: var(--transition);
    border: 2px solid var(--wine-red);
}

.read-more-btn:hover {
    background: transparent;
    color: var(--wine-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Blog Grid */
.blog-grid {
    padding: 4rem 0;
    background: var(--primary-white);
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(93, 15, 37, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .card-image img {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--wine-red);
    color: var(--primary-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.card-content {
    padding: 2rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: var(--leading-snug);
    margin-bottom: 1rem;
    color: var(--text-black);
}

.card-excerpt {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

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

.card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--wine-red);
    color: var(--primary-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.card-link:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}

/* Load More */
.load-more {
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--wine-red);
    border: 2px solid var(--wine-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--wine-red);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: var(--light-gray);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: var(--text-4xl);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.newsletter-text p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--medium-gray);
}

.newsletter-form {
    max-width: 400px;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(93, 15, 37, 0.2);
    border-radius: 50px;
    font-size: var(--text-base);
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--wine-red);
    box-shadow: var(--shadow-elegant);
}

.newsletter-btn {
    background: var(--wine-red);
    color: var(--primary-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #7A142F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.newsletter-note {
    font-size: var(--text-sm);
    color: var(--medium-gray);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .blog-hero-title {
        font-size: var(--text-4xl);
    }
    
    .blog-hero-subtitle {
        font-size: var(--text-base);
    }
    
    .categories-grid {
        gap: 0.5rem;
    }
    
    .category-card {
        padding: 0.5rem 1rem;
        font-size: var(--text-xs);
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-title {
        font-size: var(--text-3xl);
    }
    
    .featured-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-articles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    /* Additional mobile layout fixes */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Fix long text overflow */
    .hero-main-title,
    .article-title,
    .section-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Better button spacing on mobile */
    .hero-cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary,
    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-title {
        font-size: var(--text-3xl);
    }
    
    .featured-title {
        font-size: var(--text-2xl);
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: var(--text-lg);
    }
} 


/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--light-gray);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(93, 15, 37, 0.1);
    position: relative;
    z-index: 40;
}

/* Product pages: ensure header is not sticky */
.blog-nav {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: var(--text-sm);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--medium-gray);
    font-weight: bold;
}

.breadcrumb a {
    color: var(--wine-red);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #7A142F;
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: var(--text-black);
    font-weight: 500;
}

/* Breadcrumb Responsive */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.75rem 0;
    }
    
    .breadcrumb {
        font-size: var(--text-xs);
        gap: 0.25rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin-left: 0.25rem;
    }
}

/* Article Header - Redesigned with Wine Red Background */
.article-header {
    position: relative;
    min-height: 80vh;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--wine-red);
    padding: 4rem 0 6rem 0;
}

/* Hero Simple Layout */
.hero-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-simple__text {
    flex: 1;
}

.hero-simple__media {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-simple__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-simple__text {
        order: 1;
    }
    
    .hero-simple__media {
        order: 2;
        margin-top: 2rem;
    }
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wine-red);
    z-index: 2;
}

.hero-content-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--primary-white);
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.hero-text-content {
    text-align: left;
    width: 100%;
}

.hero-video-container {
    margin: 0;
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 9/16;
    justify-self: end;
}

.hero-video-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.hero-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--wine-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge i {
    color: var(--wine-red);
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-main-title .wine-text {
    color: var(--accent-yellow);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--primary-white);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Content links styling */
a {
    color: var(--wine-red);
    text-decoration: none;
}

a:hover {
    color: #7A142F;
    text-decoration: underline;
}

/* Hero CTA (copied from final-cta-..., renamed) */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-content h3 {
    font-size: var(--text-3xl);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.hero-cta-content p {
    font-size: var(--text-lg);
    color: var(--primary-white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}



.hero-cta-primary {
    background: var(--primary-white);
    color: var(--wine-red);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow);
    letter-spacing: var(--tracking-wide);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-primary:hover {
    background: var(--primary-white);
    color: var(--wine-red);
    border-color: var(--primary-white);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover::after {
    width: 300px;
    height: 300px;
}

.hero-cta-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    z-index: 1;
    letter-spacing: var(--tracking-wide);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.hero-cta-secondary {
    position: relative;
    overflow: hidden;
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-white);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-cta-secondary:hover {
    background: var(--primary-white);
    color: var(--wine-red);
    border-color: var(--primary-white);
    box-shadow: var(--shadow-hover);
}

.hero-cta-secondary:hover::before {
    width: 150%;
}

/* Ensure hero secondary CTA always side-swipes and text turns wine red on hover */
.hero-cta-secondary {
    position: relative;
    overflow: hidden;
}
.hero-cta-secondary:hover,
.hero-cta-secondary:hover span,
.hero-cta-secondary:hover i {
    color: var(--wine-red) !important;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.meta-item i {
    color: var(--accent-yellow);
    font-size: var(--text-sm);
}

.meta-item span {
    color: var(--primary-white);
    font-weight: 500;
    font-size: var(--text-xs);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: var(--text-lg);
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Article Hero Layout */
.article-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--primary-white);
}

.article-hero-content {
    text-align: left;
}

/* Hero Image Badge */
.article-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.hero-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-yellow);
    color: var(--wine-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--text-xs);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-image-badge i {
    color: var(--wine-red);
}

.article-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Gallery video styles */
.gallery-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* Legacy styles removed for cleaner hero design */

/* Article Content */
.article-content {
    padding: 4rem 0;
    background: var(--primary-white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.main-content {
    max-width: 100%;
}

.content-section {
    line-height: var(--leading-relaxed);
}

.lead-paragraph {
    font-size: var(--text-xl);
    line-height: var(--leading-loose);
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    border-left: 4px solid var(--wine-red);
    padding-left: 2rem;
}

.content-section h2 {
    font-size: var(--text-3xl);
    font-weight: 300;
    margin: 3rem 0 1.5rem;
    color: var(--text-black);
}

.content-section p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-black);
    margin-bottom: 1.5rem;
}

.image-with-caption {
    margin: 0;
}

.image-with-caption img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.image-caption {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--medium-gray);
    font-style: italic;
}

/* Simplified highlight box */
.highlight-box {
    background: var(--light-gray);
    border-left: 4px solid var(--wine-red);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.highlight-icon {
    background: var(--wine-red);
    color: var(--primary-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.highlight-content p {
    margin: 0;
    color: var(--medium-gray);
}

/* Clean image gallery */
.blog-image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.blog-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.color-palette {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.5rem;
    color: var(--primary-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow);
}

/* Simplified feature items */
.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.feature-item i {
    color: var(--wine-red);
    font-size: var(--text-xl);
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.feature-item p {
    margin: 0;
    color: var(--medium-gray);
    font-size: var(--text-sm);
}

/* Clean CTA section */
.cta-section {
    background: var(--wine-red);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: var(--text-2xl);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.cta-section p {
    font-size: var(--text-lg);
    color: var(--primary-white);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-white);
    color: var(--wine-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    border: 2px solid var(--wine-red);
}

.cta-button:hover {
    background: var(--wine-red);
    color: var(--primary-white);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    height: fit-content;
    margin-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    z-index: 10;
}

/* Simplified sidebar */
.sidebar-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-black);
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 10px;
}

.related-article img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text-black);
    line-height: var(--leading-snug);
}

.related-date {
    font-size: var(--text-xs);
    color: var(--medium-gray);
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--primary-white);
    background: var(--wine-red);
}

.share-btn:hover {
    opacity: 0.9;
}

.share-btn.facebook { background: var(--wine-red); color: var(--primary-white); }
.share-btn.twitter { background: var(--wine-red); color: var(--primary-white); }
.share-btn.whatsapp { background: var(--wine-red); color: var(--primary-white); }
.share-btn.linkedin { background: var(--wine-red); color: var(--primary-white); }

.sidebar-newsletter p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: var(--text-sm);
}

.sidebar-newsletter input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(93, 15, 37, 0.2);
    border-radius: 10px;
    font-size: var(--text-sm);
    margin-bottom: 1rem;
    outline: none;
    transition: var(--transition);
}

.sidebar-newsletter input:focus {
    border-color: var(--wine-red);
    box-shadow: var(--shadow-elegant);
}

.sidebar-newsletter button {
    width: 100%;
    background: var(--wine-red);
    color: var(--primary-white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-newsletter button:hover {
    background: #7A142F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Comments Section */
.comments-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.comments-section h3 {
    font-size: var(--text-2xl);
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-black);
}

.comment-form {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.comment-form h4 {
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-black);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(93, 15, 37, 0.2);
    border-radius: 10px;
    font-size: var(--text-base);
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--wine-red);
    box-shadow: var(--shadow-elegant);
}

.comment-form button {
    background: var(--wine-red);
    color: var(--primary-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition);
}

.comment-form button:hover {
    background: #7A142F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h5 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-black);
}

.comment-date {
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.comment-content p {
    margin-bottom: 1rem;
    color: var(--text-black);
    line-height: var(--leading-relaxed);
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.like-btn,
.reply-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--medium-gray);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.like-btn:hover,
.reply-btn:hover {
    background: var(--light-gray);
    color: var(--wine-red);
}

.like-btn i {
    color: var(--wine-red);
}

/* Override gallery cursor effects for blog post */
.blog-gallery-item {
    cursor: default !important;
}

.blog-gallery-item .gallery-cursor {
    display: none !important;
}

.blog-gallery-item:hover .gallery-cursor {
    opacity: 0 !important;
    display: none !important;
}

/* Inspiration Gallery - Simplified */
.inspiration-gallery {
    margin: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.gallery-card.wide {
    grid-column: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--primary-white);
    padding: 2rem 1.5rem 1.5rem;
}

.gallery-overlay h4 {
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.gallery-overlay p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* FAQ Section - Simplified */
.faq-section {
    margin: 3rem 0;
    max-width: 800px;
}

.faq-item {
    background: var(--primary-white);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--wine-red);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-black);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--wine-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: var(--leading-relaxed);
    margin: 0;
    font-size: var(--text-base);
}

/* Remove hover effects for minimalistic approach */
.gallery-card:hover,
.faq-item:hover,
.feature-item:hover,
.related-article:hover,
.faq-question:hover {
    transform: none !important;
    box-shadow: inherit !important;
    background: inherit !important;
}

.gallery-card:hover img {
    transform: none !important;
}

/* Remove complex transitions */
.gallery-card,
.gallery-card img,
.feature-item,
.related-article {
    transition: none !important;
}

/* Only keep essential transitions for functionality */
.faq-answer {
    transition: max-height 0.3s ease;
}

.faq-icon {
    transition: transform 0.2s ease;
}

/* Simplified Gallery Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 180px);
    }
    
    .gallery-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 160px);
        gap: 0.75rem;
    }
    
    .gallery-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-card.wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: var(--text-base);
    }
    
    .gallery-overlay p {
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .gallery-card.large,
    .gallery-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* FAQ Responsive Design - Simplified */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: var(--text-base);
        padding-right: 0.75rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
        max-height: 250px;
    }
    
    .faq-answer p {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h4 {
        padding-right: 0;
        line-height: 1.3;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}

/* Performance optimization - remove unnecessary effects */
.sidebar-section,
.feature-item,
.blog-gallery-item,
.related-article {
    box-shadow: none;
}

/* Remove transformations for better performance */
.back-link:hover,
.breadcrumb a:hover {
    transform: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--wine-red);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: var(--wine-red);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(93, 15, 37, 0.1);
    border-bottom: 1px solid rgba(93, 15, 37, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--wine-red);
    margin-bottom: 0.25rem;
}

.hero-stat .stat-label {
    font-size: var(--text-sm);
    color: var(--medium-gray);
    font-weight: 500;
}

/* Blog Testimonials Section */
.blog-testimonials {
    padding: 4rem 0;
    background: var(--light-gray);
    border-top: 1px solid rgba(93, 15, 37, 0.08);
    border-bottom: 1px solid rgba(93, 15, 37, 0.08);
}

.testimonials-title {
    text-align: center;
    font-size: var(--text-3xl);
    font-weight: 300;
    color: var(--text-black);
    margin-bottom: 3rem;
}

.blog-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-testimonial-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.blog-testimonial-card blockquote {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-black);
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.testimonials-cta {
    text-align: center;
}

.testimonials-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wine-red);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    transition: var(--transition);
}

.testimonials-cta-btn:hover {
	color: var(--primary-white);
    background: #7A142F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Value Points in Sidebar */
.value-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-white);
    border-radius: 10px;
}

.value-point i {
    color: var(--wine-red);
    font-size: var(--text-lg);
    width: 24px;
    text-align: center;
}

.value-point h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-black);
    margin: 0 0 0.25rem 0;
}

.value-point p {
    font-size: var(--text-xs);
    color: var(--medium-gray);
    margin: 0;
}

.sidebar-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--medium-gray);
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: var(--text-sm);
    transition: var(--transition);
    border: 1px solid rgba(93, 15, 37, 0.15);
}

.sidebar-cta-btn:hover {
    background: var(--primary-white);
    color: var(--wine-red);
    transform: translateY(-1px);
}

/* Blog Trust Section */
.blog-trust-section {
    padding: 3rem 0;
    background: var(--primary-white);
    border-top: 1px solid rgba(93, 15, 37, 0.08);
    border-bottom: 1px solid rgba(93, 15, 37, 0.08);
}

.blog-trust-section .trust-title {
    text-align: center;
    color: var(--wine-red);
    margin-bottom: 2rem;
    font-size: var(--text-xl);
    font-weight: 400;
}

.blog-trust-section .trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-trust-section .trust-logos img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: var(--transition);
}


/* Sticky CTA Sidebar */
.sticky-cta-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    height: fit-content;
    margin-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.sticky-cta-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(93, 15, 37, 0.06);
    width: 100%;
    max-width: none;
}

.sticky-cta-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sticky-cta-header h3 {
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--text-black);
    margin-bottom: 0.5rem;
}

.sticky-cta-header p {
    font-size: var(--text-sm);
    color: var(--medium-gray);
    margin: 0;
    font-weight: 400;
}

.sticky-cta-benefits {
    margin-bottom: 1.5rem;
}

.sticky-benefit {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(93, 15, 37, 0.08);
}

.sticky-benefit:last-child {
    border-bottom: none;
}

.sticky-benefit i {
    color: var(--medium-gray);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.sticky-benefit span {
    font-size: var(--text-sm);
    color: var(--text-black);
    font-weight: 400;
}

.sticky-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sticky-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--wine-red);
    color: var(--primary-white);
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: var(--transition);
    border: none;
}

.sticky-cta-primary:hover {
	color: var(--primary-white);
    background: #7A142F;
    box-shadow: 0 0 20px rgba(93, 15, 37, 0.35);
}

.sticky-cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--medium-gray);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: var(--text-sm);
    transition: var(--transition);
    border: 1px solid rgba(93, 15, 37, 0.15);
}

.sticky-cta-whatsapp:hover {
	background: var(--primary-white);
	color: var(--medium-gray);
	border-color: rgba(93, 15, 37, 0.25);
}

.sticky-cta-trust {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(93, 15, 37, 0.08);
}

.trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: var(--wine-red);
    font-size: 0.875rem;
    opacity: 0.7;
}

.trust-rating span {
    font-size: var(--text-xs);
    color: var(--medium-gray);
    font-weight: 400;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--wine-red);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.final-cta-content h3 {
    font-size: var(--text-3xl);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.final-cta-content p {
    font-size: var(--text-lg);
    color: var(--primary-white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-cta-primary {
    background: var(--wine-red);
    color: var(--primary-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow);
    letter-spacing: var(--tracking-wide);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.final-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-primary:hover {
    background: #7A142F;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-elegant);
}

.final-cta-primary:hover::before {
    left: 100%;
}

.final-cta-primary:hover::after {
    width: 300px;
    height: 300px;
}

.final-cta-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.final-cta-secondary {
    background: transparent;
    color: var(--text-black);
    border: 2px solid var(--text-black);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    z-index: 1;
    letter-spacing: var(--tracking-wide);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.final-cta-secondary {
    position: relative;
    overflow: hidden;
}

.final-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-black);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--primary-white);
    z-index: -1;
}

.final-cta-secondary:hover {
    box-shadow: var(--shadow-hover);
}

.final-cta-secondary:hover::before {
    width: 150%;
}

/* Section-scoped overrides to mirror index .cta-section */
.final-cta-section .final-cta-primary {
    background: var(--primary-white);
    color: var(--wine-red);
    padding: 0.88rem 1.76rem;
    border-radius: 60px;
    overflow: hidden;
}

.final-cta-section .final-cta-primary:hover {
    background: var(--primary-white);
    color: var(--wine-red);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.final-cta-section .final-cta-secondary {
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    padding: 0.88rem 1.76rem;
    border-radius: 60px;
}

.final-cta-section .final-cta-secondary::before {
    background: var(--primary-white);
}

.final-cta-section .final-cta-secondary:hover {
    background: var(--primary-white);
    color: var(--wine-red);
}

.final-cta-section .final-cta-secondary:hover::before {
    background: var(--primary-white);
}

/* Ensure bottom secondary CTA always side-swipes and text turns wine red on hover */
.final-cta-section .final-cta-secondary {
    position: relative;
    overflow: hidden;
}
.final-cta-section .final-cta-secondary:hover,
.final-cta-section .final-cta-secondary:hover span,
.final-cta-section .final-cta-secondary:hover i {
    color: var(--wine-red) !important;
}
.final-cta-section .final-cta-secondary::before {
    background: var(--primary-white);
}
.final-cta-section .final-cta-secondary:hover::before {
    width: 150%;
}

.final-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-white);
    font-size: var(--text-sm);
    opacity: 0.8;
}

.final-cta-guarantee i {
    color: var(--accent-yellow);
}

/* Simplified images */
.article-hero-image {
    border-radius: 20px;
    overflow: hidden;
}

.image-with-caption img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* Responsive styles for new hero design */
@media (max-width: 1024px) {
    .article-header {
        height: 130vh;
        min-height: 900px;
    }
    
    .hero-content-overlay {
        padding: 1.5rem;
    }
    
    .hero-content-grid {
        gap: 3rem;
    }
    
    .hero-video-container {
        max-width: 350px;
    }
    
    .hero-meta {
        gap: 1rem;
    }
    
    .meta-item {
        padding: 0.5rem 1rem;
    }
    
    /* Make side panels incorporate into main content on mobile */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        width: 100%;
        max-width: 100%;
    }
    
    .sidebar {
        position: static;
        margin-left: 0;
        margin-top: 2rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .sidebar-section {
        margin-bottom: 1.5rem;
        background: var(--light-gray);
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .related-articles {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-article {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        background: var(--primary-white);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .share-btn {
        justify-content: center;
        padding: 0.75rem;
        font-size: var(--text-sm);
    }
}

@media (max-width: 768px) {
    .article-header {
        min-height: 140vh;
        height: auto;
        padding: 4rem 0;
        position: relative;
        display: flex;
        align-items: center;
        background: var(--wine-red);
        overflow: hidden;
    }
    
    .article-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .article-hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .meta-item {
        min-width: 150px;
        justify-content: center;
    }
    
    .hero-content-overlay {
        position: relative;
        z-index: 10;
        padding: 4rem 1.5rem;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 140vh;
        max-width: 1200px;
        margin: 3rem auto;
    }
    
    .hero-content-grid {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        text-align: left;
        margin-top: 2rem;
        margin-bottom: 2rem;
        width: 100%;
        align-items: flex-start;
    }
    
    .hero-text-content {
        text-align: left;
        order: 1;
        width: 100%;
        max-width: 600px;
    }
    
    .hero-video-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        justify-self: stretch;
        order: 2;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        border: 3px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        aspect-ratio: 16/9;
        height: auto;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
        padding: 0.6rem 1.25rem;
        font-size: var(--text-sm);
        background: rgba(255, 255, 255, 0.95);
        color: var(--wine-red) !important;
        border-radius: 100px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        width: fit-content;
    }
    
    .hero-badge i {
        color: var(--wine-red) !important;
    }
    
    .hero-main-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
        color: var(--primary-white) !important;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
        font-family: var(--font-display);
        font-weight: 200;
        letter-spacing: -0.025em;
    }
    
    .hero-main-title .wine-text {
        color: var(--accent-yellow) !important;
        font-weight: 300;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        color: var(--primary-white) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-family: var(--font-body);
        font-weight: 400;
        opacity: 0.95;
    }
    

    
    .hero-cta-primary {
        background: var(--primary-white);
        color: var(--wine-red) !important;
        border: 2px solid var(--primary-white);
        padding: 1rem 2rem;
        border-radius: 100px;
        font-weight: 600;
        font-size: var(--text-base);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        width: auto;
        max-width: none;
        justify-content: center;
    }
    
    
    .hero-cta-secondary {
        background: transparent;
        color: var(--primary-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 1rem 1.5rem;
        border-radius: 100px;
        font-weight: 500;
        font-size: var(--text-base);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        width: auto;
        max-width: none;
        justify-content: center;
    }
    
    
    .hero-meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .meta-item {
        width: auto;
        max-width: none;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 100px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        font-size: var(--text-sm);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .meta-item i {
        color: var(--accent-yellow) !important;
        font-size: var(--text-lg);
    }
    
    .meta-item span {
        color: var(--primary-white) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .hero-scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: var(--text-lg);
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-white);
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }
    
    /* Content wrapper and sidebar mobile styles */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .main-content {
        width: 100%;
        max-width: 100%;
    }
    
    .sidebar {
        position: static;
        margin-left: 0;
        margin-top: 2rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .sidebar-section {
        margin-bottom: 1.5rem;
        background: var(--light-gray);
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .related-articles {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-article {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        background: var(--primary-white);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .share-btn {
        justify-content: center;
        padding: 0.75rem;
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .article-header {
        min-height: 130vh;
        padding: 3rem 0;
    }
    
    .hero-content-overlay {
        padding: 3rem 1rem;
        min-height: 130vh;
        margin: 2rem auto;
    }
    
    .hero-content-grid {
        gap: 3rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }
    

    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 1.5rem;
        font-size: var(--text-base);
        border-radius: 100px;
    }
    
    .hero-meta {
        gap: 0.5rem;
        justify-content: center;
        text-align: center;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: nowrap;
    }
    
    .meta-item {
        padding: 0.4rem 0.8rem;
        font-size: var(--text-xs);
        min-width: 0;
        justify-content: center;
    }
    
    .meta-item span {
        font-size: var(--text-xs);
    }
    
    .hero-video-container {
        border-radius: 25px;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
}

/* Sticky Value Proposition Sidebar */
.sticky-value-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    height: fit-content;
    margin-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Hero media fixes: ensure full cover and remove black letterboxing */
.article-hero-image {
	height: 400px;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.article-hero-image img {
	width: 100%;
	height: 100% !important; /* override fixed heights */
	object-fit: cover;
	display: block; /* remove baseline gap that can look like a border */
	max-width: 100%;
}

.hero-video-container video,
.hero-background-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: transparent !important; /* avoid black preload background */
	display: block;
	max-width: 100%;
}

/* Also remove inline-image gaps in common gallery/figure contexts */
.blog-image-gallery img,
.image-with-caption img,
.featured-image img,
.card-image img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Fix all images to be responsive */
img {
	max-width: 100%;
	height: auto;
}

/* Specific gallery image fixes */
.blog-image-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 2rem 0;
}

.blog-gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	max-width: 100%;
}

@media (max-width: 768px) {
	.article-hero-image { 
		height: 280px;
		margin: 0 auto;
	}
	
	.blog-image-gallery {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.blog-gallery-item img {
		height: 250px;
	}
	
	/* Ensure all images are properly constrained on mobile */
	.article-hero-image img,
	.image-with-caption img,
	.featured-image img,
	.card-image img,
	.gallery-card img {
		max-width: 100%;
		width: 100%;
		object-fit: cover;
	}
}

@media (max-width: 480px) {
	.article-hero-image { 
		height: 220px;
	}
	
	.blog-gallery-item img {
		height: 200px;
	}
}

/* Replaced hero-cta with final-cta variants (renamed) */

/* Footer mobile fixes */
@media (max-width: 768px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}
	
	.footer-sections {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.footer-section {
		text-align: center;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	
	.footer-bottom-links {
		flex-direction: column;
		gap: 1rem;
	}
	
	.contact-info {
		align-items: center;
	}
	
	.footer-social {
		justify-content: center;
	}

	.hero-cta-primary,
	.hero-cta-secondary {
		justify-content: center;
		padding: 1rem 2rem;
		width: 100%;
		max-width: 280px;
		align-self: center;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 1.5rem 0 1rem;
	}
	
	.footer-main {
		gap: 1rem;
	}
	
	.footer-sections {
		gap: 1.5rem;
	}
	
	.footer-section h4 {
		font-size: 0.9rem;
		margin-bottom: 0.75rem;
	}
	
	.footer-section a {
		font-size: 0.8rem;
	}
	
	.footer-bottom-content {
		font-size: 0.8rem;
	}
	
	.contact-item {
		font-size: 0.8rem;
	}
}


