/* ============================================================
   WhiteStudio.team — Single Sidebar widget-area
   All standard WordPress widget models, brand-styled.
   Loads after styles.css + post.css (reuses aside-* widgets).
   ============================================================ */

/* ---------- Page shell (widgets only) ---------- */
.wa-head {
  padding: 40px 0 8px;
}
.wa-head .eyebrow { margin-bottom: 14px; }
.wa-head h1 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.wa-head p { font-size: 16px; color: var(--ink-3); max-width: 640px; margin: 0; }

.widget-area {
  padding: 28px 0 80px;
}
/* Responsive masonry-ish columns at native sidebar width (300px) */
.single-sidebar {
  columns: 300px;
  column-gap: 28px;
}
.single-sidebar > .widget {
  break-inside: avoid;
  margin: 0 0 28px;
  display: inline-block;
  width: 100%;
}

/* ============================================================
   Base widget shell + title
   ============================================================ */
.widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-4);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.widget-title::before {
  content: "";
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: var(--brand-gradient);
  flex: none;
}

/* Generic list reset used by several widgets */
.widget ul { list-style: none; margin: 0; padding: 0; }

/* ============================================================
   widget_search
   ============================================================ */
.widget_search form { display: flex; gap: 8px; }
.widget_search .search-field {
  flex: 1;
  min-width: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font: 14px var(--bs-body-font-family);
  color: var(--ink-1);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.widget_search .search-field::placeholder { color: var(--ink-4); }
.widget_search .search-field:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}
.widget_search .search-submit {
  flex: none;
  border: 0;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #fff;
  width: 44px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s ease, box-shadow .2s ease;
}
.widget_search .search-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(101,46,186,0.32); }
.widget_search .search-submit svg { width: 17px; height: 17px; }

/* ============================================================
   Core block widgets
   Gutenberg's default widgets use different class names from the
   classic widgets above. Keep their cards and controls consistent
   with the custom WS widgets in every sidebar.
   ============================================================ */
.widget.widget_block > :last-child { margin-bottom: 0; }
.widget.widget_block .wp-block-heading,
.widget.widget_search .wp-block-search__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-4);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.25;
}
.widget.widget_block .wp-block-heading::before,
.widget.widget_search .wp-block-search__label::before {
  content: "";
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: var(--brand-gradient);
  flex: none;
}

/* Search block */
.widget.widget_search .wp-block-search {
  display: block;
  margin: 0;
}
.widget.widget_search .wp-block-search__inside-wrapper {
  display: flex;
  align-items: stretch;
  gap: 8px;
  border: 0;
  padding: 0;
}
.widget.widget_search .wp-block-search__input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 13px;
  font: 14px var(--bs-body-font-family);
  color: var(--ink-1);
  outline: none;
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.widget.widget_search .wp-block-search__input::placeholder { color: var(--ink-4); }
.widget.widget_search .wp-block-search__input:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}
.widget.widget_search .wp-block-search__button {
  flex: none;
  min-height: 44px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #fff;
  font: 700 13px var(--bs-body-font-family);
  padding: 0 15px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}
.widget.widget_search .wp-block-search__button:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(101,46,186,0.32);
}

/* ============================================================
   widget_recent_entries (with thumbnails)
   ============================================================ */
.widget_recent_entries li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
}
.widget_recent_entries li:first-child { padding-top: 0; border-top: 0; }
.widget_recent_entries .re-thumb {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(45deg, var(--surface-3), var(--surface-3) 6px, var(--surface-2) 6px, var(--surface-2) 12px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-4);
  overflow: hidden;
}
.widget_recent_entries .re-thumb svg { width: 18px; height: 18px; }
.widget_recent_entries .re-body { min-width: 0; }
.widget_recent_entries a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-1);
  line-height: 1.35;
  display: block;
}
.widget_recent_entries a:hover { color: var(--brand-purple); }
.widget_recent_entries .post-date {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 4px;
}

/* Core Latest Posts block */
.widget.widget_block .wp-block-latest-posts { list-style: none; margin: 0; padding: 0; }
.widget.widget_block .wp-block-latest-posts > li {
  min-height: 0;
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
  line-height: 1.35;
}
.widget.widget_block .wp-block-latest-posts > li:first-child {
  padding-top: 0;
  border-top: 0;
}
.widget.widget_block .wp-block-latest-posts__post-title {
  display: block;
  color: var(--ink-1);
  font-size: 14px;
  font-weight: 600;
}
.widget.widget_block .wp-block-latest-posts__post-title:hover { color: var(--brand-purple); }
.widget.widget_block .wp-block-latest-posts__post-date {
  display: block;
  color: var(--ink-4);
  font-size: 12px;
  margin-top: 4px;
}
.widget.widget_block .wp-block-latest-posts__post-excerpt {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
  margin: 6px 0 0;
}
.widget.widget_block .wp-block-latest-posts__featured-image {
  float: left;
  width: 56px;
  height: 56px;
  margin: 0 12px 3px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2);
}
.widget.widget_block .wp-block-latest-posts__featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget.widget_block .wp-block-latest-posts > li::after { content: ""; display: block; clear: both; }

