/* inner.css: bundle of productos/blog.css + productos/product-template.css */

/* 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);
}

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

.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;
    }
}

@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 - Simplified */
.article-header {
    padding: 120px 0 60px;
    background: var(--light-gray);
    position: relative;
}

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

.article-meta {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--wine-red);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: var(--transition);
}

.back-link:hover {
    transform: translateX(-5px);
}

.article-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    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-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.hero-main-title {
    font-size: var(--text-5xl);
    font-weight: 200;
    line-height: var(--leading-tight);
    margin-bottom: 1.5rem;
    color: var(--text-black);
    max-width: 100%;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 100%;
    word-wrap: break-word;
}

/* Hero CTA Section */
.hero-cta-section {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wine-red);
    color: var(--primary-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    transition: var(--transition);
    border: 2px solid var(--wine-red);
    margin-bottom: 10px;
}

.hero-cta-primary:hover {
    background: #7A142F;
    border-color: #7A142F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 15, 37, 0.3);
    color: var(--primary-white);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--wine-red);
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    border: 2px solid var(--wine-red);
    transition: var(--transition);
    margin-bottom: 10px;
}

.hero-cta-secondary:hover {
    background: var(--wine-red);
    color: var(--primary-white);
    transform: translateY(-2px);
}

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

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

.meta-item i {
    color: var(--wine-red);
    font-size: 0.9rem;
}

/* Hero Image Badge */
.article-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    width: 100%;
    height: auto;
    background: #000;
}

.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);
    z-index: 10;
}

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

.article-hero-image img,
.article-hero-image video {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 20px;
    display: block;
}

/* Legacy styles removed for cleaner hero design */

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

/* Improved content wrapper layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.main-content {
    max-width: 100%;
    overflow: hidden;
    grid-column: 1;
    min-width: 0;
    box-sizing: border-box;
}

.content-section {
    line-height: var(--leading-relaxed);
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.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;
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

.content-section h2 {
    font-size: var(--text-3xl);
    font-weight: 300;
    margin: 3rem 0 1.5rem;
    color: var(--text-black);
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

.content-section p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-black);
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Ensure images don't overflow viewport */
.image-with-caption {
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.image-with-caption img,
.image-with-caption video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.image-caption {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--medium-gray);
    font-style: italic;
    max-width: 100%;
    word-wrap: break-word;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* 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);
}

/* Improved gallery layout */
.blog-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.blog-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    aspect-ratio: 16/9;
    box-sizing: border-box;
}

.blog-gallery-item img,
.blog-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    max-width: 100%;
    display: block;
    border-radius: 15px;
    box-sizing: border-box;
}

.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);
}

/* Improved sidebar layout */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    max-width: 100%;
    overflow: hidden;
    grid-column: 2;
    align-self: start;
}

/* Simplified sidebar */
.sidebar-section {
    background: var(--elegant-gray);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.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;
    max-width: 100%;
}

.related-article {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
    background: var(--light-gray);
    max-width: 100%;
}

.related-article img {
    width: 80px;
    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.instagram { 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;
}

/* Improved inspiration gallery */
.inspiration-gallery {
    margin: 3rem 0;
    max-width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--primary-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    max-width: 100%;
}

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

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

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    max-width: 100%;
}

.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: var(--primary-white);
    color: var(--wine-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(93, 15, 37, 0.1);
}

.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);
}

.blog-trust-section .trust-logos img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

/* Sticky CTA Sidebar */
.sticky-cta-sidebar {
    position: sticky;
    top: 140px;
    bottom: 40px;
    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 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-white);
    color: var(--wine-red);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    border: 2px solid var(--primary-white);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.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: var(--primary-white);
    border-color: var(--primary-white);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.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 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    border: 2px solid var(--primary-white);
    transition: var(--transition-slow);
}

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

.final-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;
}

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

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

/* Ensure bottom secondary CTA always side-swipes and text turns wine red on hover */
.final-cta-secondary {
    position: relative;
    overflow: hidden;
}
.final-cta-secondary:hover,
.final-cta-secondary:hover span,
.final-cta-secondary:hover i {
    color: var(--wine-red) !important;
}
.final-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;
}
.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 improvements */
@media (max-width: 1024px) {
    .article-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .article-hero-content {
        order: 1;
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
    }
    
    .article-hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    /* Hide sticky CTA on tablet and below */
    .sticky-cta-sidebar {
        display: none;
    }
}

/* Desktop specific styles for sticky CTA */
@media (min-width: 1025px) {
    .sticky-cta-sidebar {
        position: sticky;
        top: 120px;
        height: fit-content;
        z-index: 10;
    }
    
    .sticky-cta-card {
        animation: fadeInUp 0.6s ease-out;
    }
}

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

