/* Breadcrumb Styles */
.breadcrumb {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #2980b9;
}

.breadcrumb-item.active {
    color: #2c3e50;
}

/* Main Content Styles */
.blog-post {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 30px;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.blog-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.blog-image:hover img {
    transform: scale(1.02);
}

.blog-title {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
}

.meta-item {
    margin-right: 20px;
}

.meta-item i {
    margin-right: 5px;
    color: #3498db;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.share-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-facebook { background: #1877f2; color: white; }
.btn-twitter { background: #1da1f2; color: white; }
.btn-linkedin { background: #0077b5; color: white; }
.btn-whatsapp { background: #25D366; color: white; }

.btn-facebook:hover, 
.btn-twitter:hover, 
.btn-linkedin:hover,
.btn-whatsapp:hover {
    opacity: 0.9;
    color: white;
    transform: translateY(-2px);
}

/* Content Styles */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.sidebar-widget:hover {
    transform: translateY(-3px);
}

.sidebar-widget h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

/* Related Posts */
.related-post-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9fa;
    transition: transform 0.2s ease;
}

.related-post-item:hover {
    transform: translateX(5px);
}

.related-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

.related-post-item a:hover {
    color: #3498db;
}

.post-date {
    font-size: 0.8rem;
    color: #666;
}

/* Popular Stores */
.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.store-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.store-item:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.store-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(0.2);
    transition: filter 0.2s ease;
}

.store-item:hover img {
    filter: grayscale(0);
}

/* Responsive Design */
@media (max-width: 991px) {
    .sidebar {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 1.8rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-image img {
        height: 300px;
    }

    .breadcrumb {
        padding: 10px;
        font-size: 0.9rem;
    }
} 