/* ============================================================
   widget_categories
   ============================================================ */
.widget_categories li a,
.widget_pages li a,
.widget_archive li a,
.widget_nav_menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.widget_categories li:first-child a,
.widget_pages li:first-child a,
.widget_archive li:first-child a,
.widget_nav_menu li:first-child a { border-top: 0; padding-top: 0; }
.widget_categories li a:hover,
.widget_pages li a:hover,
.widget_archive li a:hover,
.widget_nav_menu li a:hover { color: var(--brand-purple); }
.widget_categories li a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--brand-pink);
  flex: none;
  margin-right: 2px;
}
.widget_categories .count,
.widget_archive .count {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-4);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: auto;
}
.widget_categories .cat-label { flex: 1; min-width: 0; }
/* Children indentation */
.widget_pages .children,
.widget_nav_menu .sub-menu { padding-left: 16px; }

/* Core Archives, Categories, Page List, and Navigation blocks */
.widget.widget_block .wp-block-archives-list,
.widget.widget_block .wp-block-categories-list,
.widget.widget_block .wp-block-page-list,
.widget.widget_block .wp-block-navigation__container {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget.widget_block .wp-block-archives-list li,
.widget.widget_block .wp-block-categories-list li,
.widget.widget_block .wp-block-page-list li,
.widget.widget_block .wp-block-navigation__container > li {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-2);
  list-style: none;
}
.widget.widget_block .wp-block-archives-list > li:first-child,
.widget.widget_block .wp-block-categories-list > li:first-child,
.widget.widget_block .wp-block-page-list > li:first-child,
.widget.widget_block .wp-block-navigation__container > li:first-child { border-top: 0; }
.widget.widget_block .wp-block-archives-list a,
.widget.widget_block .wp-block-categories-list a,
.widget.widget_block .wp-block-page-list a,
.widget.widget_block .wp-block-navigation__container > li > a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.widget.widget_block .wp-block-archives-list > li:first-child > a,
.widget.widget_block .wp-block-categories-list > li:first-child > a,
.widget.widget_block .wp-block-page-list > li:first-child > a,
.widget.widget_block .wp-block-navigation__container > li:first-child > a { padding-top: 0; }
.widget.widget_block .wp-block-archives-list a::before,
.widget.widget_block .wp-block-categories-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--brand-pink);
  flex: none;
}
.widget.widget_block .wp-block-archives-list a:hover,
.widget.widget_block .wp-block-categories-list a:hover,
.widget.widget_block .wp-block-page-list a:hover,
.widget.widget_block .wp-block-navigation__container > li > a:hover { color: var(--brand-purple); }
.widget.widget_block .wp-block-categories-list ul,
.widget.widget_block .wp-block-page-list ul,
.widget.widget_block .wp-block-navigation__submenu-container {
  display: block;
  margin: 0 0 0 16px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

/* ============================================================
   widget_archive — dropdown variant
   ============================================================ */
.widget_archive select,
.widget_categories select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font: 14px var(--bs-body-font-family);
  color: var(--ink-1);
  outline: none;
  cursor: pointer;
}
.widget_archive select:focus { border-color: var(--brand-purple); }

.widget.widget_block .wp-block-archives-dropdown select,
.widget.widget_block .wp-block-categories-dropdown select {
  width: 100%;
  min-height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 13px;
  color: var(--ink-1);
  font: 14px var(--bs-body-font-family);
}

/* ============================================================
   widget_tag_cloud
   ============================================================ */
.tagcloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tagcloud a {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1;
  transition: all .15s ease;
}
.tagcloud a:hover {
  background: var(--accent-soft);
  border-color: color-mix(in oklab, var(--brand-purple) 35%, var(--line));
  color: var(--accent-ink);
  transform: translateY(-1px);
}

/* Core Tag Cloud block */
.widget.widget_block .wp-block-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.widget.widget_block .wp-block-tag-cloud a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 13px !important;
  font-weight: 600;
  line-height: 1.2;
}
.widget.widget_block .wp-block-tag-cloud a:hover {
  border-color: var(--brand-purple);
  background: var(--accent-soft);
  color: var(--accent-ink);
}

/* ============================================================
   widget_recent_comments
   ============================================================ */
