<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Plugin Name: Categories block
description: Categories block css
Version: 1.0
Author: Scoding
Author URI: https://scoding.com
*/

.product-category .box-label .box-text.category--title--block {
  width: calc(100% - 40px);
  bottom: 20px;
  opacity: 1;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  padding: 0.6em 1em;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.product-category .box-label .box-text.category--title--block .box-text-inner {
  width: 100%;
}

.categories--block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.categories--block h4 {
  width: max-content;
  text-align: left;
  position: relative;
  margin-bottom: 0;
  padding-bottom: .5em;
}

.categories--block .button {
  padding: .8em 1.2em;
}

.categories--block h4:after {
  content: '';
  display: block;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}</pre></body></html>