.elementor-18550 .elementor-element.elementor-element-produtos-root{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-18550 .elementor-element.elementor-element-1206bfd{--display:flex;--min-height:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}/* Start custom CSS */:root {
    --bg-base: #F7F5F2;
    --bg-white: #FFFFFF;
    --bg-cream: #EFEAE2;
    --bg-dark: #1A1A1A;
    --bg-darker: #0F0F0F;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #8A857D;
    --text-light: #B5B0A7;
    --mustard: #C89544;
    --mustard-deep: #A87830;
    --mustard-light: #E0B57E;
    --border-subtle: rgba(26, 26, 26, 0.08);
    --border-medium: rgba(26, 26, 26, 0.18);
    --font-display: 'Jost', sans-serif;
    --font-italic: 'Cormorant Garamond', Georgia, serif;
    --max-w: 1440px;
    --pad-x: clamp(24px, 4vw, 72px);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
  .h-italic { font-family: var(--font-italic); font-style: italic; font-weight: 500; color: var(--mustard-deep); }

  /* NAVBAR */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px var(--pad-x);
    background: rgba(247, 245, 242, 0.94);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
  }
  .nav-logo {
    font-weight: 700; font-size: 18px; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--text-primary);
  }
  .nav-logo .h-italic { color: var(--mustard-deep); }
  .nav-menu {
    display: flex; gap: 32px; list-style: none;
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  }
  .nav-menu a { color: var(--text-secondary); transition: color 0.3s ease; padding: 4px 0; position: relative; }
  .nav-menu a:hover, .nav-menu a.active { color: var(--text-primary); }
  .nav-menu a.active::after {
    content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--mustard);
  }

  /* HEADER CATALOGO */
  .catalog-hero {
    padding: 148px 0 72px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-base) 100%);
    text-align: center;
  }
  .catalog-hero::before {
    content: "Catálogo"; display: block;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--mustard-deep); font-weight: 600; margin-bottom: 18px;
  }
  .breadcrumb {
    display: flex; gap: 10px; font-size: 12px; color: var(--text-muted);
    letter-spacing: 0.06em; margin-bottom: 24px; justify-content: center; align-items: center;
    flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--text-muted); transition: color 0.25s ease; }
  .breadcrumb a:hover { color: var(--mustard-deep); }
  .breadcrumb span { color: var(--text-primary); font-weight: 500; }
  .catalog-hero h1 {
    font-size: clamp(36px, 4.2vw, 54px); font-weight: 700; letter-spacing: -0.022em;
    line-height: 1.05; margin-bottom: 20px;
  }
  .catalog-hero .lead {
    font-family: var(--font-display); font-style: normal;
    font-size: clamp(15px, 1.15vw, 17px); color: var(--text-secondary);
    max-width: 620px; margin: 0 auto; line-height: 1.65;
  }

  /* SHELL */
  .catalog-shell {
    display: grid; grid-template-columns: 280px 1fr; gap: clamp(40px, 4.5vw, 72px);
    max-width: var(--max-w); margin: 0 auto;
    padding: 40px var(--pad-x) 120px;
  }

  /* FILTROS */
  .filters-sidebar {
    position: sticky; top: 32px; align-self: start;
    max-height: calc(100vh - 64px);
    display: flex; flex-direction: column;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 6px 24px -14px rgba(26,26,26,0.08);
    padding: 28px 24px;
  }
  .filters-scroll {
    flex: 1 1 auto; overflow-y: auto;
    padding-right: 8px; padding-bottom: 4px;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.15) transparent;
  }
  .filters-scroll::-webkit-scrollbar { width: 4px; }
  .filters-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 4px; }
  .filters-actions {
    flex: 0 0 auto;
    padding-top: 18px; margin-top: 12px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-subtle);
    position: relative; z-index: 2;
  }
  .filter-group { margin-bottom: 32px; }
  .filter-group-title {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mustard-deep); font-weight: 600;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .filter-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .filter-list li { display: flex; align-items: center; gap: 8px; }
  .filter-list label {
    flex: 1; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 13px; color: var(--text-secondary);
    transition: color 0.25s ease; padding: 4px 0;
  }
  .filter-list label:hover { color: var(--text-primary); }
  .filter-list input[type="checkbox"], .filter-list input[type="radio"] {
    appearance: none; -webkit-appearance: none;
    width: 14px; height: 14px; border: 1px solid var(--border-medium);
    background: transparent; cursor: pointer; position: relative;
    border-radius: 2px; transition: all 0.2s ease;
  }
  .filter-list input[type="radio"] { border-radius: 50%; }
  .filter-list input[type="checkbox"]:checked,
  .filter-list input[type="radio"]:checked {
    background: var(--text-primary); border-color: var(--text-primary);
  }
  .filter-list input[type="checkbox"]:checked::after {
    content: ""; position: absolute; top: 1px; left: 4px;
    width: 4px; height: 8px; border: solid white;
    border-width: 0 1.5px 1.5px 0; transform: rotate(45deg);
  }
  .filter-list input[type="radio"]:checked::after {
    content: ""; position: absolute; top: 3px; left: 3px;
    width: 6px; height: 6px; background: white; border-radius: 50%;
  }
  .filter-count {
    font-size: 11px; color: var(--text-light);
    font-variant-numeric: tabular-nums;
  }
  .filters-clear {
    width: 100%; padding: 14px 20px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--text-primary);
    background: transparent; border: 1.5px solid var(--border-medium);
    border-radius: 999px; transition: all 0.25s ease;
    cursor: pointer;
  }
  .filters-clear:hover { background: var(--text-primary); color: var(--bg-white); border-color: var(--text-primary); }

  /* RESULTS BAR */
  .results-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px; flex-wrap: wrap;
  }
  .results-count { font-size: 13.5px; color: var(--text-secondary); letter-spacing: 0.01em; }
  .results-count strong { color: var(--text-primary); font-weight: 600; font-size: 15px; }
  .results-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
  .search-box {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-white); border: 1px solid var(--border-subtle);
    border-radius: 999px; padding: 12px 20px;
    min-width: 300px; transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .search-box:focus-within { border-color: var(--mustard-deep); box-shadow: 0 4px 16px -8px rgba(168,120,48,0.24); }
  .search-box input {
    border: none; outline: none; background: transparent;
    font-family: var(--font-display); font-size: 13px; flex: 1;
    color: var(--text-primary);
  }
  .search-box input::placeholder { color: var(--text-muted); }
  .search-box svg { width: 15px; height: 15px; opacity: 0.6; color: var(--text-muted); flex-shrink: 0; }
  .sort-select {
    border: 1px solid var(--border-subtle); padding: 12px 40px 12px 20px;
    font-family: var(--font-display); font-size: 12.5px; font-weight: 500;
    background: var(--bg-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231A1A1A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") right 14px center/12px no-repeat;
    appearance: none; -webkit-appearance: none; cursor: pointer;
    letter-spacing: 0.04em; border-radius: 999px;
    color: var(--text-primary); transition: border-color 0.25s ease;
  }
  .sort-select:hover { border-color: var(--border-medium); }

  /* GRID 4 COLS */
  .swatches-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .swatch-card {
    background: transparent; cursor: pointer;
    transition: transform 0.35s var(--ease-out);
    display: flex; flex-direction: column; gap: 14px;
  }
  .swatch-card:hover { transform: translateY(-4px); }
  .swatch-img {
    aspect-ratio: 4/5; overflow: hidden; background: #F3EFE8;
    position: relative; border-radius: 18px;
    border: 1px solid rgba(26,26,26,0.06);
    box-shadow: 0 12px 32px -10px rgba(26,26,26,0.14);
    transition: box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  }
  .swatch-card:hover .swatch-img { box-shadow: 0 22px 54px -16px rgba(26,26,26,0.22); border-color: rgba(26,26,26,0.10); }
  .swatch-img img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .swatch-img.is-missing::after {
    content: "sem imagem"; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--text-light); letter-spacing: 0.14em;
    text-transform: uppercase; background: var(--bg-cream);
  }
  .swatch-tag {
    position: absolute; top: 14px; left: 14px;
    padding: 6px 14px; background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--mustard-deep);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  }
  .swatch-meta { padding: 0 4px; display: flex; flex-direction: column; gap: 4px; }
  .swatch-cat {
    font-size: 10px; font-weight: 600; letter-spacing: 0.20em;
    text-transform: uppercase; color: var(--mustard-deep);
  }
  .swatch-name {
    font-size: 15px; font-weight: 500; letter-spacing: -0.008em;
    line-height: 1.3; color: var(--text-primary);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .swatch-code {
    font-size: 12px; color: var(--text-muted);
    letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
  }

  /* EMPTY STATE */
  .empty {
    grid-column: 1/-1; text-align: center; padding: 96px 24px 80px;
    color: var(--text-muted);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .empty-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--bg-cream); display: flex; align-items: center; justify-content: center;
    color: var(--mustard-deep); margin-bottom: 4px;
  }
  .empty-icon svg { width: 28px; height: 28px; }
  .empty h3 {
    font-family: var(--font-italic); font-style: italic;
    font-size: 26px; color: var(--text-primary); margin: 0;
  }
  .empty p { max-width: 42ch; margin: 0; }
  .btn-empty-clear {
    margin-top: 16px; padding: 14px 28px;
    background: var(--text-primary); color: #FFF;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    border: none; border-radius: 999px; cursor: pointer; transition: background 0.25s;
  }
  .btn-empty-clear:hover { background: var(--mustard-deep); }

  /* LOADING SKELETON */
  .skeleton-card {
    border-radius: 18px; overflow: hidden; background: var(--bg-cream);
    aspect-ratio: 4/5; position: relative;
    box-shadow: 0 10px 30px -12px rgba(26,26,26,0.06);
  }
  .skeleton-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    animation: skel 1.4s ease-in-out infinite;
  }
  @keyframes skel { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

  /* PAGINAÇÃO */
  .pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 64px; padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
  }
  .pagination button {
    min-width: 42px; height: 42px; padding: 0 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid transparent; background: transparent;
    color: var(--text-secondary); font-size: 13px; font-weight: 500;
    border-radius: 999px; transition: all 0.25s ease;
    cursor: pointer;
  }
  .pagination button:hover:not(:disabled) { color: var(--text-primary); background: var(--bg-cream); }
  .pagination button.active {
    background: var(--text-primary); color: var(--bg-white); border-color: var(--text-primary);
  }
  .pagination button:disabled { opacity: 0.35; cursor: not-allowed; }
  .pagination .nav-arrow { padding: 0 20px; width: auto; font-size: 12px; letter-spacing: 0.06em; }
  .pagination .ellipsis { border: none; background: transparent; }
  .pagination .ellipsis:hover { background: transparent; }

  /* MODAL */
  .modal-backdrop {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
  }
  .modal-backdrop.open { opacity: 1; pointer-events: auto; }
  .modal {
    background: var(--bg-white);
    max-width: 1100px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    border-radius: 4px;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s var(--ease-out);
    position: relative;
  }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.94); border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
  }
  .modal-close:hover { background: var(--text-primary); color: var(--bg-white); border-color: var(--text-primary); }
  .modal-close svg { width: 14px; height: 14px; }
  .modal-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 4vw, 64px);
    padding: clamp(32px, 4vw, 56px);
  }
  .modal-img {
    aspect-ratio: 1/1; background: var(--bg-cream); border-radius: 2px;
    overflow: hidden; position: relative;
  }
  .modal-img img { width: 100%; height: 100%; object-fit: cover; }
  .modal-img.is-missing::after {
    content: "sem imagem"; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--text-light); letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .modal-info .breadcrumb { justify-content: flex-start; margin-bottom: 16px; }
  .modal-info h1 {
    font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; letter-spacing: -0.01em;
    line-height: 1.2; margin-bottom: 14px;
  }
  .product-code {
    display: inline-block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mustard-deep); margin-bottom: 24px;
    padding: 6px 12px; background: var(--bg-cream); border-radius: 2px;
  }
  .info-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
  .info-table tr { border-bottom: 1px solid var(--border-subtle); }
  .info-table tr:last-child { border-bottom: none; }
  .info-table td {
    padding: 11px 0; font-size: 13px; vertical-align: top;
  }
  .info-table td:first-child {
    color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em;
    width: 32%; padding-right: 16px;
  }
  .info-table td:last-child { color: var(--text-primary); }
  .info-note {
    margin-top: 18px; padding: 14px 16px; background: var(--bg-cream); border-radius: 2px;
    font-size: 12px; color: var(--text-secondary); line-height: 1.5;
  }
  .info-note strong { color: var(--text-primary); }

  /* CTAs MODAL */
  .modal-cta {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: 26px; margin-bottom: 6px;
  }
  .cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px;
    font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; border-radius: 8px;
    transition: all 0.3s ease; cursor: pointer;
    border: 1px solid var(--text-primary);
    background: var(--text-primary); color: var(--bg-white);
  }
  .cta:hover { background: var(--bg-white); color: var(--text-primary); transform: translateY(-2px); }
  .cta-outline { background: transparent; color: var(--text-primary); }
  .cta-outline:hover { background: var(--text-primary); color: var(--bg-white); }
  .cta-wa { background: #25D366; color: #fff; border-color: #25D366; }
  .cta-wa:hover { background: #1FA855; border-color: #1FA855; color: #fff; transform: translateY(-2px); }
  .cta-wa::before {
    content: ""; width: 16px; height: 16px; background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.149-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.711.307 1.265.49 1.697.626.713.226 1.362.194 1.875.118.572-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.149-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.711.307 1.265.49 1.697.626.713.226 1.362.194 1.875.118.572-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  /* FOOTER */
  footer { background: var(--bg-dark); color: rgba(255,255,255,.7); padding: 48px 0 24px; }
  footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
  footer .footer-logo {
    font-weight: 700; font-size: 18px; letter-spacing: 0.04em; color: #fff;
    text-transform: uppercase;
  }
  footer .footer-logo .h-italic { color: var(--mustard-light); }
  footer p { font-size: 12px; letter-spacing: 0.04em; }

  /* RESPONSIVO */
  @media (max-width: 1024px) {
    .catalog-shell { grid-template-columns: 240px 1fr; gap: 36px; }
    .swatches-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .modal-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 768px) {
    .catalog-hero { padding: 72px 0 56px; }
    .catalog-shell { grid-template-columns: 1fr; padding-top: 32px; padding-bottom: 72px; }
    .filters-sidebar {
      position: static; max-height: none;
      padding: 24px 20px;
      margin-bottom: 24px;
    }
    .swatches-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .swatch-name { font-size: 14px; }
    .results-bar { align-items: stretch; }
    .results-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
    .search-box { min-width: auto; width: 100%; }
    .sort-select { width: 100%; }
    .pagination button { min-width: 38px; height: 38px; font-size: 12px; }
    .pagination .nav-arrow { padding: 0 14px; font-size: 11px; }
  }


.popup-registrar-wrap { position: absolute !important; opacity: 0 !important; pointer-events: none !important; height: 0 !important; width: 0 !important; overflow: hidden !important; z-index: -9999 !important; }
.popup-registrar { position: absolute !important; opacity: 0 !important; pointer-events: none !important; height: 0 !important; width: 0 !important; overflow: hidden !important; }/* End custom CSS */