/** Shopify CDN: Minification failed

Line 1521:0 Unexpected "<"

**/
/*
  DOZO Blog Styles — extracted from puredozo.com
  Font: Chillax (geometric sans-serif)
  Platform: Shopify Dawn v15.3.0

  Путь в Shopify: assets/blog-styles.css
  Подключение: {{ 'blog-styles.css' | asset_url | stylesheet_tag }}
*/

/* ===== CSS VARIABLES — puredozo.com originals ===== */
:root {
  --pd-bg: #2A005E;
  --pd-bg-dark: #1E0044;
  --pd-accent: #4D008C;
  --pd-yellow: #F2FF00;
  --pd-yellow-soft: #FEF467;
  --pd-gradient-start: #D623ED;
  --pd-gradient-end: #8400D6;
  --pd-purple-light: #A65EFF;
  --pd-red: #F5333F;
  --pd-white: #FFFFFF;
  --pd-black: #121212;

  --pd-page-width: 1200px;
  --pd-grid-gap: 8px;
  --pd-grid-gap-mobile: 4px;

  --pd-btn-radius: 12px;
  --pd-btn-pill-radius: 40px;
  --pd-btn-height: 47px;

  --pd-card-radius: 0px;

  --pd-font: 'Chillax', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== BASE ===== */
.puredozo-blog,
.puredozo-article {
  font-family: var(--pd-font);
  font-weight: 700;
  background: var(--pd-bg);
  color: var(--pd-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.puredozo-blog *,
.puredozo-article * {
  box-sizing: border-box;
}

.puredozo-blog h1, .puredozo-blog h2, .puredozo-blog h3,
.puredozo-blog h4, .puredozo-blog h5, .puredozo-blog h6,
.puredozo-article h1, .puredozo-article h2, .puredozo-article h3,
.puredozo-article h4, .puredozo-article h5, .puredozo-article h6 {
  font-weight: 400;
  line-height: 1.2;
}

.puredozo-blog a,
.puredozo-article a {
  color: inherit;
  text-decoration: none;
}

.puredozo-blog img,
.puredozo-article img {
  max-width: 100%;
  display: block;
}

.blog-container {
  max-width: var(--pd-page-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BLOG HEADER ===== */
.blog-header {
  background: var(--pd-bg);
  padding: 60px 0 40px;
  text-align: center;
}

.blog-title {
  font-size: 64px;
  font-weight: 700 !important;
  color: var(--pd-yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 12px 0;
}

.blog-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== FILTERS ===== */
.blog-filters {
  display: flex;
  gap: 8px;
  margin: 32px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--pd-white);
  padding: 0 30px;
  min-height: var(--pd-btn-height);
  border-radius: var(--pd-btn-pill-radius);
  font-family: var(--pd-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  border-color: var(--pd-yellow);
  color: var(--pd-yellow);
}

.filter-btn.active {
  background: var(--pd-yellow);
  color: var(--pd-black);
  border-color: var(--pd-yellow);
}

/* ===== ARTICLES GRID ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pd-grid-gap);
  margin-bottom: 60px;
}

/* ===== ARTICLE CARD ===== */
.article-card {
  background: var(--pd-bg-dark);
  border-radius: var(--pd-card-radius);
  overflow: hidden;
  transition: transform 0.3s;
}

.article-card:hover {
  transform: scale(1.03);
}

.article-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--pd-black);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.article-card:hover .article-image img {
  transform: scale(1.03);
}

.article-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.badge {
  background: var(--pd-yellow);
  color: var(--pd-black);
  padding: 4px 12px;
  border-radius: var(--pd-btn-radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: var(--pd-yellow);
  color: var(--pd-black);
}

.badge-popular {
  background: linear-gradient(135deg, var(--pd-gradient-start), var(--pd-gradient-end));
  color: var(--pd-white);
}

.article-content {
  padding: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-meta svg {
  width: 14px;
  height: 14px;
}

.article-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700 !important;
  line-height: 1.3;
}

.article-title a {
  color: var(--pd-white);
  transition: color 0.2s;
}

.article-title a:hover {
  color: var(--pd-yellow);
}

.article-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ===== TAGS ===== */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  background: rgba(242, 255, 0, 0.12);
  color: var(--pd-yellow);
  padding: 4px 10px;
  border-radius: var(--pd-btn-radius);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
  border: none;
}

.tag:hover {
  background: var(--pd-yellow);
  color: var(--pd-black);
}

/* ===== ARTICLE CARD FOOTER ===== */
.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pd-gradient-start), var(--pd-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-initials {
  font-size: 15px;
  font-weight: 700;
  color: var(--pd-white);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--pd-white);
}

.author-role {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== BUTTONS ===== */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 20px;
  border-radius: var(--pd-btn-radius);
  background: var(--pd-yellow);
  color: var(--pd-black);
  font-family: var(--pd-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.read-more-btn:hover {
  opacity: 0.9;
}

.read-more-btn svg {
  width: 14px;
  height: 14px;
}

/* ===== PAGINATION ===== */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-bottom: 60px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--pd-btn-height);
  padding: 0 30px;
  border-radius: var(--pd-btn-radius);
  background: transparent;
  color: var(--pd-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: var(--pd-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s;
}

.pagination-btn:hover {
  background: var(--pd-yellow);
  color: var(--pd-black);
  border-color: var(--pd-yellow);
}

.pagination-info {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================================================
   ARTICLE SINGLE PAGE
   =================================================================== */

/* ===== ARTICLE HERO ===== */
.article-hero {
  background: var(--pd-bg);
  padding: 80px 0 40px;
}

.article-hero .container {
  max-width: var(--pd-page-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--pd-yellow);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Tags in hero */
.article-tags-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag-hero {
  background: rgba(242, 255, 0, 0.12);
  color: var(--pd-yellow);
  padding: 4px 10px;
  border-radius: var(--pd-btn-radius);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
}

.tag-hero:hover {
  background: var(--pd-yellow);
  color: var(--pd-black);
}

/* Title */
.article-hero-title {
  font-size: 42px;
  font-weight: 700 !important;
  color: var(--pd-white);
  line-height: 1.15;
  margin: 0 0 20px 0;
  max-width: 860px;
}

/* Meta */
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--pd-yellow);
}

/* ===== FEATURED IMAGE ===== */
.article-featured-image {
  margin: 40px auto;
  max-width: var(--pd-page-width);
  padding: 0 20px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--pd-card-radius);
}

/* ===== ARTICLE LAYOUT ===== */
.article-container {
  max-width: var(--pd-page-width);
  margin: 0 auto;
  padding: 0 20px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 32px 0 80px;
}

/* ===== ARTICLE CONTENT (RTE) ===== */
.article-main {
  min-width: 0;
}

.article-content.rte {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 48px;
}

.article-content.rte h2 {
  font-size: 28px;
  font-weight: 700 !important;
  color: var(--pd-yellow);
  margin: 40px 0 16px;
  text-transform: uppercase;
}

.article-content.rte h3 {
  font-size: 22px;
  font-weight: 700 !important;
  color: var(--pd-white);
  margin: 32px 0 12px;
}

.article-content.rte h4 {
  font-size: 18px;
  font-weight: 700 !important;
  color: var(--pd-white);
  margin: 24px 0 10px;
}

.article-content.rte p {
  margin: 0 0 20px;
}

.article-content.rte a {
  color: var(--pd-yellow);
  border-bottom: 1px solid rgba(242, 255, 0, 0.3);
  transition: border-color 0.2s;
}

.article-content.rte a:hover {
  border-bottom-color: var(--pd-yellow);
}

/* Override: buttons inside product cards must keep their own colors */
.article-content.rte .product-card-inline a {
  color: inherit;
  border-bottom: none;
}

.article-content.rte .product-inline-btn {
  color: var(--pd-black) !important;
  border-bottom: none !important;
}

.article-content.rte .product-inline-title a {
  color: var(--pd-white);
  border-bottom: none;
}

.article-content.rte .product-inline-title a:hover {
  color: var(--pd-yellow);
}

.article-content.rte ul,
.article-content.rte ol {
  margin: 20px 0;
  padding-left: 28px;
}

.article-content.rte li {
  margin-bottom: 8px;
}

.article-content.rte blockquote {
  border-left: 3px solid var(--pd-yellow);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(242, 255, 0, 0.04);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--pd-card-radius);
}

.article-content.rte code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  color: var(--pd-yellow);
}

/* ===== IMAGES IN CONTENT ===== */
.content-image-left {
  float: left;
  margin: 4px 24px 20px 0;
  max-width: 45%;
}

.content-image-right {
  float: right;
  margin: 4px 0 20px 24px;
  max-width: 45%;
}

.content-image-center {
  margin: 32px 0;
  text-align: center;
  clear: both;
}

.content-image-left img,
.content-image-right img,
.content-image-center img {
  width: 100%;
  height: auto;
  border-radius: var(--pd-card-radius);
}

.image-caption {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  text-align: center;
}

/* ===== SHARE ===== */
.article-share {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 20px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.share-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 8px 0 0;
  text-transform: uppercase;
}

.share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--pd-btn-radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--pd-white);
  font-family: var(--pd-font);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.share-btn:hover {
  background: var(--pd-yellow);
  color: var(--pd-black);
}

/* ===== FULL AUTHOR CARD ===== */
.author-card-full {
  background: var(--pd-bg-dark);
  border-radius: var(--pd-card-radius);
  padding: 32px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 24px;
}

.author-card-avatar-wrap {
  grid-row: 1 / 3;
}

.author-card-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pd-gradient-start), var(--pd-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.author-initials-large {
  font-size: 40px;
  font-weight: 700;
  color: var(--pd-white);
}

.author-card-header {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.author-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-card-name {
  font-size: 24px;
  font-weight: 700 !important;
  color: var(--pd-yellow);
  margin: 0;
}

.author-card-role {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.author-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.author-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(242, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-yellow);
  transition: all 0.2s;
}

.author-social-link:hover {
  background: var(--pd-yellow);
  color: var(--pd-black);
}

.author-card-bio {
  margin-bottom: 16px;
}

.author-card-bio p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

.author-card-stats {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--pd-yellow);
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
  margin: 60px 0;
}

.related-title {
  font-size: 28px;
  font-weight: 700 !important;
  color: var(--pd-white);
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pd-grid-gap);
}

.related-card {
  background: var(--pd-bg-dark);
  border-radius: var(--pd-card-radius);
  overflow: hidden;
  transition: transform 0.3s;
}

.related-card:hover {
  transform: scale(1.03);
}

.related-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--pd-black);
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-content {
  padding: 14px;
}

