/* Gorillah WooCard — Frontend */

:root {
	--gwc-gap:             16px;
	--gwc-radius:          8px;
	--gwc-filter-height:   37px;
	--gwc-card-bg:         #ffffff;
	--gwc-card-border:     #e8e8e8;
	--gwc-text:            #1a1a1a;
	--gwc-text-muted:      #666;
	--gwc-price:           #111;
	--gwc-sale-color:      #e44;
	--gwc-btn-bg:          #111;
	--gwc-btn-color:       #fff;
	--gwc-btn-hover:       #333;
	--gwc-badge-sale:      #e44;
	--gwc-badge-oos:       #999;
	--gwc-ratio-1-1:       100%;
	--gwc-ratio-4-3:       75%;
	--gwc-ratio-16-9:      56.25%;
	--gwc-ratio-original:  auto;
}

/* ── Grid ── */
.gwc-grid {
	display: grid;
	gap: var(--gwc-gap);
	grid-template-columns: repeat( var(--gwc-cols, 3), 1fr );
}
.gwc-cols-2 { --gwc-cols: 2; }
.gwc-cols-3 { --gwc-cols: 3; }
.gwc-cols-4 { --gwc-cols: 4; }
.gwc-cols-5 { --gwc-cols: 5; }
.gwc-cols-6 { --gwc-cols: 6; }

@media (max-width: 1024px) { .gwc-grid { --gwc-cols: 2; } }
@media (max-width: 600px)  { .gwc-grid { --gwc-cols: 1; } }

/* ── Card Base (Default + Minimal) ── */
.gwc-card {
	background: var(--gwc-card-bg);
	border: 1px solid var(--gwc-card-border);
	border-radius: var(--gwc-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 200ms ease, transform 200ms ease;
}
.gwc-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }

.gwc-card__image-wrap {
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
	padding-top: var(--gwc-ratio, var(--gwc-ratio-1-1));
}
.gwc-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}
.gwc-card:hover .gwc-card__image { transform: scale(1.04); }

/* Badges */
.gwc-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 3px 8px;
	border-radius: 4px;
	line-height: 1.4;
	color: #fff;
}
.gwc-badge--sale       { background: var(--gwc-badge-sale); }
.gwc-badge--outofstock { background: var(--gwc-badge-oos); }

/* Card body */
.gwc-card__body {
	padding: 12px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gwc-card__meta {
	font-size: 11px;
	line-height: 1.3;
	color: var(--gwc-text-muted);
}
.gwc-card__title { font-size: 14px; font-weight: 600; margin: 0; line-height: 1.4; }
.gwc-card__title a { color: var(--gwc-text); text-decoration: none; }
.gwc-card__title a:hover { text-decoration: underline; }
.gwc-search-highlight {
	border-radius: 0.2em;
	background: rgba(255, 193, 7, 0.45);
	color: inherit;
	padding: 0 0.08em;
}
.gwc-card__price { font-size: 16px; font-weight: 700; color: var(--gwc-price); }
.gwc-card__price del { color: var(--gwc-text-muted); font-weight: 400; margin-right: 4px; }
.gwc-card__price ins { text-decoration: none; color: var(--gwc-sale-color); }
.gwc-card__rating { font-size: 12px; color: var(--gwc-text-muted); }

/* Actions */
.gwc-card__actions { margin-top: auto; padding-top: 10px; }
.gwc-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gwc-btn-bg);
	color: var(--gwc-btn-color);
	border: none;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 150ms ease;
	width: 100%;
}
.gwc-card__btn:hover { background: var(--gwc-btn-hover); color: var(--gwc-btn-color); }
.gwc-card__btn--disabled { opacity: .5; cursor: not-allowed; }
.gwc-card__btn--full { width: 100%; }

