.lp-auto {
  margin: 12px auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-auto {
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    margin: 6px auto;
  }
}

.lp-auto {
  margin: 12px auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-auto {
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    margin: 6px auto;
  }
}

/* ===== TOOLTIP CONTAINER ===== */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

/* ===== TOOLTIP TEXT ===== */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: var(--color-bg-body);
  color: var(--color-text-primary);
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
}

/* ===== TOOLTIP ARROW ===== */
.tooltip .tooltiptext::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--color-bg-body) transparent;
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
}

/* ===== TOOLTIP BORDER ===== */
.tooltip .tooltiptext::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--color-border) transparent;
}

/* ===== SHOW TOOLTIP ON HOVER ===== */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ===== SHOW TOOLTIP ON FOCUS ===== */
.tooltip:focus-within .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
  .tooltip .tooltiptext {
    background-color: var(--color-bg-secondary);
    border-color: var(--color-border);
  }

  .tooltip .tooltiptext::after {
    border-color: transparent transparent var(--color-bg-secondary) transparent;
  }

  .tooltip .tooltiptext::before {
    border-color: transparent transparent var(--color-border) transparent;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .tooltip .tooltiptext {
    width: 120px;
    padding: 6px;
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .tooltip .tooltiptext {
    width: 100px;
    padding: 3px;
    font-size: 10px;
  }

  /* Hide tooltips on mobile */
  .tooltip {
    display: inline-block;
  }

  .tooltip:hover .tooltiptext {
    visibility: hidden;
    opacity: 0;
  }
}
.category-container {
  margin: 0 auto;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .category-container {
    padding: 0 10px;
  }
}
@media (max-width: 600px) {
  .category-container {
    padding: 0 10px;
  }
}

.lp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.lp-quarter {
  grid-column: span 1;
}

.lp-threequarter {
  grid-column: span 3;
}

.lp-third {
  grid-column: span 1;
}

.lp-half {
  grid-column: span 2;
}

.lp-full {
  grid-column: span 4;
}

.lp-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-white {
  background: var(--color-bg-body);
  color: var(--color-text-primary);
}
@media (prefers-color-scheme: light) {
  .lp-white {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .lp-white {
    background: #1a2332;
  }
}
html[data-theme="light"] .lp-white {
  background: #ffffff;
}
html[data-theme="dark"] .lp-white {
  background: #1a2332;
}

.lp-border {
  border: 1px solid var(--color-border);
}

.lp-round {
  border-radius: 4px;
}

.lp-round-medium {
  border-radius: 4px;
}

.lp-round-container {
  border-radius: 6px 6px 0 0;
  background: linear-gradient(135deg, rgba(232, 156, 10, 0.05) 0%, rgba(91, 168, 49, 0.05) 100%);
}

.lp-padding {
  padding: 12px;
}

.lp-padding-small {
  padding: 10px;
}

.lp-container {
  padding: 10px;
  box-sizing: border-box;
}

.lp-margin-top {
  margin-top: 12px;
}

.lp-margin-bottom {
  margin-bottom: 12px;
}

.lp-margin-right {
  margin-right: 12px;
}

.lp-border-dark-color-outer {
  border: none;
  padding: 0;
}

main .lp-margin-bottom .lp-border-dark-color-outer {
  background: transparent;
  border: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 10px 0;
  color: var(--color-text-primary);
}

.lp-h1-style {
  margin: 15px 0 0 15px;
}

.lp-medium {
  font-size: 1rem;
  font-weight: 600;
}

.lp-h2-style {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 15px 0 0 0;
  padding: 0;
}
.lp-h2-style a {
  color: #e89c0a;
  text-decoration: none;
  transition: all 0.2s ease;
}
.lp-h2-style a:hover {
  color: #b77b08;
  text-decoration: underline;
}
.lp-h2-style a:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}

.lp-large {
  font-size: 1.125rem;
  font-weight: 700;
}

.lp-index-box-title {
  margin: 0;
}

.lp-text-snap-index-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
}

.lp-link-original {
  color: var(--color-text-primary);
}