.related-card-title {
  font-size: 15px;
  font-weight: 700 !important;
  color: var(--pd-white);
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.related-date {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== COMMENTS ===== */
.article-comments {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comments-title {
  font-size: 28px;
  font-weight: 700 !important;
  color: var(--pd-white);
  text-transform: uppercase;
  margin: 0 0 32px 0;
}

.comment-item {
  background: var(--pd-bg-dark);
  border-radius: var(--pd-card-radius);
  padding: 20px;
  margin-bottom: 8px;
}

.comment-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pd-gradient-start), var(--pd-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--pd-white);
  flex-shrink: 0;
}

.comment-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.comment-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--pd-white);
}

.comment-date {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.comment-content {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ===== COMMENT FORM ===== */
.comment-form-title {
  font-size: 22px;
  font-weight: 700 !important;
  color: var(--pd-white);
  margin: 40px 0 20px 0;
}

.form-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 14px 20px;
  border-radius: var(--pd-btn-radius);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pd-btn-radius);
  padding: 12px 14px;
  color: var(--pd-white);
  font-size: 15px;
  font-family: var(--pd-font);
  font-weight: 500;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pd-yellow);
}

.comment-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--pd-btn-height);
  padding: 0 30px;
  border-radius: var(--pd-btn-radius);
  background: var(--pd-yellow);
  color: var(--pd-black);
  font-family: var(--pd-font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.comment-submit-btn:hover {
  opacity: 0.9;
}

/* ===== SIDEBAR ===== */
.article-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.sidebar-widget {
  background: var(--pd-bg-dark);
  border-radius: var(--pd-card-radius);
  padding: 24px;
  margin-bottom: 8px;
}

.widget-title {
  font-size: 18px;
  font-weight: 700 !important;
  color: var(--pd-yellow);
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

/* TOC */
.toc-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 14px;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.toc-nav a:hover,
.toc-nav a.active {
  color: var(--pd-yellow);
  border-left-color: var(--pd-yellow);
}

/* Popular posts */
.popular-post-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding-left 0.2s;
}

.popular-post-item:last-child {
  border-bottom: none;
}

.popular-post-item:hover {
  padding-left: 4px;
}

.popular-post-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--pd-card-radius);
  flex-shrink: 0;
}