/* ── Skin: Minimal ── */
.gwc-skin-minimal {
	flex-direction: row;
	align-items: center;
	padding: 10px;
	gap: 12px;
}
.gwc-skin-minimal .gwc-card__image-wrap {
	flex: 0 0 80px;
	height: 80px;
	padding-top: 0;
	border-radius: 6px;
}
.gwc-skin-minimal .gwc-card__image { position: static; height: 80px; }
.gwc-skin-minimal .gwc-card__body { padding: 0; gap: 4px; }
.gwc-skin-minimal .gwc-card__actions--icon { margin-left: auto; }
.gwc-card__icon-btn {
	background: transparent;
	border: 1px solid var(--gwc-card-border);
	border-radius: 6px;
	padding: 7px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: background 150ms ease, border-color 150ms ease;
}
.gwc-card__icon-btn:hover { background: #f5f5f5; border-color: #ccc; }

/* ══════════════════════════════════════════════
   Skin: Featured — design do WooCard Export.html
   ══════════════════════════════════════════════ */

.gwc-skin-featured .gwc-card {
	overflow: visible;
	border-color: transparent;
	border-radius: 18px;
	box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
	transition: box-shadow .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
}
.gwc-skin-featured .gwc-card--lift:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 32px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.07);
}
.gwc-skin-featured .gwc-card--zoom:hover .gwc-card__image { transform: scale(1.06); }
.gwc-skin-featured .gwc-card--none:hover { transform: none; box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05); }
.gwc-skin-featured .gwc-card--none:hover .gwc-card__image { transform: none; }

.gwc-skin-featured .gwc-card__image-wrap {
	padding-top: 0;
	aspect-ratio: var(--gwc-img-ratio, var(--gwc-feat-ratio, 3/4));
	border-radius: 18px 18px 0 0;
	background: #e8e8e6;
	overflow: hidden;
}
.gwc-skin-featured .gwc-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .42s cubic-bezier(.4,0,.2,1);
}

/* Featured: badge pill */
.gwc-skin-featured .gwc-badge {
	top: 12px;
	left: 12px;
	font-size: 10px;
	letter-spacing: 1.2px;
	padding: 4px 10px;
	border-radius: 999px;
	z-index: 2;
}

/* Featured: hover overlay */
.gwc-card__hover-overlay {
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 0 12px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease;
	pointer-events: none;
	z-index: 3;
}
.gwc-skin-featured .gwc-card:hover .gwc-card__hover-overlay {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.gwc-card__overlay-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: none;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 600;
	color: #1a1a1a;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0,0,0,.12);
	transition: background .15s ease, transform .15s ease;
	white-space: nowrap;
	font-family: inherit;
}
.gwc-card__overlay-btn:hover {
	background: #fff;
	transform: scale(1.04);
	color: #1a1a1a;
}

/* Featured: body */
.gwc-skin-featured .gwc-card__body {
	padding: 14px 16px 16px;
	gap: 8px;
}
.gwc-card__cat {
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .8px;
	color: var(--gwc-text-muted);
	line-height: 1;
}