a {
  color: #e89c0a;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}

.lp-all-categories-ul {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0 0 12px 0;
}
.lp-all-categories-ul li {
  padding: 3px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}
.lp-all-categories-ul li:last-child {
  border-bottom: none;
}
.lp-all-categories-ul li a {
  color: #e89c0a;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
.lp-all-categories-ul li a:hover {
  color: #b77b08;
  text-decoration: underline;
}
.lp-all-categories-ul li a:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}

.lp-all-counter {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 11px;
  margin-left: 3px;
  background: rgba(232, 156, 10, 0.1);
  padding: 2px 4px;
  border-radius: 2px;
}

#lp-category-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#lp-category-menu section {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
@media (prefers-color-scheme: light) {
  #lp-category-menu section {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  #lp-category-menu section {
    background: #1a2332;
  }
}
html[data-theme="light"] #lp-category-menu section {
  background: #ffffff;
}
html[data-theme="dark"] #lp-category-menu section {
  background: #1a2332;
}
#lp-category-menu section header {
  background: linear-gradient(135deg, rgba(232, 156, 10, 0.1) 0%, rgba(91, 168, 49, 0.1) 100%);
  padding: 10px;
  border-bottom: 1px solid var(--color-border);
}
#lp-category-menu section header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.filter-panel {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 10px;
}
@media (prefers-color-scheme: light) {
  .filter-panel {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .filter-panel {
    background: #1a2332;
  }
}
html[data-theme="light"] .filter-panel {
  background: #ffffff;
}
html[data-theme="dark"] .filter-panel {
  background: #1a2332;
}
.filter-panel h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--color-text-primary);
}
.filter-panel .lp-padding {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}
.filter-panel .lp-padding:last-child {
  border-bottom: none;
}

.filter-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-link {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 36px;
  display: flex;
  align-items: center;
}
@media (prefers-color-scheme: light) {
  .filter-link {
    background: #ffffff;
    border-color: var(--color-border);
  }
}
@media (prefers-color-scheme: dark) {
  .filter-link {
    background: #1a2332;
    border-color: rgba(232, 156, 10, 0.3);
  }
}
html[data-theme="light"] .filter-link {
  background: #ffffff;
  border-color: var(--color-border);
}
html[data-theme="dark"] .filter-link {
  background: #1a2332;
  border-color: rgba(232, 156, 10, 0.3);
}
.filter-link:hover {
  background: var(--color-border);
  color: #e89c0a;
  border-color: #e89c0a;
}
@media (prefers-color-scheme: dark) {
  .filter-link:hover {
    background: rgba(232, 156, 10, 0.15);
    border-color: #e89c0a;
  }
}
html[data-theme="dark"] .filter-link:hover {
  background: rgba(232, 156, 10, 0.15);
  border-color: #e89c0a;
}
.filter-link:active {
  background: rgba(232, 156, 10, 0.15);
}
.filter-link.active {
  background: #e89c0a !important;
  color: #ffffff !important;
  border-color: #e89c0a !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(232, 156, 10, 0.3);
  transform: scale(1.05);
}
@media (prefers-color-scheme: dark) {
  .filter-link.active {
    background: #e89c0a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(232, 156, 10, 0.4);
  }
}
html[data-theme="dark"] .filter-link.active {
  background: #e89c0a !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(232, 156, 10, 0.4);
}
.filter-link.active:hover {
  background: #c18208 !important;
  border-color: #c18208 !important;
  box-shadow: 0 6px 16px rgba(232, 156, 10, 0.4);
}
.filter-link:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
.filter-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lp-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (prefers-color-scheme: light) {
  .lp-filter-bar {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .lp-filter-bar {
    background: #1a2332;
  }
}
html[data-theme="light"] .lp-filter-bar {
  background: #ffffff;
}
html[data-theme="dark"] .lp-filter-bar {
  background: #1a2332;
}

.lp-filter-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.lp-filter-icon {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: var(--color-text-primary);
}
.lp-filter-icon img {
  width: 20px;
  height: 20px;
}
.lp-filter-icon span {
  font-weight: 500;
}

.lp-filter-search-request {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 10px;
}

.lp-filter-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.lp-filter-sort select {
  min-width: 200px;
}

.lp-category-money,
.lp-category-loupe {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--color-text-primary);
  font-size: 13px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg-body);
  color: var(--color-text-primary);
  font-family: "liberation_sansregular", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
select:hover,
textarea:hover {
  border-color: rgba(232, 156, 10, 0.5);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #e89c0a;
  box-shadow: 0 0 0 3px rgba(232, 156, 10, 0.1);
}
input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
select:disabled,
textarea:disabled {
  background: var(--color-bg-secondary);
  opacity: 0.6;
  cursor: not-allowed;
}