.widget_recent_comments li {
  display: flex;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid var(--line-2);
}
.widget_recent_comments li:first-child { padding-top: 0; border-top: 0; }
.widget_recent_comments .rc-av {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.widget_recent_comments .rc-body { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.widget_recent_comments .rc-body .comment-author-link { color: var(--ink-1); font-weight: 700; }
.widget_recent_comments .rc-body a.rc-post { color: var(--brand-purple); font-weight: 600; }

/* Core Latest Comments block */
.widget.widget_block .wp-block-latest-comments { margin: 0; padding: 0; }
.widget.widget_block .wp-block-latest-comments__comment {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--line-2);
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
}
.widget.widget_block .wp-block-latest-comments__comment:first-child {
  padding-top: 0;
  border-top: 0;
}
.widget.widget_block .wp-block-latest-comments__comment-author,
.widget.widget_block .wp-block-latest-comments__comment-link {
  color: var(--ink-1);
  font-weight: 700;
}
.widget.widget_block .wp-block-latest-comments__comment-link:hover { color: var(--brand-purple); }
.widget.widget_block .wp-block-latest-comments__comment-date {
  color: var(--ink-4);
  font-size: 12px;
}
.widget.widget_block .wp-block-latest-comments__comment-excerpt p { margin: 5px 0 0; }
.widget.widget_block .no-comments {
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--ink-4);
  font-size: 13px;
  text-align: center;
}

/* ============================================================
   widget_calendar
   ============================================================ */