/* Featured: bottom row */
.gwc-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}
.gwc-card__prices {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.gwc-card__price--current {
	font-size: 18px;
	font-weight: 700;
	color: var(--gwc-price);
	line-height: 1;
}
.gwc-card__price-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.gwc-card__price--old {
	font-size: 12px;
	color: var(--gwc-text-muted);
	text-decoration: line-through;
	line-height: 1;
}
.gwc-card__promo-tag {
	background: var(--gwc-badge-sale);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 3px 8px;
	border-radius: 999px;
	text-transform: uppercase;
	line-height: 1.4;
}

/* Featured: circle cart button */
.gwc-card__cart-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gwc-btn-bg);
	color: var(--gwc-btn-color);
	border: 1px solid transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
	transition: transform .15s ease, background .25s ease;
	flex-shrink: 0;
	text-decoration: none;
}
.gwc-card__cart-btn:hover { transform: scale(1.1); color: var(--gwc-btn-color); }
.gwc-card__cart-btn--oos { background: #ccc; cursor: not-allowed; box-shadow: none; }
.gwc-card__cart-btn--oos:hover { transform: none; }

.gwc-cart-icon { transition: opacity .2s ease, transform .2s ease; }
.gwc-cart-icon--check { position: absolute; opacity: 0; transform: scale(.6); }
.gwc-card__cart-btn.gwc--added  { background: #22c55e; }
.gwc-card__cart-btn.gwc--added .gwc-cart-icon--cart  { opacity: 0; transform: scale(.6); }
.gwc-card__cart-btn.gwc--added .gwc-cart-icon--check { opacity: 1; transform: scale(1); }

/* ── Filters ── */
.gwc-filters { margin-bottom: 20px; }
.gwc-filter-total-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #8d8d8d;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
}
.gwc-filter-total {
	color: inherit;
	font-size: 1em;
	font-weight: 400;
}
.gwc-filter-total-label {
	color: inherit;
	font-size: 1em;
	font-weight: 400;
}
.gwc-filter-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.gwc-filters--vertical .gwc-filter-form { flex-direction: column; }
.gwc-filter-field { display: flex; flex-direction: column; gap: 4px; }
.gwc-filter-field--search {
	justify-content: flex-end;
}

.gwc-filter-input,
.gwc-filter-select {
	font-size: 13px;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 7px 10px;
	background: #fff;
	color: #333;
	appearance: none;
	transition: border-color 150ms ease;
	min-height: var(--gwc-filter-height);
	height: var(--gwc-filter-height);
	box-sizing: border-box;
}
.gwc-filter-input:focus,
.gwc-filter-select:focus { outline: none; border-color: #333; }

.gwc-search-wrap {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	padding: 0 10px;
	min-height: var(--gwc-filter-height);
	height: var(--gwc-filter-height);
	box-sizing: border-box;
}
.gwc-search-icon { position: absolute; left: 9px; pointer-events: none; color: #999; }
.gwc-filter-search {
	padding-left: 22px;
	padding-right: 18px;
	min-width: 200px;
	border: 0;
	background: transparent;
	flex: 1 1 auto;
	width: 100%;
}
.gwc-search-clear { position: absolute; right: 8px; background: none; border: none; cursor: pointer; color: #999; font-size: 16px; line-height: 1; padding: 0; }
.gwc-search-clear:hover { color: #333; }

.gwc-price-range { display: flex; flex-direction: column; gap: 6px; min-width: 180px; }
.gwc-range-wrap { position: relative; height: 20px; }
.gwc-range-wrap::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 9px;
	height: 4px;
	border-radius: 999px;
	background: #d9d9d9;
}
.gwc-range { position: absolute; left: 0; width: 100%; pointer-events: none; appearance: none; height: 4px; background: transparent; top: 8px; }
.gwc-range--min { z-index: 2; }
.gwc-range--max { z-index: 3; }
.gwc-range::-webkit-slider-thumb { pointer-events: all; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: #111; cursor: pointer; }
.gwc-range::-moz-range-thumb { pointer-events: all; width: 16px; height: 16px; border-radius: 50%; background: #111; cursor: pointer; border: none; }
.gwc-price-inputs { display: flex; gap: 6px; align-items: center; }
.gwc-price-field {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 0 10px;
	background: #fff;
	min-height: var(--gwc-filter-height);
	height: var(--gwc-filter-height);
	box-sizing: border-box;
}
.gwc-price-prefix {
	font-size: 12px;
	font-weight: 600;
	color: #777;
}
.gwc-price-input {
	width: 80px;
	border: 0;
	padding-left: 0;
	padding-right: 0;
	background: transparent;
	flex: 1 1 auto;
	min-width: 0;
}
.gwc-price-input:focus {
	border-color: transparent;
}

.gwc-filter-clear-btn {
	background: none;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 7px 12px;
	font-size: 13px;
	cursor: pointer;
	color: #666;
	transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--gwc-filter-height);
	height: var(--gwc-filter-height);
	box-sizing: border-box;
}
.gwc-filter-clear-btn:hover { border-color: #333; color: #333; }

/* ── Technical Filters ── */
.gwc-tech-filters {
	max-width: 220px;
	font-family: inherit;
}

.gwc-tech-filter-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gwc-tech-filter-group {
	border-top: 1px solid #d8d8d8;
	padding-top: 8px;
}

.gwc-tech-filter-group:first-child {
	border-top: 0;
	padding-top: 0;
}

.gwc-tech-filter-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #2e61ab;
	margin-bottom: 6px;
}

.gwc-tech-filter-input,
.gwc-tech-filter-select {
	width: 100%;
	min-height: 32px;
	border: 2px solid #2e61ab;
	border-radius: 3px;
	padding: 6px 8px;
	font-size: 12px;
	color: #3a3a3a;
	background: #fff;
}

.gwc-tech-filter-input:focus,
.gwc-tech-filter-select:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(46, 97, 171, 0.15);
}

.gwc-tech-filter-stack {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gwc-tech-active {
	border: 2px solid #2e61ab;
	border-radius: 3px;
	padding: 8px;
	min-height: 72px;
}

.gwc-tech-active__title {
	font-size: 12px;
	font-weight: 700;
	color: #2e61ab;
	margin-bottom: 6px;
}

.gwc-tech-active__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 18px;
}

.gwc-tech-active__empty {
	font-size: 12px;
	color: #777;
}

.gwc-tech-chip {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 6px;
	background: transparent;
	border: 0;
	padding: 0;
	font-size: 12px;
	color: #555;
	cursor: pointer;
}

.gwc-tech-chip span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #e94f1d;
	color: #fff;
	font-size: 11px;
	line-height: 1;
}

.gwc-tech-clear-btn {
	width: 100%;
	min-height: 30px;
	border: 0;
	border-radius: 4px;
	background: #2e61ab;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: lowercase;
	cursor: pointer;
}

.gwc-tech-clear-btn:hover {
	background: #244f8f;
}

.elementor-editor-active .gwc-tech-filters {
	max-width: none;
}

.gwc-results-header {
	margin-bottom: 18px;
}

.gwc-results-title {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.gwc-empty-state {
	grid-column: 1 / -1;
	width: 100%;
	padding: 24px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.03);
	color: #555;
	text-align: center;
}

.gwc-home-search {
	display: flex;
	align-items: stretch;
	gap: 10px;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #fff;
	padding: 8px;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gwc-home-search__input {
	flex: 1;
	min-width: 0;
	min-height: 44px;
	border: 0 solid transparent;
	border-radius: inherit;
	background: transparent;
	padding: 0 18px;
	font-size: 16px;
	color: #2a2a2a;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gwc-home-search__input:focus {
	outline: none;
}

.gwc-home-search__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 52px;
	border: 0 solid transparent;
	border-radius: 999px;
	background: #fff;
	color: #5f78d4;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	padding: 0 18px;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gwc-home-search__button-icon {
	display: inline-flex;
	font-size: 18px;
	line-height: 1;
}

.gwc-home-search__button-icon i {
	color: inherit;
}

.gwc-home-search__button-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	stroke: currentColor;
}

.gwc-home-search__button-icon svg * {
	fill: currentColor;
	stroke: currentColor;
}

.gwc-home-search__button-text {
	display: inline-flex;
	line-height: 1;
}

.gwc-home-search--show-text .gwc-home-search__button {
	gap: 8px;
}

.gwc-cat-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.gwc-cat-buttons.gwc-cat-buttons--stretch {
	align-items: stretch;
}

.gwc-cat-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border: 1px solid #d7d7d7;
	border-radius: 999px;
	background: #ffffff;
	color: #1f1f1f;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gwc-cat-button__content {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;
}

.gwc-cat-button:hover,
.gwc-cat-button:focus {
	color: #ffffff;
	background: #111111;
	border-color: #111111;
	text-decoration: none;
}

.gwc-cat-button__icon,
.gwc-cat-button__label,
.gwc-cat-button__count {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.gwc-cat-button__label {
	text-align: left;
}

.gwc-cat-button--icon-after .gwc-cat-button__label {
	order: 1;
}

.gwc-cat-button--icon-after .gwc-cat-button__count {
	order: 2;
}

.gwc-cat-button--icon-after .gwc-cat-button__icon {
	order: 3;
}

.gwc-cat-button__icon {
	font-size: 1em;
}

.gwc-cat-button__icon i {
	color: inherit;
}

.gwc-cat-button__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	stroke: currentColor;
}

.gwc-cat-button__icon svg * {
	fill: currentColor;
	stroke: currentColor;
}

.gwc-cat-button__count {
	justify-content: center;
	min-width: 1.9em;
	padding: 0.3em 0.55em;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.08);
	font-size: 0.9em;
}