.popular-post-content h4 {
  font-size: 13px;
  font-weight: 700 !important;
  color: var(--pd-white);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.popular-date {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--pd-gradient-start), var(--pd-gradient-end));
}

.cta-content h3 {
  color: var(--pd-white);
  font-size: 18px;
  font-weight: 700 !important;
  margin: 0 0 8px 0;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--pd-btn-radius);
  padding: 12px 14px;
  color: var(--pd-white);
  font-size: 14px;
  font-family: var(--pd-font);
  font-weight: 500;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--pd-yellow);
}

.newsletter-form button {
  min-height: var(--pd-btn-height);
  padding: 0 24px;
  border-radius: var(--pd-btn-radius);
  background: var(--pd-yellow);
  color: var(--pd-black);
  font-family: var(--pd-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* ===================================================================
   PRODUCT CARD INLINE
   =================================================================== */
.product-card-inline {
  background: var(--pd-bg-dark);
  border-radius: var(--pd-card-radius);
  overflow: hidden;
  margin: 40px 0;
  transition: transform 0.3s;
}

.product-card-inline:hover {
  transform: scale(1.01);
}

.product-inline-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
}

.product-inline-image {
  position: relative;
  background: var(--pd-black);
  overflow: hidden;
}

.product-inline-image a {
  display: block;
  height: 100%;
}

.product-inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.3s;
}

