/** Shopify CDN: Minification failed

Line 71:1 Expected ":"

**/
/* Breadcrumb Layout */

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 14px;
}

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

.breadcrumb li:not(:first-child)::before {
  content: "›";
  margin: 0 6px;
  color: #999;
}


/* Grid Layout */


.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.blog-post-main {
  flex: 2;
  min-width: 0;
}

.blog-post-sidebar {
  flex: 1;
  min-width: 220px; /* or your preferred width */
  position: sticky;
  top: 40px;
  align-self: flex-start;
}
/* Disable sticky on small screens */
@media screen and (max-width: 900px) {
  .blog-post-sidebar {
    position: static;
    top: auto;
  }
}

@media screen and (max-width: 900px) {
  .blog-post-grid {
    flex-direction: column;
  }

  .blog-post-sidebar {
    order: -1;
  }
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
x}

body {
  background: #fff !important;
}


.breadcrumb a {
  color: #555;
  text-decoration: none;
}

.breadcrumb span {
  font-weight: 600;
}

/* Header + Intro */
.blog-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.catchy-paragraph {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Article Content Styling */
.article-content h2 {
  font-size: 28px;
  margin-top: 40px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.article-content h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #444;
}

.article-content h4 {
  font-size: 18px;
  margin-top: 20px;
  color: #555;
}

.article-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Shopify Product Promo */
.product-promo {
  margin: 40px 0;
  padding: 20px;
  background: #f9f9f9;
  border-left: 4px solid #4b0082;
}

/* Sidebar Boxes */
.blog-post-sidebar > div {
  margin-bottom: 40px;
}

.publish-meta {
  font-size: 14px;
  color: #777;
}

.author-box h2,
.usp-box h3,
.related-articles h3 {
  margin-bottom: 10px;
  font-size: 20px;
  border-left: 3px solid #4b0082;
  padding-left: 10px;
}

.author-box .author-name {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
  color: #4b0082;
  text-decoration: none;
}

.author-box p {
  font-size: 14px;
  color: #555;
}

.usp-list {
  list-style: none;
  padding: 0;
}

.usp-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.usp-list li::before {
  content: "✔";
  color: green;
  position: absolute;
  left: 0;
}

.related-articles ul {
  list-style: none;
  padding: 0;
}

.related-articles li {
  margin-bottom: 10px;
}

.related-articles a {
  text-decoration: none;
  color: #4b0082;
  font-weight: 500;
}

.related-articles a:hover {
  text-decoration: underline;
}
.featured-product-card {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 24px;
  margin: 48px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.featured-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.featured-product-card .card-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.featured-product-card img {
  max-width: 180px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.featured-product-card .card-text {
  flex: 1;
  min-width: 200px;
}

.featured-product-card .card-text h3 {
  font-size: 24px;
  margin: 0 0 12px;
  color: #222;
}

.featured-product-card .card-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.featured-product-card .card-text .button {
  background-color: #4b0082;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.featured-product-card .card-text .button:hover {
  background-color: #360064;
}
.seo-heading{
  font-size: 1.5rem;
  margin-bottom: -40px;
}
/* Optional: Top-right ribbon */
.featured-product-card::before {
  content: "⭐ Bestseller";
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ffbe00;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
  .featured-product-card .card-inner {
    flex-direction: column;
    text-align: center;
  }

  .featured-product-card img {
    max-width: 100%;
  }

  .featured-product-card .card-text .button {
    margin-top: 12px;
  }
}