@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 40px;
    }
    
    .hero-main-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .hero-stat .stat-number {
        font-size: var(--text-xl);
    }
    
    .hero-badge {
        font-size: var(--text-xs);
        padding: 0.4rem 0.8rem;
    }
    
    .hero-cta-section {
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
        margin: 1.5rem 0;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        justify-content: center;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
        align-self: center;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .meta-item {
        justify-content: center;
    }
    
    .hero-image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .blog-image-gallery {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: var(--text-2xl);
        margin-bottom: 2rem;
    }
    
    .blog-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .blog-testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-sm);
    }
    
    .value-points {
        gap: 0.75rem;
    }
    
    .value-point {
        padding: 0.75rem;
    }
    
    .sidebar-cta-btn {
        padding: 0.875rem;
        font-size: var(--text-xs);
    }
    
    .blog-trust-section {
        padding: 2rem 0;
    }
    
    .blog-trust-section .trust-logos {
        gap: 2rem;
    }
    
    .blog-trust-section .trust-logos img {
        max-width: 100px;
        max-height: 40px;
    }
    
    .final-cta-section {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }
    
    .final-cta-content h3 {
        font-size: var(--text-2xl);
    }
    
    .final-cta-content p {
        font-size: var(--text-base);
        margin-bottom: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
    }
    
    .lead-paragraph {
        font-size: var(--text-lg);
        padding-left: 1rem;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-cta-section {
        margin: 1rem 0;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-sm);
        max-width: 100%;
    }
    
    .hero-meta {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .meta-item {
        font-size: var(--text-xs);
    }
    
    .hero-image-badge {
        position: static;
        margin: 1rem auto 0;
        align-self: center;
        width: fit-content;
    }
    
    .blog-testimonials {
        padding: 2rem 0;
    }
    
    .testimonials-title {
        font-size: var(--text-xl);
    }
    
    .blog-testimonial-card {
        padding: 1.25rem;
    }
    
    .blog-testimonial-card blockquote {
        font-size: var(--text-sm);
    }
    
    .value-point {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .value-point i {
        margin-bottom: 0.5rem;
    }
    
    .blog-trust-section .trust-logos {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .blog-trust-section .trust-logos img {
        max-width: 80px;
        max-height: 35px;
    }
    
    .final-cta-section {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .final-cta-content h3 {
        font-size: var(--text-xl);
    }
    
    .final-cta-guarantee {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
} 

/* Sticky Value Proposition Sidebar */
.sticky-value-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    max-width: 100%;
    overflow: hidden;
    grid-column: 2;
    align-self: start;
}

.sticky-value-sidebar .sidebar-section {
    background: var(--elegant-gray);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Responsive styles for sticky-value-sidebar */
@media (max-width: 1024px) {
    .sticky-value-sidebar {
        position: static;
        grid-column: 1;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .sticky-value-sidebar .sidebar-section {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .sticky-value-sidebar {
        margin-bottom: 1.5rem;
    }
    
    .sticky-value-sidebar .sidebar-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sticky-value-sidebar {
        margin-bottom: 1rem;
    }
    
    .sticky-value-sidebar .sidebar-section {
        padding: 1rem;
    }
}

/* Video Styles */
.hero-video {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    display: block !important;
    background: #000;
}

.article-hero-image .hero-video {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    display: block !important;
}

.showcase-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.video-item {
    text-align: center;
}

.video-item h4 {
    margin: 1rem 0 0.5rem;
    color: var(--wine-red);
    font-size: 1.1rem;
}

.video-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.video-card {
    position: relative;
    overflow: hidden;
}

.video-card .gallery-overlay {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-video {
        max-height: 300px;
    }
} 

/* Additional responsive improvements */
@media (max-width: 1200px) {
    .content-wrapper {
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        grid-column: 1;
        max-width: 100%;
    }
    
    .sidebar {
        position: static;
        order: -1;
        grid-column: 1;
    }
    
    .sticky-value-sidebar {
        position: static;
        grid-column: 1;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .sticky-value-sidebar .sidebar-section {
        margin-bottom: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-card.large,
    .gallery-card.wide {
        grid-column: span 1;
    }
    
    .blog-image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        max-width: 100%;
        overflow: hidden;
    }
    
    .article-hero-image {
        height: auto;
    }
    
    /* Hide sticky CTA on tablet and below */
    .sticky-cta-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .image-with-caption img,
    .image-with-caption video {
        height: 200px;
    }
    
    .gallery-card img,
    .gallery-card video {
        height: 200px;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
    
    .related-article {
        padding: 0.75rem;
    }
    
    .related-article img {
        width: 60px;
        height: 45px;
    }
    
    .article-hero-image {
        height: auto;
    }
    
    .hero-main-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card.large,
    .gallery-card.wide {
        grid-column: span 1;
    }
    
    .image-with-caption img,
    .image-with-caption video {
        height: 150px;
    }
    
    .gallery-card img,
    .gallery-card video {
        height: 150px;
    }
    
    .sidebar-section {
        padding: 1rem;
    }
    
    .related-article {
        padding: 0.5rem;
    }
    
    .related-article img {
        width: 50px;
        height: 40px;
    }
    
    .blog-image-gallery {
        grid-template-columns: 1fr;
        max-width: 100%;
        overflow: hidden;
    }
    
    .article-hero-image {
        height: auto;
    }
    
    .hero-main-title {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
    }
    
    .lead-paragraph {
        font-size: var(--text-lg);
        padding-left: 1rem;
    }
}

/* Ensure all images and videos are properly contained */
img, video {
    max-width: 100%;
    height: auto;
}

.gallery-video,
.hero-video,
.showcase-video {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 100%;
    overflow: hidden;
}

/* Ensure proper spacing for mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .content-section {
        padding: 0;
    }
} 

/* 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;
	}
}

@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;
	}
}