.widget_calendar .cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.widget_calendar .cal-nav strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-1);
  font-weight: 600;
}
.widget_calendar .cal-nav a {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink-3);
  display: grid; place-items: center;
}
.widget_calendar .cal-nav a:hover { border-color: var(--brand-purple); color: var(--brand-purple); }
.widget_calendar table { width: 100%; border-collapse: collapse; }
.widget_calendar th {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
  text-align: center;
}
.widget_calendar td {
  text-align: center;
  padding: 0;
}
.widget_calendar td a, .widget_calendar td span {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  margin: 1px auto;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.widget_calendar td span { color: var(--ink-4); }
.widget_calendar td a {
  font-weight: 600;
  background: var(--surface-2);
  color: var(--brand-purple);
}
.widget_calendar td a:hover { background: var(--accent-soft); }
.widget_calendar td.today a, .widget_calendar td.today span {
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 700;
}

/* Core Calendar block */
.widget.widget_block .wp-block-calendar table { width: 100%; border-collapse: collapse; margin: 0; }
.widget.widget_block .wp-block-calendar caption {
  margin-bottom: 8px;
  color: var(--ink-1);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.widget.widget_block .wp-block-calendar th {
  padding: 6px 0;
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.widget.widget_block .wp-block-calendar td { padding: 3px 0; text-align: center; color: var(--ink-3); font-size: 13px; }
.widget.widget_block .wp-block-calendar td a {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--brand-purple);
  font-weight: 700;
}
.widget.widget_block .wp-block-calendar td a:hover { background: var(--brand-gradient); color: #fff; }
.widget.widget_block .wp-block-calendar .wp-calendar-nav { display: flex; justify-content: space-between; margin-top: 10px; font-size: 13px; }
.widget.widget_block .wp-block-calendar .wp-calendar-nav a { color: var(--brand-purple); font-weight: 600; }

/* ============================================================
   widget_meta / widget_rss generic link list
   ============================================================ */
.widget_meta li a,
.widget_rss .rss-meta a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 0;
  border-top: 1px solid var(--line-2);
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.widget_meta li:first-child a { border-top: 0; padding-top: 0; }
.widget_meta li a:hover { color: var(--brand-purple); }
.widget_meta li a svg { width: 15px; height: 15px; color: var(--ink-4); }
.widget_meta li a:hover svg { color: var(--brand-purple); }

/* ============================================================
   widget_rss feed
   ============================================================ */
.widget_rss .widget-title svg { width: 14px; height: 14px; color: var(--warn); }
.widget_rss .rss-item {
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
}
.widget_rss .rss-item:first-child { padding-top: 0; border-top: 0; }
.widget_rss .rsswidget {
  font-size: 14px; font-weight: 600; color: var(--ink-1); line-height: 1.35;
}
.widget_rss .rsswidget:hover { color: var(--brand-purple); }
.widget_rss .rss-date { display: block; font-size: 12px; color: var(--ink-4); margin: 4px 0 6px; }
.widget_rss .rssSummary { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin: 0; }

/* Core RSS block */
.widget.widget_block .wp-block-rss { list-style: none; margin: 0; padding: 0; }
.widget.widget_block .wp-block-rss__item {
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
}
.widget.widget_block .wp-block-rss__item:first-child { padding-top: 0; border-top: 0; }
.widget.widget_block .wp-block-rss__item-title a {
  color: var(--ink-1);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.widget.widget_block .wp-block-rss__item-title a:hover { color: var(--brand-purple); }
.widget.widget_block .wp-block-rss__item-publish-date,
.widget.widget_block .wp-block-rss__item-author { color: var(--ink-4); font-size: 12px; }
.widget.widget_block .wp-block-rss__item-excerpt { color: var(--ink-3); font-size: 13px; line-height: 1.5; }

/* ============================================================
   widget_text / about
   ============================================================ */
.widget_text .textwidget { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.about-widget { text-align: center; }
.about-widget .av {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: 0 10px 24px rgba(101,46,186,0.32);
}
.about-widget h5 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink-1); margin: 0 0 6px; }
.about-widget p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; margin: 0 0 14px; }
.about-widget .about-stats {
  display: flex; justify-content: center; gap: 22px;
  padding-top: 14px; border-top: 1px solid var(--line-2);
}
.about-widget .about-stats .n { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink-1); }
.about-widget .about-stats .l { font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============================================================
   widget_media_image
   ============================================================ */
.widget_media_image .img-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(45deg, var(--surface-3), var(--surface-3) 8px, var(--surface-2) 8px, var(--surface-2) 16px);
  display: grid; place-items: center;
  color: var(--ink-4);
  font: 600 12px ui-monospace, monospace;
}
.widget_media_image figcaption { font-size: 12.5px; color: var(--ink-4); margin-top: 9px; text-align: center; }

/* Core image, text, and social-link blocks */
.widget.widget_block .wp-block-image { margin: 0; }
.widget.widget_block .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.widget.widget_block .wp-block-image figcaption { margin-top: 8px; color: var(--ink-4); font-size: 12px; text-align: center; }
.widget.widget_block .wp-block-social-links { gap: 9px; margin: 0; }
.widget.widget_block .wp-block-social-link { transition: transform .15s ease; }
.widget.widget_block .wp-block-social-link:hover { transform: translateY(-2px); }
.widget.widget_block p { color: var(--ink-3); font-size: 14px; line-height: 1.6; }

/* ============================================================
   Newsletter / subscribe (custom)
   ============================================================ */
.widget_newsletter {
    padding: 13px;
    background: var(--ink-1);
    border-color: var(--ink-1);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.widget_newsletter::before {
  content: "";
  position: absolute; top: -50px; right: -50px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(101,46,186,0.5), transparent 70%);
}
.widget_newsletter > * { position: relative; }
.widget_newsletter .widget-title { color: rgba(255,255,255,0.6); }
.widget_newsletter h5 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; margin: 0 0 7px; }
.widget_newsletter p { font-size: 13.5px; color: #aab2c5; line-height: 1.5; margin: 0 0 14px; }
.widget_newsletter .nl-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 11px 14px;
  font: 14px var(--bs-body-font-family);
  color: #fff;
  outline: none;
  margin-bottom: 10px;
}
.widget_newsletter .nl-input::placeholder { color: #8a93a8; }
.widget_newsletter .nl-input:focus { border-color: var(--brand-pink); }
.widget_newsletter .nl-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--brand-pink);
  color: #fff;
  font: 600 14px var(--bs-body-font-family);
  padding: 12px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.widget_newsletter .nl-btn:hover { background: #e63b80; transform: translateY(-1px); }
.widget_newsletter .nl-note { font-size: 11.5px; color: #6e7588; text-align: center; margin: 10px 0 0; }

/* ============================================================
   Popular posts (numbered)
   ============================================================ */
.widget_popular li {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 0;
  border-top: 1px solid var(--line-2);
}
.widget_popular li:first-child { padding-top: 0; border-top: 0; }
.widget_popular .rank {
  flex: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--line);
  width: 26px;
  -webkit-text-stroke: 1px var(--ink-4);
  text-align: center;
}
.widget_popular li:nth-child(1) .rank { color: var(--brand-purple); -webkit-text-stroke: 0; }
.widget_popular li:nth-child(2) .rank { color: var(--brand-pink); -webkit-text-stroke: 0; }
.widget_popular a { font-size: 13.5px; font-weight: 600; color: var(--ink-1); line-height: 1.35; }
.widget_popular a:hover { color: var(--brand-purple); }
.widget_popular .pp-meta { display: block; font-size: 11.5px; color: var(--ink-4); margin-top: 3px; }

/* ============================================================
   Social links
   ============================================================ */
.widget_social .social-row { display: flex; flex-wrap: wrap; gap: 9px; }
.widget_social .social-row a {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: grid; place-items: center;
  transition: all .15s ease;
}
.widget_social .social-row a:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.widget_social .social-row a svg { width: 18px; height: 18px; }

/* ============================================================
   Table of contents (widget)
   ============================================================ */
.widget_toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.widget_toc ol li { counter-increment: toc; }
.widget_toc ol li a {
  display: flex; gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line-2);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.widget_toc ol li:first-child a { border-top: 0; padding-top: 0; }
.widget_toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-purple);
  flex: none;
}
.widget_toc ol li a:hover { color: var(--brand-purple); }

