.vplug-filter-wrap,
.vplug-cards-wrap,
.vplug-modal {
  box-sizing: border-box;
  font-family: "Inter", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.vplug-filter-wrap * ,
.vplug-cards-wrap * ,
.vplug-modal * {
  box-sizing: border-box;
}

.vplug-filter-title {
  margin: 0 0 12px;
  color: #1bad6c;
  font-size: 14px;
  letter-spacing: 0.12em;
  display: none;
}

.vplug-filter-wrap {
  --vplug-accent: #1bad6c;
  --vplug-accent-soft: rgba(27, 173, 108, 0.2);
  --vplug-filter-bg: #171e2c;
  --vplug-filter-bg-soft: #111827;
  --vplug-filter-border: rgba(143, 164, 194, 0.22);
  --vplug-filter-text: #e9eefb;
  --vplug-filter-muted: #8f9ab4;
  background: linear-gradient(145deg, #1d2535 0%, #151c2b 100%);
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--vplug-filter-border);
  box-shadow: 0 18px 38px rgba(4, 8, 17, 0.42);
  position: relative;
  z-index: 3000;
  isolation: isolate;
  overflow: visible;
}

.vplug-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vplug-filter-status {
  min-width: 0;
}

.vplug-filter-eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--vplug-filter-muted);
}

.vplug-filter-result {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  color: var(--vplug-filter-text);
}

.vplug-filter-reset {
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(176, 192, 218, 0.22);
  background: rgba(20, 28, 42, 0.75);
  color: #c7d2e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.vplug-filter-reset:hover {
  border-color: rgba(176, 192, 218, 0.45);
  background: rgba(30, 39, 56, 0.92);
}

.vplug-filter-reset.is-active {
  border-color: rgba(27, 173, 108, 0.65);
  color: #8ff3c5;
}

.vplug-filter-reset:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.vplug-filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr) auto;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(24, 32, 48, 0.86) 0%, rgba(16, 23, 36, 0.9) 100%);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(159, 177, 204, 0.15);
  position: relative;
  z-index: 25;
  overflow: visible;
}

.vplug-archive-search,
.vplug-layout-toggle {
  height: 46px;
}

.vplug-archive-search {
  flex: 0 0 auto;
}

.vplug-layout-toggle {
  flex: 0 0 auto;
  align-self: center;
}

.vplug-filter-dropdowns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.vplug-filter-dropdown {
  position: relative;
  min-width: 0;
}

.vplug-filter-dropdown.is-open {
  z-index: 3200;
}

.vplug-filter-dropdown-toggle {
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(157, 175, 202, 0.2);
  background: var(--vplug-filter-bg);
  color: var(--vplug-filter-text);
  padding: 0 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.22s ease;
  min-width: 0;
  width: 100%;
}

.vplug-filter-dropdown-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--vplug-filter-muted);
  letter-spacing: 0.11em;
  text-transform: none;
  white-space: nowrap;
}

.vplug-filter-dropdown-value {
  font-size: 13px;
  font-weight: 650;
  color: var(--vplug-filter-text);
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 92px);
  text-align: right;
}

.vplug-filter-dropdown-caret {
  margin-left: 4px;
  color: var(--vplug-filter-muted);
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.vplug-filter-dropdown.is-open .vplug-filter-dropdown-caret {
  transform: rotate(180deg);
}

.vplug-filter-dropdown.is-open .vplug-filter-dropdown-toggle {
  border-color: var(--vplug-accent);
  box-shadow: 0 0 0 3px var(--vplug-accent-soft), 0 8px 26px rgba(0, 0, 0, 0.32);
}

.vplug-filter-dropdown.is-selected .vplug-filter-dropdown-value {
  color: #7bedbd;
}

.vplug-filter-dropdown.is-selected .vplug-filter-dropdown-value::after {
  content: "✓";
  margin-left: 8px;
  font-size: 12px;
  color: #1bad6c;
  opacity: 0.9;
}

.vplug-filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 0;
  background: var(--vplug-filter-bg-soft);
  border: 1px solid rgba(157, 175, 202, 0.24);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  z-index: 3300;
  display: none;
  max-height: 280px;
  overflow: auto;
}

.vplug-filter-dropdown.is-open .vplug-filter-dropdown-menu {
  display: block;
  animation: vplugDropdownEnter 0.16s ease;
}