.lp-input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg-body);
  color: var(--color-text-primary);
  box-sizing: border-box;
}

.lp-select {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg-body);
  color: var(--color-text-primary);
  font-family: "liberation_sansregular", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
@media (prefers-reduced-motion: reduce) {
  .lp-button {
    transform: none !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .lp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}
.lp-button:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.lp-button:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
.lp-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lp-button-light-grey {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.lp-button-light-grey:hover {
  background: var(--color-border);
}

.lp-button-orange2 {
  background: #e89c0a;
  color: white;
  border: 1px solid #e89c0a;
}
.lp-button-orange2:hover {
  background: #c18208;
}

.lp-button-green2 {
  background: #5ba831;
  color: white;
  border: 1px solid #5ba831;
}
.lp-button-green2:hover {
  background: #4a8828;
}

.lp-grey {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.star {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.9em;
  margin-right: 0.9em;
  margin-bottom: 1.2em;
  border-right: 0.3em solid transparent;
  border-bottom: 0.7em solid #fc0;
  border-left: 0.3em solid transparent;
  font-size: 24px;
}
.star::before, .star::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #fc0;
  border-left: 1em solid transparent;
  transform: rotate(-35deg);
}
.star::after {
  transform: rotate(35deg);
}

.star-clear {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.9em;
  margin-right: 0.9em;
  margin-bottom: 1.2em;
  border-right: 0.3em solid transparent;
  border-bottom: 0.7em solid #ccc;
  border-left: 0.3em solid transparent;
  font-size: 24px;
}
.star-clear::before, .star-clear::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #ccc;
  border-left: 1em solid transparent;
  transform: rotate(-35deg);
}
.star-clear::after {
  transform: rotate(35deg);
}

.lp-grid-boxes-container {
  display: grid;
  grid-template-columns: 11.25rem 1fr 6.25rem;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
  min-height: 9.375rem;
  border-color: rgba(232, 156, 10, 0.2);
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.1), 0 0 8px rgba(232, 156, 10, 0.05);
}
@media (prefers-color-scheme: light) {
  .lp-grid-boxes-container {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .lp-grid-boxes-container {
    background: #1a2332;
  }
}
html[data-theme="light"] .lp-grid-boxes-container {
  background: #ffffff;
}
html[data-theme="dark"] .lp-grid-boxes-container {
  background: #1a2332;
}
@media (prefers-color-scheme: dark) {
  .lp-grid-boxes-container {
    border-color: rgba(232, 156, 10, 0.3);
    box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.15), 0 0 12px rgba(232, 156, 10, 0.1);
  }
}
html[data-theme="dark"] .lp-grid-boxes-container {
  border-color: rgba(232, 156, 10, 0.3);
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.15), 0 0 12px rgba(232, 156, 10, 0.1);
}
html[data-theme="light"] .lp-grid-boxes-container {
  border-color: rgba(232, 156, 10, 0.2);
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.1), 0 0 8px rgba(232, 156, 10, 0.05);
}
.lp-grid-boxes-container:hover {
  border-color: rgba(232, 156, 10, 0.4);
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.2), 0 0 16px rgba(232, 156, 10, 0.15);
}
@media (prefers-color-scheme: dark) {
  .lp-grid-boxes-container:hover {
    box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.25), 0 0 20px rgba(232, 156, 10, 0.2);
  }
}
html[data-theme="dark"] .lp-grid-boxes-container:hover {
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.25), 0 0 20px rgba(232, 156, 10, 0.2);
}

.lp-grid-boxes-pic {
  grid-column: 1;
  grid-row: 1 / 4;
  position: relative;
  width: 11.25rem;
  height: 9.375rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-secondary);
}
.lp-grid-boxes-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .lp-grid-boxes-pic img {
    transition: transform 0.5s ease-in-out;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-grid-boxes-pic img {
    transition: none;
  }
}
.lp-grid-boxes-pic a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.lp-grid-boxes-pic a:focus-visible {
  outline: 3px solid #e89c0a;
  outline-offset: -3px;
}
@media (prefers-reduced-motion: no-preference) {
  .lp-grid-boxes-pic a:hover img {
    transform: scale(1.08);
  }
}

.lp-grid-boxes-title {
  grid-column: 2;
  grid-row: 1;
  padding: 0 0.625rem 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  line-height: 1.35;
}