/* ============================================================
   Category tree (link tree) — collapsible
   ============================================================ */
.category-tree {
  max-height: 420px;
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.category-tree::-webkit-scrollbar { width: 6px; }
.category-tree::-webkit-scrollbar-track { background: transparent; }
.category-tree::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.category-tree::-webkit-scrollbar-thumb:hover { background: var(--ink-4); }
.category-tree-list { list-style: none; margin: 0; padding: 0; }
.cat-item { border-top: 1px solid var(--line-2); }
.cat-item.level-0:first-child { border-top: 0; }
.cat-item-wrapper { display: flex; align-items: center; gap: 9px; padding: 9px 0; }
.cat-spacer { flex: none; width: 24px; }
.cat-toggle {
  flex: none;
  width: 24px; height: 24px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 7px;
  color: var(--ink-3);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 13px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.cat-toggle:hover { color: var(--brand-purple); border-color: var(--brand-purple); background: var(--accent-soft); }
.cat-item.open > .cat-item-wrapper .cat-toggle { color: var(--brand-purple); border-color: transparent; background: var(--accent-soft); }
.cat-link {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-3);
}
.cat-link:hover { color: var(--brand-purple); }
.cat-link:hover .cat-icon { color: var(--brand-purple); }
.cat-link.active { color: var(--ink-2); }
.cat-icon { flex: none; color: var(--ink-4); font-size: 14px; }
.cat-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cat-posts { list-style: none; margin: 0 0 6px; padding: 2px 0 4px 34px; display: none; }
.cat-item.open > .cat-posts,
.cat-item.current-cat > .cat-posts { display: block; }
/* Collapsed, the branch you are reading keeps only the current post on screen. */
.post-item.hidden-post { display: none; }
.cat-item.open > .cat-posts > .post-item.hidden-post { display: block; }
.cat-item:not(.open) > .cat-posts > .post-item.current-post::before { bottom: 50%; }
.post-item { position: relative; padding: 6px 0; }
.post-item::before {
  content: ""; position: absolute;
  left: -16px; top: 0; bottom: 0; width: 1.5px;
  background: var(--line-2);
}
.post-item:last-child::before { bottom: 50%; }
.post-item::after {
  content: ""; position: absolute;
  left: -16px; top: 14px; width: 9px; height: 1.5px;
  background: var(--line-2);
}
.post-link { display: block; }
.post-title { font-size: 12.5px; font-weight: 500; color: var(--ink-2); line-height: 1.4; }
.post-link:hover .post-title { color: var(--brand-purple); }
.current-post > .post-link .post-title { color: var(--ink-2); font-weight: 700; }
.current-post::after { background: var(--brand-purple); }

/* ============================================================
   Review card widget (rotating)
   ============================================================ */
.review-rotator { position: relative; min-height: 196px; }
.review-card-widget {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease;
}
.review-card-widget.is-active { position: relative; opacity: 1; visibility: visible; }
.review-card-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.stars-container { display: flex; align-items: center; gap: 8px; }
.review-card-rating .stars { color: #f59e0b; font-size: 13px; display: inline-flex; gap: 2px; }
.rating-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink-1); }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; color: var(--success);
  background: rgba(22,163,74,0.1);
  padding: 4px 9px; border-radius: 999px;
}
.rating-progress { height: 5px; background: var(--surface-2); border-radius: 999px; overflow: hidden; margin-bottom: 14px; }
.rating-progress .progress-bar { height: 100%; background: linear-gradient(90deg, #fbbf24, #f59e0b); border-radius: 999px; }
.review-quote { position: relative; margin: 0; padding: 0; }
.review-quote .quote-icon { color: var(--accent-soft); font-size: 24px; line-height: 0; }
[data-theme="dark"] .review-quote .quote-icon { color: var(--surface-3); }
.review-quote p { font-size: 14px; color: var(--ink-2); line-height: 1.55; font-weight: 500; font-style: italic; margin: 4px 0 0; }
.review-card-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.author-section { display: flex; align-items: center; gap: 11px; }
.author-avatar { flex: none; font-size: 32px; color: var(--brand-purple); line-height: 0; display: flex; }
.author-name { display: inline-block; }
.author-name strong { font-size: 13.5px; color: var(--ink-1); }
.author-name:hover strong { color: var(--brand-purple); }
.review-date { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--ink-4); margin-top: 3px; }
.review-full-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px;
  font-size: 12.5px; font-weight: 700; color: var(--brand-purple);
}
.review-full-link .bi-arrow-right { transition: transform .15s ease; }
.review-full-link:hover { color: var(--brand-purple-dark); }
.review-full-link:hover .bi-arrow-right { transform: translateX(3px); }
.review-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.review-dots button {
  width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0;
  background: var(--line); cursor: pointer; transition: all .2s ease;
}
.review-dots button.is-active { background: var(--brand-purple); width: 18px; border-radius: 999px; }