@keyframes vplugDropdownEnter {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vplug-filter-dropdown-menu .vplug-filter-btn {
  border: 0;
  background: transparent;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.95);
}

.vplug-filter-dropdown-menu .vplug-filter-btn:hover {
  background: #323846;
  border-color: transparent;
}

.vplug-filter-dropdown-menu .vplug-filter-btn.is-active {
  background: rgba(27, 173, 108, 0.12);
  color: #1bad6c;
  border: 0;
}

.vplug-filter-dropdown-menu .vplug-filter-btn.is-active::after {
  float: none;
  content: "✓";
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  opacity: 0.95;
}

.vplug-filter-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid #222733;
  border-radius: 16px;
  background: #0d111a;
}

.vplug-filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vplug-filter-label {
  min-width: 80px;
  color: #c4c9d2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vplug-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vplug-filter-btn {
  border: 1px solid transparent;
  background: transparent;
  color: #e6e6e6;
  font-size: 13px;
  font-weight: 650;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: 0.18s ease;
  width: 100%;
  text-align: left;
}

.vplug-filter-btn:hover {
  background: #323846;
  border-color: rgba(255, 255, 255, 0.12);
}

.vplug-filter-btn.is-active {
  border-color: rgba(27, 173, 108, 0.72);
  background: rgba(27, 173, 108, 0.16);
  color: #1bad6c;
}

.vplug-filter-btn.is-active::after {
  content: "✓";
  float: right;
  color: #1bad6c;
  opacity: 0.9;
}

.vplug-filter-search {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: min(360px, 100%);
}

.vplug-archive-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  border: 1px solid rgba(157, 175, 202, 0.22);
  background: var(--vplug-filter-bg);
  border-radius: 12px;
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.22s ease;
}

.vplug-archive-search:hover {
  border-color: rgba(184, 198, 220, 0.32);
  background: #1b2233;
}

.vplug-archive-search:focus-within {
  border-color: rgba(27, 173, 108, 0.94);
  box-shadow: 0 0 0 3px rgba(27, 173, 108, 0.2), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.vplug-archive-search-input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
  caret-color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  line-height: 46px;
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
  box-shadow: none;
  appearance: none;
}

.vplug-filter-wrap .vplug-archive-search .vplug-archive-search-input,
.vplug-filter-wrap .vplug-archive-search input.vplug-search-input,
.vplug-filter-wrap .vplug-filter-search input[type="text"] {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
  caret-color: rgba(255, 255, 255, 0.92) !important;
}

.vplug-filter-wrap .vplug-archive-search .vplug-archive-search-input:-webkit-autofill,
.vplug-filter-wrap .vplug-archive-search .vplug-archive-search-input:-webkit-autofill:hover,
.vplug-filter-wrap .vplug-archive-search .vplug-archive-search-input:-webkit-autofill:focus,
.vplug-filter-wrap .vplug-filter-search input[type="text"]:-webkit-autofill,
.vplug-filter-wrap .vplug-filter-search input[type="text"]:-webkit-autofill:hover,
.vplug-filter-wrap .vplug-filter-search input[type="text"]:-webkit-autofill:focus {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
  transition: background-color 9999s ease-in-out 0s !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0) inset !important;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0) inset !important;
}

.vplug-archive-search-input::placeholder {
  color: rgba(148, 163, 184, 0.72) !important;
  -webkit-text-fill-color: rgba(148, 163, 184, 0.72);
}

.vplug-archive-search-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vplug-archive-search-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(148, 163, 184, 0.78);
  pointer-events: none;
  flex: 0 0 auto;
  transition: color 0.2s ease;
}

.vplug-archive-search:hover .vplug-archive-search-icon {
  color: rgba(177, 196, 220, 0.88);
}

.vplug-archive-search:focus-within .vplug-archive-search-icon {
  color: #1bad6c;
}

.vplug-archive-search-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.vplug-cards-wrap {
  margin-top: 20px;
  position: relative;
  z-index: 0;
}

.vplug-cards-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
  align-items: center;
}

.vplug-grid-control {
  display: flex;
  gap: 8px;
  align-items: center;
}