.lp-grid-boxes-subtitle {
  grid-column: 2;
  grid-row: 2;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  margin: 0;
  line-height: 1.4;
}

.lp-grid-boxes-bottom {
  grid-column: 2;
  grid-row: 3;
  padding: 0 0.625rem 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  display: flex;
  align-items: flex-end;
  line-height: 1.3;
  font-weight: 500;
}

.lp-grid-boxes-searchsell {
  grid-column: 3;
  grid-row: 1;
  padding: 0.5rem 0.375rem 0.125rem;
  display: flex;
  gap: 0.125rem;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  margin: 0;
}
.lp-grid-boxes-searchsell img {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lp-grid-boxes-searchsell img:hover {
  transform: scale(1.2);
}
.lp-grid-boxes-searchsell span {
  display: inline-block;
  font-size: 0.625rem;
  padding: 0.0625rem 0.25rem;
  background: var(--color-bg-secondary);
  border-radius: 2px;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.lp-grid-boxes-price {
  grid-column: 3;
  grid-row: 2 / 4;
  padding: 0.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5ba831;
  gap: 0.125rem;
  line-height: 1.2;
}
.lp-grid-boxes-price .lp-tag {
  white-space: nowrap;
  font-size: 0.625rem;
  padding: 0.125rem 0.25rem;
  line-height: 1;
  margin: 0;
}
.lp-grid-boxes-price .lp-text-green3 {
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #5ba831;
}
.lp-grid-boxes-price .lp-text-dark-grey {
  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .lp-auto {
    padding: 6px;
  }

  .lp-padding {
    padding: 6px;
  }

  .lp-container {
    padding: 6px;
  }

  .lp-margin-right {
    margin-right: 10px;
  }

  .lp-grid-boxes-container {
    height: 250px;
    grid-template-columns: 1fr 0.9fr 1.1fr;
    grid-template-rows: 2fr 0.5fr 1fr 0.5fr;
  }
  .lp-grid-boxes-container:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .lp-grid-boxes-pic {
    width: 100% !important;
    grid-column: 1 / 4;
    grid-row: 1;
    height: 150px;
  }
}
@media (max-width: 600px) and (prefers-reduced-motion: no-preference) {
  .lp-grid-boxes-pic img {
    transition: transform 0.4s ease-in-out;
  }
}
@media (max-width: 600px) and (prefers-reduced-motion: no-preference) {
  .lp-grid-boxes-pic a:hover img {
    transform: scale(1.05);
  }
}

@media (max-width: 600px) {
  .lp-grid-boxes-title {
    grid-column: 1 / 3;
    grid-row: 2;
    padding: 3px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .lp-grid-boxes-subtitle {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 3px;
    font-size: 13px;
    -webkit-line-clamp: 2;
    line-height: 1.3;
  }

  .lp-grid-boxes-bottom {
    grid-column: 1 / 3;
    grid-row: 4;
    padding: 3px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
  }

  .lp-grid-boxes-price {
    grid-column: 3;
    grid-row: 3 / 5;
    line-height: normal;
    padding: 3px;
    font-size: 12px;
  }

  .lp-h2-style {
    font-size: 14px;
  }

  .lp-large {
    font-size: 16px;
  }

  .lp-button {
    padding: 3px 8px;
    font-size: 11px;
    height: 32px;
  }

  #site-pagination {
    gap: 6px;
  }
  #site-pagination .lp-button {
    min-width: 32px;
    height: 32px;
  }

  .gallery-viewport {
    padding: 6px;
  }

  .prev-button,
  .next-button {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .lp-category-intro {
    margin: 10px 0;
    padding: 6px;
    font-size: 13px;
  }

  .lp-index-padding-left {
    padding-left: 0;
  }

  .lp-bar {
    overflow: visible;
  }

  .lp-image-smart {
    width: 100% !important;
    text-align: center;
  }

  .tooltip {
    display: none;
  }

  .lp-filter-icons {
    gap: 3px;
  }

  .lp-filter-icon {
    font-size: 11px;
  }
  .lp-filter-icon img {
    width: 18px;
    height: 18px;
  }

  .lp-button {
    min-height: 48px;
    padding: 6px 12px;
  }

  .filter-link {
    min-height: 44px;
  }

  .lp-badge {
    min-width: 32px;
    padding: 4px 8px;
  }

  a.skip-link {
    font-size: 14px;
    padding: 10px;
  }
}