/* ============================================================
   Pro upgrade widget
   ============================================================ */
.upgrade-widget { padding: 0; border: 0; }
.upgrade-banner {
  position: relative; overflow: hidden;
  background: var(--brand-gradient);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center; color: #fff;
}
.upgrade-banner::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,147,0.55), transparent 70%);
}
.upgrade-banner > * { position: relative; }
.upgrade-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 15px;
  background: rgba(255,255,255,0.16);
  display: grid; place-items: center;
  font-size: 26px; color: #fff;
}
.upgrade-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.upgrade-description { font-size: 13.5px; color: rgba(255,255,255,0.86); line-height: 1.55; margin: 0 0 18px; }
.btn-upgrade {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
  background: #fff; color: var(--brand-purple);
  font-weight: 700; font-size: 14px;
  padding: 13px 18px; border-radius: 11px;
  transition: transform .15s ease, box-shadow .2s ease, color .15s ease;
}
.btn-upgrade:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.28); color: var(--brand-purple-dark); }

/* ============================================================
   Discount widget — high-conversion, eye-catching
   ============================================================ */
.discount-widget { padding: 0; border: 0; }
.dw-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: 24px 22px;
  color: #fff;
  background: linear-gradient(150deg, #7b34c8 0%, #652eba 55%, #4d2391 100%);
  box-shadow: 0 16px 38px rgba(101,46,186,0.34);
}
.dw-card::after {
  content: ""; position: absolute; top: -60px; right: -50px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,147,0.45), transparent 70%);
  pointer-events: none;
}
.dw-card > * { position: relative; }
.dw-ribbon {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.16);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.dw-ribbon .bi { color: #ffd24a; }

/* Headline: big % + stacked label */
.dw-headline { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.dw-headline .pct {
  font-family: var(--font-display); font-weight: 800;
  font-size: 58px; line-height: 0.85; letter-spacing: -0.03em;
  color: #fff;
}
.dw-headline .pct sup { font-size: 24px; font-weight: 700; top: -0.9em; margin-left: 1px; }
.dw-headline-text { display: flex; flex-direction: column; gap: 2px; }
.dw-headline-text b {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; letter-spacing: 0.02em; line-height: 1; color: #ffd24a;
}
.dw-headline-text span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.2; }

/* Code */
.dw-code {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,0.12);
  border: 1.5px dashed rgba(255,255,255,0.5);
  border-radius: 10px; overflow: hidden; margin-bottom: 14px;
}
.dw-code .code {
  flex: 1; display: flex; align-items: center; justify-content: center;
  font: 800 16px var(--font-display); letter-spacing: 0.12em; color: #fff;
  padding: 11px 8px;
}
.dw-code .copy {
  flex: none; border: 0; cursor: pointer;
  background: #fff; color: var(--brand-purple);
  font: 700 12px var(--bs-body-font-family);
  padding: 0 16px; display: inline-flex; align-items: center; gap: 5px;
  transition: background .15s ease, color .15s ease;
}
.dw-code .copy:hover { background: #ffd24a; color: var(--brand-purple-dark); }

/* Timer */
.dw-timer-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.dw-timer-wrap .lbl {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.dw-timer { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.dw-timer .seg {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,0.22); border-radius: 8px;
  padding: 5px 9px; min-width: 40px;
}
.dw-timer .seg b { font: 800 17px var(--font-display); color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.dw-timer .seg i { font-style: normal; font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.65); margin-top: 2px; }
.dw-timer .colon { font-weight: 800; font-size: 16px; color: rgba(255,255,255,0.5); }

/* CTA */
.dw-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: #fff; color: var(--brand-purple);
  font: 800 15px var(--bs-body-font-family);
  padding: 14px; border-radius: 11px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transition: transform .15s ease, box-shadow .2s ease;
}
.dw-cta .bi { transition: transform .15s ease; }
.dw-cta:hover { transform: translateY(-2px); color: var(--brand-purple-dark); box-shadow: 0 12px 24px rgba(0,0,0,0.24); }
.dw-cta:hover .bi { transform: translateX(3px); }

.discount-widget.is-expired .dw-code,
.discount-widget.is-expired .dw-timer,
.discount-widget.is-expired .dw-cta { opacity: 0.5; pointer-events: none; filter: grayscale(0.5); }
.dw-expired { display: none; font-size: 12.5px; text-align: center; color: #fff; margin: 12px 0 0; }
.discount-widget.is-expired .dw-expired { display: block; }

/* ============================================================
   About — plugin info card (Easy Form Builder)
   ============================================================ */
.about-plugin .ap-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.about-plugin .ap-logo {
  flex: none;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--brand-gradient);
  color: #fff;
  display: grid; place-items: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(101,46,186,0.3);
}
.about-plugin .ap-id { min-width: 0; }
.about-plugin .ap-id h5 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--ink-1); margin: 0 0 3px;
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.about-plugin .ap-ver {
  font-family: var(--bs-body-font-family);
  font-size: 11px; font-weight: 700;
  color: var(--accent-ink); background: var(--accent-soft);
  padding: 2px 7px; border-radius: 6px;
}
.about-plugin .ap-tag { font-size: 12.5px; color: var(--ink-4); }
.about-plugin .ap-rating {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 0; margin-bottom: 4px;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.about-plugin .ap-stars { color: #f59e0b; font-size: 13px; display: inline-flex; gap: 1px; }
.about-plugin .ap-rating strong { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink-1); }
.about-plugin .ap-reviews { font-size: 12px; color: var(--ink-4); }
.about-plugin .ap-desc { font-size: 13px; color: var(--ink-3); line-height: 1.55; margin: 14px 0; }
.about-plugin .ap-meta { list-style: none; margin: 0 0 16px; padding: 0; }
.about-plugin .ap-meta li {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 0;
  border-top: 1px solid var(--line-2);
  font-size: 13px; color: var(--ink-3);
}
.about-plugin .ap-meta li:first-child { border-top: 0; }
.about-plugin .ap-meta li i { color: var(--brand-purple); font-size: 14px; flex: none; width: 16px; text-align: center; }
.about-plugin .ap-meta li span { flex: 1; }
.about-plugin .ap-meta li b { font-family: var(--font-display); font-weight: 600; color: var(--ink-1); font-size: 13px; }
.about-plugin .ap-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--ink-1); color: #fff;
  font-weight: 700; font-size: 13.5px;
  padding: 12px; border-radius: 11px;
  transition: transform .15s ease, background .15s ease;
}
.about-plugin .ap-cta:hover { background: var(--brand-purple); color: #fff; transform: translateY(-2px); }
.about-plugin .ap-cta i { font-size: 16px; }

/* ============================================================
   Imported from category page — h4-titled widgets
   ============================================================ */
.widget h4 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-4); margin: 0 0 16px;
  display: flex; align-items: center; gap: 8px;
}
.widget h4 .ic { color: var(--brand-purple); display: inline-flex; }
.widget h4 .ic svg { width: 15px; height: 15px; }