.vplug-grid-control .vplug-grid-btn {
  height: 46px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(230, 230, 230, 0.92);
  cursor: pointer;
  font-weight: 800;
  font-size: 0;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vplug-grid-control .vplug-grid-btn:hover {
  background: #323846;
  border-color: rgba(255, 255, 255, 0.22);
}

.vplug-grid-control .vplug-grid-btn.is-active {
  background: #1bad6c;
  border-color: #1bad6c;
  color: #082521;
  box-shadow: 0 0 0 3px rgba(27, 173, 108, 0.18), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.vplug-filter-bar .vplug-grid-control {
  margin-left: 0;
  justify-self: end;
}

.vplug-grid-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.vplug-layout-control {
  position: relative;
  z-index: 10000;
  height: 46px;
  display: flex;
  align-items: center;
}

.vplug-layout-toggle {
  min-width: 56px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #e6e6e6;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.22s ease;
  padding: 0 12px;
  line-height: 46px;
  box-sizing: border-box;
}

.vplug-layout-control.is-open .vplug-layout-toggle {
  background: #1bad6c;
  border-color: #1bad6c;
  color: #082521;
  box-shadow: 0 0 0 3px rgba(27, 173, 108, 0.18), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.vplug-layout-control.is-open {
  z-index: 20;
}

.vplug-layout-icon {
  display: inline-block;
  width: 16px;
  height: 12px;
  background:
    radial-gradient(circle at 16% 20%, #aeb6c4 2px, transparent 3px),
    radial-gradient(circle at 50% 20%, #aeb6c4 2px, transparent 3px),
    radial-gradient(circle at 84% 20%, #aeb6c4 2px, transparent 3px),
    radial-gradient(circle at 16% 80%, #aeb6c4 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, #aeb6c4 2px, transparent 3px),
    radial-gradient(circle at 84% 80%, #aeb6c4 2px, transparent 3px);
}

.vplug-layout-label {
  display: none;
}

.vplug-layout-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  min-width: 110px;
  border: 1px solid #293142;
  border-radius: 10px;
  background: #111723;
  z-index: 10001;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform-origin: top right;
}

.vplug-layout-control.is-open .vplug-layout-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.vplug-layout-option {
  border: 1px solid #293142;
  background: #141a25;
  color: #cfd6e2;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.vplug-layout-option:hover,
.vplug-layout-option.is-active {
  border-color: #1bad6c;
  color: #1bad6c;
}

.vplug-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  transition: grid-template-columns 0.32s cubic-bezier(0.22, 1, 0.36, 1), gap 0.22s ease;
}

.vplug-cards-grid[data-vplug-cols="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vplug-cards-grid[data-vplug-cols="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vplug-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1386 / 1779;
  min-height: 0;
  border: 1px solid #242a39;
  border-radius: 18px;
  background: #0f1420;
  cursor: pointer;
  color: #f1f3f8;
}

.vplug-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.vplug-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 13, 0.56) 0%, rgba(6, 8, 13, 0.1) 52%, rgba(6, 8, 13, 0.28) 100%);
}

.vplug-card-top {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  z-index: 2;
}

.vplug-card-top .vplug-chip {
  min-width: 132px;
  text-align: center;
}

.vplug-chip {
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.vplug-chip-material {
  background: #7f858f;
  color: #f6f8ff;
}

.vplug-chip-season {
  background: #1bad6c;
  color: #08392f;
}

.vplug-card-bottom {
  position: absolute;
  inset: auto 14px 16px 14px;
  z-index: 2;
  color: #ffffff;
  padding-left: 12px;
  border-left: 2px solid rgba(232, 238, 248, 0.72);
}

.vplug-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vplug-card-article {
  margin: 0 0 2px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.03;
  word-break: break-word;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.vplug-card-meta {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.08;
  opacity: 1;
  word-break: break-word;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.vplug-empty-text {
  margin: 14px 0 0;
  color: #8e96a9;
}

.vplug-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647 !important;
  padding: clamp(64px, 9vh, 108px) 20px 16px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
  isolation: isolate;
}

body > .vplug-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
}

.vplug-modal.is-visible {
  opacity: 1;
}

.vplug-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.78);
  backdrop-filter: blur(5px);
  z-index: 0;
}

.vplug-modal-content {
  position: relative;
  width: min(88vw, 580px);
  height: min(96vh, 1120px);
  max-height: calc(100vh - clamp(64px, 8vh, 96px));
  margin: 0 auto;
  z-index: 1;
  background: linear-gradient(160deg, #0b1220 0%, #0f172a 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1f2a44;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.58);
  display: grid;
  grid-template-rows: auto 1fr;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.vplug-modal.is-visible .vplug-modal-content {
  transform: scale(1);
}

.vplug-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #dce8ff;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.vplug-modal-close:hover {
  color: #1bad6c;
  transform: scale(1.04);
}

.vplug-modal-header {
  border-bottom: 1px solid #1e2a42;
  background: linear-gradient(180deg, rgba(13, 28, 54, 0.9) 0%, rgba(11, 23, 42, 0.9) 100%);
  padding: 10px 52px 7px 12px;
}

.vplug-modal-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
}

.vplug-modal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vplug-modal-badge-teal {
  color: #7be8b9;
  border: 1px solid rgba(27, 173, 108, 0.45);
  background: rgba(13, 62, 42, 0.5);
}

.vplug-modal-badge-gray {
  color: #c4d1e8;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(52, 65, 88, 0.45);
}

.vplug-modal-title {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.1;
  color: #ffffff;
  font-weight: 800;
}

.vplug-modal-model {
  margin: 1px 0 5px;
  font-size: clamp(11px, 0.95vw, 13px);
  line-height: 1.12;
  font-weight: 700;
  color: #a7b8d6;
}

.vplug-modal-product-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 10px;
}

.vplug-modal-info-item {
  min-width: 0;
}

.vplug-modal-info-label {
  display: block;
  margin-bottom: 1px;
  font-size: 9px;
  color: #7f91b1;
}

.vplug-modal-info-value {
  margin: 0;
  font-size: clamp(10px, 0.8vw, 11px);
  line-height: 1.12;
  font-weight: 700;
  color: #f8fbff;
}

.vplug-modal-iframe-wrap,
.vplug-modal-iframe-wrap iframe {
  width: 100%;
}

.vplug-modal-iframe-wrap {
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px 8px;
}

.vplug-modal-iframe-wrap iframe {
  width: auto;
  height: 100%;
  aspect-ratio: 1248 / 1664;
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  background: #000;
  border: 1px solid #31405e;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.44);
}

@media (max-width: 900px) {
  .vplug-filter-wrap {
    padding: 12px;
  }

  .vplug-filter-head {
    margin-bottom: 10px;
  }

  .vplug-filter-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vplug-filter-dropdowns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vplug-archive-search {
    width: 100%;
  }

  .vplug-filter-bar .vplug-grid-control {
    justify-self: start;
  }

  .vplug-filter-dropdown-menu {
    position: static;
    margin-top: 8px;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .vplug-filter-dropdown.is-open .vplug-filter-dropdown-menu {
    animation: none;
  }

  .vplug-cards-grid,
  .vplug-cards-grid[data-vplug-cols="3"],
  .vplug-cards-grid[data-vplug-cols="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vplug-filter-head {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .vplug-filter-result {
    font-size: 13px;
  }

  .vplug-filter-reset {
    width: 100%;
    height: 36px;
  }

  .vplug-filter-dropdowns {
    grid-template-columns: 1fr;
  }

  .vplug-filter-dropdown-toggle {
    height: 44px;
  }

  .vplug-filter-bar .vplug-grid-control {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .vplug-filter-bar .vplug-grid-control .vplug-grid-btn {
    width: 100%;
    height: 42px;
    padding: 0;
  }

  .vplug-cards-grid,
  .vplug-cards-grid[data-vplug-cols="3"],
  .vplug-cards-grid[data-vplug-cols="4"] {
    grid-template-columns: 1fr;
  }

  .vplug-modal-content {
    width: min(90vw, 540px);
    height: min(92vh, 980px);
    max-height: calc(100vh - 72px);
  }

  .vplug-modal-header {
    padding: 9px 40px 6px 10px;
  }

  .vplug-modal-title {
    font-size: 14px;
  }

  .vplug-modal-model {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .vplug-modal-product-info {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vplug-modal-info-label {
    margin-bottom: 1px;
  }

  .vplug-modal-info-value {
    font-size: 10px;
  }

  .vplug-modal-iframe-wrap {
    padding: 10px 12px 12px;
  }

  .vplug-modal {
    padding-top: 58px;
  }
}

@media (max-width: 1024px) and (min-width: 641px) {
  .vplug-modal-product-info {
    grid-template-columns: 1fr 1fr;
  }
}