.product-card-inline:hover .product-inline-image img {
  transform: scale(1.03);
}

.product-inline-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-inline-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(242, 255, 0, 0.12);
  color: var(--pd-yellow);
  padding: 4px 10px;
  border-radius: var(--pd-btn-radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
}

.product-inline-tag svg {
  width: 12px;
  height: 12px;
}

.product-inline-title {
  font-size: 22px;
  font-weight: 700 !important;
  color: var(--pd-white);
  line-height: 1.3;
  margin: 0;
}

.product-inline-title a {
  color: var(--pd-white);
  transition: color 0.2s;
}

.product-inline-title a:hover {
  color: var(--pd-yellow);
}

.product-inline-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.product-inline-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.star-filled,
.star-half {
  color: var(--pd-yellow);
}

.star-empty {
  color: rgba(242, 255, 0, 0.2);
}

.product-inline-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-inline-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-compare {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-size: 28px;
  font-weight: 700;
  color: var(--pd-yellow);
}

.price-current.sale {
  color: var(--pd-yellow);
}

.price-discount {
  background: var(--pd-red);
  color: var(--pd-white);
  padding: 2px 8px;
  border-radius: var(--pd-btn-radius);
  font-size: 12px;
  font-weight: 700;
}

.product-inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--pd-btn-height);
  padding: 0 30px;
  border-radius: var(--pd-btn-radius);
  background: var(--pd-yellow);
  color: var(--pd-black);
  font-family: var(--pd-font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.product-inline-btn:hover {
  opacity: 0.9;
}

.product-inline-features ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-inline-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.product-inline-features li svg {
  color: #10b981;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.product-inline-recommendation {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 255, 0, 0.06);
  padding: 10px 16px;
  margin-top: 16px;
}

.product-inline-recommendation svg {
  color: #10b981;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.product-inline-recommendation span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 990px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .articles-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-title {
    font-size: 48px;
  }

  .article-hero-title {
    font-size: 34px;
  }
}

@media (max-width: 750px) {
  .articles-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: var(--pd-grid-gap-mobile);
  }

  .product-inline-container {
    grid-template-columns: 1fr;
  }

  .product-inline-image img {
    min-height: 200px;
  }

  .blog-title {
    font-size: 36px;
  }

  .article-hero-title {
    font-size: 28px;
  }

  .article-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .content-image-left,
  .content-image-right {
    float: none;
    max-width: 100%;
    margin: 20px 0;
  }

  .author-card-header {
    flex-direction: column;
    text-align: center;
  }

  .author-card-avatar {
    margin: 0 auto;
  }

  .author-social {
    justify-content: center;
  }

  .author-card-stats {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .article-hero-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-inline-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .product-inline-btn {
    width: 100%;
  }
}
</style>