/* widget: CTA (download) */
.w-cta {
  background: var(--brand-gradient);
  color: #fff; border: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.w-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 120%, rgba(255,75,147,0.5), transparent 55%);
}
.w-cta > * { position: relative; }
.w-cta .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.18); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.w-cta .ic svg { width: 24px; height: 24px; }
.w-cta h4 { color: #fff; text-transform: none; letter-spacing: -0.01em; font-size: 18px; justify-content: center; margin-bottom: 6px; }
.w-cta p { font-size: 13px; color: rgba(255,255,255,0.88); margin: 0 0 16px; line-height: 1.5; }
.w-cta .btn { background: #fff; color: var(--brand-purple); border: 0; font-weight: 600; width: 100%; }
.w-cta .btn:hover { background: #fff; transform: translateY(-1px); }
.w-cta .note { font-size: 11px; color: rgba(255,255,255,0.7); margin: 10px 0 0; }

/* Linktree-style topic links */
.linktree { display: flex; flex-direction: column; gap: 10px; }
.lt-link {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 13px;
  text-align: left;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lt-link:hover { border-color: var(--brand-purple); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(101, 46, 186, 0.12); }
.lt-link .ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-soft); color: var(--brand-purple);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.lt-link .ic svg { width: 18px; height: 18px; }
.lt-link .body { flex: 1; min-width: 0; }
.lt-link .t { font-size: 14px; font-weight: 600; color: var(--ink-1); display: block; line-height: 1.25; }
.lt-link .s { font-size: 12px; color: var(--ink-4); }
.lt-link .cnt {
  font-size: 11px; font-weight: 700; color: var(--ink-4);
  background: var(--surface-2); border-radius: 999px; padding: 2px 9px; flex: none;
}
.lt-link .arr { color: var(--ink-4); flex: none; transition: transform .15s ease, color .15s ease; }
.lt-link:hover .arr { color: var(--brand-purple); transform: translateX(2px); }
.lt-link .arr svg { width: 16px; height: 16px; }
.lt-link.feat {
  background: linear-gradient(135deg, rgba(101,46,186,0.07), rgba(255,75,147,0.05));
  border-color: rgba(101,46,186,0.25);
}
.lt-link.feat .ic { background: var(--brand-gradient); color: #fff; }
.lt-group { display: flex; flex-direction: column; }
.lt-toggle { cursor: pointer; width: 100%; background: var(--surface); text-align: left; font: inherit; }
.lt-toggle .chev { color: var(--ink-4); flex: none; transition: transform .2s ease; }
.lt-toggle .chev svg { width: 16px; height: 16px; display: block; }
.lt-group.open > .lt-toggle {
  border-color: var(--brand-purple);
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  background: rgba(101,46,186,0.04);
}
.lt-group.open > .lt-toggle .chev { transform: rotate(180deg); color: var(--brand-purple); }
.lt-children {
  display: none; flex-direction: column;
  border: 1px solid var(--brand-purple); border-top: 0;
  border-bottom-left-radius: 11px; border-bottom-right-radius: 11px;
  padding: 5px; margin-top: -1px;
}
.lt-group.open > .lt-children { display: flex; }
.lt-child {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 11px;
  font-size: 13px; color: var(--ink-2); border-radius: 7px;
  transition: background .12s ease, color .12s ease;
}
.lt-child:hover { background: var(--surface-2); color: var(--brand-purple); }
.lt-child .b { width: 5px; height: 5px; border-radius: 50%; background: var(--ink-4); flex: none; }
.lt-child:hover .b { background: var(--brand-purple); }
.lt-child.viewall {
  color: var(--brand-purple); font-weight: 600;
  border-top: 1px solid var(--line); border-radius: 0; margin-top: 4px; padding-top: 11px;
}
.lt-child.viewall .b { display: none; }
.lt-child.viewall svg { width: 13px; height: 13px; margin-left: auto; }

/* Trust stats widget */
.w-trust .trust-rating { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line-2); }
.w-trust .big { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--ink-1); line-height: 1; letter-spacing: -0.02em; }
.w-trust .stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.w-trust .src { font-size: 11.5px; color: var(--ink-4); margin-top: 2px; }
.w-trust .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.w-trust .stat-box { text-align: left; }
.w-trust .stat-box .v { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink-1); }
.w-trust .stat-box .l { font-size: 11.5px; color: var(--ink-4); line-height: 1.3; }
.w-trust .badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.w-trust .badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--ink-2);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 10px;
}
.w-trust .badge-pill svg { width: 12px; height: 12px; color: var(--success); }