.gwc-cat-button:hover .gwc-cat-button__count,
.gwc-cat-button:focus .gwc-cat-button__count {
	background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 767px) {
	.gwc-home-search {
		gap: 8px;
	}

	.gwc-home-search__button {
		min-height: 44px;
	}
}

/* ── Skeleton Loading ── */
.gwc-skeleton { pointer-events: none; }
.gwc-skeleton-image,
.gwc-skeleton-line {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200%;
	animation: gwc-shimmer 1.5s infinite;
	border-radius: 4px;
}
.gwc-skeleton-image  { width: 100%; padding-top: 100%; }
.gwc-skeleton-title  { height: 16px; margin: 12px 16px 4px; }
.gwc-skeleton-price  { height: 18px; width: 60%; margin: 0 16px 6px; }
.gwc-skeleton-btn    { height: 34px; margin: 6px 16px 16px; }
@keyframes gwc-shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* ── Category Grid ── */
.gwc-cat-grid {
	display: grid;
	gap: var(--gwc-gap);
	grid-template-columns: repeat( var(--gwc-cat-cols, 3), 1fr );
}
.gwc-cat-grid--cols-2 { --gwc-cat-cols: 2; }
.gwc-cat-grid--cols-3 { --gwc-cat-cols: 3; }
.gwc-cat-grid--cols-4 { --gwc-cat-cols: 4; }
.gwc-cat-grid--cols-5 { --gwc-cat-cols: 5; }
.gwc-cat-grid--cols-6 { --gwc-cat-cols: 6; }