/* Benefits checklist */
.w-benefits ul { list-style: none; margin: 0; padding: 0; }
.w-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; padding: 7px 0; }
.w-benefits li .ck {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(22,163,74,0.12); color: var(--success);
  display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 1px;
}
.w-benefits li .ck svg { width: 11px; height: 11px; stroke-width: 3; }
.w-benefits li strong { color: var(--ink-1); }

/* Testimonial widget */
.w-quote {
  background: var(--ink-1); border: 0; color: #fff; position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: 15px;
}
.w-quote::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(101,46,186,0.5), transparent 55%),
              radial-gradient(circle at 0% 120%, rgba(255,75,147,0.3), transparent 55%);
}
.w-quote > * { position: relative; }
.w-quote .qstars { color: #f59e0b; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
.w-quote blockquote { font-size: 14.5px; line-height: 1.55; font-weight: 500; margin: 0 0 14px; color: #fff; }
.w-quote .qwho { display: flex; align-items: center; gap: 10px; }
.w-quote .qav {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
}
.w-quote .qwho strong { color: #fff; font-size: 13px; display: block; }
.w-quote .qwho span { color: rgba(255,255,255,0.7); font-size: 11.5px; }

/* Guarantee / risk-reversal */
.w-guarantee {
  display: flex; align-items: center; gap: 14px;
  background: rgba(22,163,74,0.06);
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: var(--radius);
  padding: 15px;
}
.w-guarantee .ic {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.w-guarantee .ic svg { width: 22px; height: 22px; }
.w-guarantee h5 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--ink-1); margin: 0 0 2px; }
.w-guarantee p { font-size: 12px; color: var(--ink-3); margin: 0; line-height: 1.45; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) { .single-sidebar { columns: 280px; } }
@media (max-width: 575px) { .single-sidebar { columns: 1; } }



.widget_ws_discount,
.widget_ws_download_cta,
.widget_ws_guarantee,
.widget_ws_pro_upsell,
.widget_ws_discount,
.widget_ws_newsletter,
.widget_ws_upgrade,
.widget_ws_quote {
 padding: 0px!important;
}