.gwc-cat-card {
	display: block;
	border-radius: var(--gwc-radius);
	overflow: hidden;
	text-decoration: none;
	color: var(--gwc-text);
	border: 1px solid var(--gwc-card-border);
	transition: box-shadow 200ms ease;
}
.gwc-cat-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.gwc-cat-card__image-wrap { overflow: hidden; }
.gwc-cat-card__image { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 300ms ease; }
.gwc-cat-hover--zoom .gwc-cat-card:hover .gwc-cat-card__image { transform: scale(1.06); }
.gwc-cat-hover--border .gwc-cat-card:hover { border-color: #333; }
.gwc-cat-card__body { padding: 10px 14px; }
.gwc-cat-card__name { font-weight: 600; font-size: 14px; margin: 0 0 4px; }
.gwc-cat-card__count { font-size: 12px; color: var(--gwc-text-muted); }

/* ── Sidebar layout ── */
.gwc-grid-layout--sidebar { display: flex; gap: 20px; align-items: flex-start; }
.gwc-grid-layout__filters { flex: 0 0 240px; }
.gwc-grid-layout__content { flex: 1; min-width: 0; }

/* ── Pagination ── */
.gwc-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.gwc-page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; border: 1px solid #ddd; border-radius: 6px; font-size: 13px; font-weight: 600; color: #333; text-decoration: none; transition: background 150ms ease, border-color 150ms ease; }
.gwc-page-btn:hover { background: #f5f5f5; border-color: #bbb; }
.gwc-page-btn--active { background: #111; color: #fff; border-color: #111; }

/* ── Load More ── */
.gwc-load-more-wrap { text-align: center; margin-top: 24px; }
.gwc-btn-load-more[disabled] { opacity: .72; cursor: wait; }
.gwc-is-loading-more,
.gwc-loading-preview { position: relative; }
.gwc-is-loading-more::after,
.gwc-loading-preview::after {
	content: "CARREGANDO";
	display: block;
	margin-top: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	color: #0891b2;
	text-transform: uppercase;
}
.gwc-infinite-sentinel.gwc-is-loading-more {
	min-height: 22px;
}
.gwc-infinite-sentinel.gwc-is-loading-more::after,
.gwc-infinite-sentinel.gwc-loading-preview::after {
	margin-top: 0;
	text-align: center;
}
.gwc-load-more-wrap.gwc-loading-preview {
	min-height: 22px;
}
.gwc-btn-load-more { background: #111; color: #fff; border: none; border-radius: 6px; padding: 10px 28px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 150ms ease; }
.gwc-btn-load-more:hover { background: #333; }

/* Stock status */
.gwc-stock { font-size: 12px; font-weight: 600; }
.gwc-stock--in  { color: #28a745; }
.gwc-stock--out { color: #dc3545; }

/* ── WooSlider ── */
.gwc-wooslider {
	--gwc-wooslider-speed: 420ms;
	--gwc-wooslider-fit: cover;
	width: 100%;
}

.gwc-wooslider__viewport {
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: var(--gwc-radius);
}

.gwc-wooslider__track {
	display: flex;
	transition: transform var(--gwc-wooslider-speed) ease;
	will-change: transform;
}

.gwc-wooslider__slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	overflow: hidden;
}

.gwc-wooslider--ratio-1-1 .gwc-wooslider__slide { aspect-ratio: 1 / 1; }
.gwc-wooslider--ratio-4-3 .gwc-wooslider__slide { aspect-ratio: 4 / 3; }
.gwc-wooslider--ratio-16-9 .gwc-wooslider__slide { aspect-ratio: 16 / 9; }

.gwc-wooslider__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: var(--gwc-wooslider-fit);
}

.gwc-wooslider--fade .gwc-wooslider__track {
	display: block;
	transform: none !important;
}

.gwc-wooslider--fade .gwc-wooslider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity var(--gwc-wooslider-speed) ease;
}

.gwc-wooslider--fade .gwc-wooslider__slide.is-active {
	position: relative;
	opacity: 1;
	z-index: 1;
}

.gwc-wooslider--ratio-original .gwc-wooslider__image {
	height: auto;
}

.gwc-wooslider__zoom {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.gwc-wooslider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: rgba(17, 17, 17, 0.74);
	color: #fff;
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
	transform: translateY(-50%);
	transition: background 160ms ease;
}

.gwc-wooslider__arrow:hover {
	background: rgba(17, 17, 17, 0.92);
}

.gwc-wooslider__arrow--prev { left: 12px; }
.gwc-wooslider__arrow--next { right: 12px; }

.gwc-wooslider__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.gwc-wooslider__dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 50%;
	background: #d0d0d0;
	cursor: pointer;
	padding: 0;
}

.gwc-wooslider__dot.is-active {
	background: #111;
}

.gwc-wooslider__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
	gap: 8px;
	margin-top: 12px;
}

.gwc-wooslider__thumb {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid var(--gwc-card-border);
	border-radius: var(--gwc-radius);
	background: #f5f5f5;
	cursor: pointer;
	padding: 0;
	opacity: 0.68;
	transition: border-color 160ms ease, opacity 160ms ease;
}

.gwc-wooslider__thumb.is-active,
.gwc-wooslider__thumb:hover {
	border-color: #111;
	opacity: 1;
}

.gwc-wooslider__thumb-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 767px) {
	.gwc-wooslider__arrow {
		width: 36px;
		height: 36px;
		font-size: 26px;
	}

	.gwc-wooslider__thumbs {
		grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
	}
}
