.gr-woo {
    padding-bottom: 160px;
}

.gr-woo-hero {
    position: relative;
    padding: 40px 0 30px;
}

.gr-woo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(245, 176, 49, 0.16) 0%, rgba(245, 176, 49, 0) 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.gr-woo-hero .container {
    position: relative;
    z-index: 1;
}

.gr-woo-hero .title-label {
    margin-bottom: 24px;
}

.gr-woo-hero__title {
    margin-bottom: 18px;
}

.gr-woo-hero__subtitle {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.45;
    color: #8d8d94;
}

.gr-woo-catalog {
    padding-top: 30px;
}

.gr-woo-catalog__layout {
    display: grid;
    /* grid-template-columns: 330px minmax(0, 1fr); */
    gap: 30px;
    align-items: start;
}

.gr-woo-panel {
    position: relative;
    background:
        radial-gradient(49.33% 100% at 50% 0%, rgba(96, 96, 98, 0.18) 0%, rgba(96, 96, 98, 0) 100%) padding-box,
        linear-gradient(#141418, #141418) padding-box,
        radial-gradient(ellipse at 50% 0%, #606062 0%, #1a1a20 75%) border-box;
    border: 1px solid transparent;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.gr-woo-filters {
    position: sticky;
    top: 20px;
}

.gr-woo-filters__panel {
    padding: 26px;
}

.gr-woo-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.gr-woo-filters__header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gr-woo-filters__header h2 {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    color: #fff;
}

.gr-woo-filters__reset {
    font-size: 15px;
    line-height: 1.2;
    color: #fe0f17;
}

.gr-woo-filters__close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #2d2d33;
    border-radius: 12px;
    background: #17171b;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.gr-woo-filters__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gr-woo-filter {
    background: #17171b;
    border: 1px solid #25252b;
    border-radius: 18px;
    overflow: hidden;
}

.gr-woo-filter summary {
    position: relative;
    padding: 18px 52px 18px 18px;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #f1f1f3;
}

.gr-woo-filter summary::-webkit-details-marker {
    display: none;
}

.gr-woo-filter summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: #fe0f17;
}

.gr-woo-filter[open] summary::after {
    content: "-";
}

.gr-woo-filter__content {
    display: grid;
    gap: 10px;
    padding: 0 18px 18px;
    max-height: 280px;
    overflow-y: auto;
}

.gr-woo-check {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 24px;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.4;
    color: #bdbdc4;
    cursor: pointer;
}

.gr-woo-check input {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 1px solid #3a3b41;
    border-radius: 6px;
    background: linear-gradient(180deg, #19191d 0%, #101013 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gr-woo-check input::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #101013;
    border-bottom: 2px solid #101013;
    transform: rotate(45deg) scale(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.gr-woo-check input:checked {
    border-color: #fe0f17;
    background: linear-gradient(180deg, #fe0f17 0%, #c88411 100%);
    box-shadow: 0 0 0 3px rgba(245, 176, 49, 0.14);
}

.gr-woo-check input:checked::after {
    transform: rotate(45deg) scale(1);
}

.gr-woo-check input:hover {
    border-color: #6a6b73;
}

.gr-woo-check input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 176, 49, 0.18);
}

.gr-woo-price {
    gap: 16px;
}

.gr-woo-price__values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gr-woo-price__current {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #101013;
    border: 1px solid #2b2b31;
}

.gr-woo-price__current span {
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.gr-woo-price__current strong {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

.gr-woo-price__slider {
    position: relative;
    height: 32px;
    margin: 4px 0;
}

.gr-woo-price__track,
.gr-woo-price__range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 999px;
}

.gr-woo-price__track {
    left: 0;
    right: 0;
    background: #2b2b31;
}

.gr-woo-price__range {
    background: linear-gradient(90deg, #fe0f17 0%, #d79314 100%);
}

.gr-woo-price__range-input {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.gr-woo-price__range-input::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.gr-woo-price__range-input::-moz-range-track {
    height: 6px;
    background: transparent;
}

.gr-woo-price__range-input::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    margin-top: -7px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fe0f17;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
}

.gr-woo-price__range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fe0f17;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    pointer-events: auto;
}

.gr-woo-price__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gr-woo-price__field span {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.gr-woo-price__field input {
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: #101013;
    border: 1px solid #2b2b31;
    color: #fff;
}

.gr-woo-filters__actions {
    padding-top: 6px;
}

.gr-woo-filters__submit {
    width: 100%;
    max-width: none;
}

.gr-woo-products {
    min-width: 0;
}

.gr-woo-products__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.gr-woo-products__results {
    font-size: 16px;
    line-height: 1.4;
    color: #9b9ca2;
}

.gr-woo-products__results strong {
    color: #fff;
    font-weight: 600;
}

.gr-woo-filters-toggle {
    display: none;
}

.gr-woo-mobile-filters {
    display: none;
    margin-bottom: 24px;
    padding: 22px;
}

.gr-woo-mobile-filters__form {
    display: grid;
    gap: 16px;
}

.gr-woo-mobile-filters__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gr-woo-mobile-filters__field {
    display: grid;
    gap: 8px;
}

.gr-woo-mobile-filters__field span {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.gr-woo-mobile-filters__select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #2b2b31;
    border-radius: 14px;
    background: #101013;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.gr-woo-mobile-filters__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gr-woo-mobile-filters__submit {
    flex: 1 1 auto;
    max-width: none;
}

.gr-woo-mobile-filters__reset {
    font-size: 15px;
    line-height: 1.2;
    color: #fe0f17;
}

.gr-woo-products .products,
.woocommerce-page .gr-woo-products .products,
.woocommerce .gr-woo-products .products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gr-woo-products .products::before,
.gr-woo-products .products::after,
.woocommerce-page .gr-woo-products .products::before,
.woocommerce-page .gr-woo-products .products::after,
.woocommerce .gr-woo-products .products::before,
.woocommerce .gr-woo-products .products::after {
    display: none;
}

.gr-woo-products .products li.product,
.woocommerce-page .gr-woo-products .products li.product,
.woocommerce .gr-woo-products .products li.product {
    width: auto !important;
    max-width: none !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
}

.gr-woo-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px;
    background:
        radial-gradient(60% 100% at 50% 0%, rgba(245, 176, 49, 0.12) 0%, rgba(245, 176, 49, 0) 55%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(14, 14, 18, 0.98));
    border: 1px solid #2a2a31;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.gr-woo-card__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
        #16161b;
    border: 1px solid #23232a;
    border-radius: 18px;
    overflow: hidden;
}

.gr-woo-card__image img {
    width: 100%;
    height: 100%;
    max-height: 240px;
    object-fit: contain;
}

.gr-woo-card__badges {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.gr-woo-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(32, 32, 36, 0.9);
    border: 1px solid #3a3b40;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    backdrop-filter: blur(10px);
}

.gr-woo-card__badge--accent {
    background: rgba(84, 59, 9, 0.35);
    border-color: rgba(245, 176, 49, 0.35);
    color: #fe0f17;
}

.gr-woo-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 20px 6px 6px;
}

.gr-woo-card__title {
    margin: 0 0 18px;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
}

.gr-woo-card__title a {
    color: inherit;
}

.gr-woo-card__attributes {
    display: grid;
    gap: 10px;
    margin: 0;
}

.gr-woo-card__attribute {
    display: grid;
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gr-woo-card__attribute dt,
.gr-woo-card__attribute dd {
    margin: 0;
}

.gr-woo-card__attribute dt {
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.gr-woo-card__attribute dd {
    font-size: 15px;
    line-height: 1.45;
    color: #d6d6db;
    text-align: right;
}

.gr-woo-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
}

.gr-woo-card__price,
.gr-woo-product__price {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.15;
    color: #fff;
}

.gr-woo-card__price ins,
.gr-woo-product__price ins {
    color: #fe0f17;
    text-decoration: none;
}

.gr-woo-card__price del,
.gr-woo-product__price del {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7em;
}

.gr-woo-card__link {
    min-width: 150px;
}

.gr-woo-pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.gr-woo-pagination__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gr-woo-pagination__item {
    margin: 0;
}

.gr-woo-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    width: 48px;
    height: 48px;
    padding: 0 12px;
    border-radius: 14px;
    background: #17171c;
    border: 1px solid #2c2d33;
    color: #d0d0d5;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gr-woo-pagination .page-numbers.current {
    background: linear-gradient(180deg, #fe0f17 0%, #98660b 100%);
    color: #fff;
    border-color: transparent;
}

.gr-woo-pagination a.page-numbers:hover {
    transform: translateY(-2px);
    border-color: #fe0f17;
    color: #fff;
}

.gr-woo-pagination .page-numbers.dots {
    width: auto;
    min-width: 48px;
    background: transparent;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.4);
}

.gr-woo-empty {
    padding: 40px;
    text-align: center;
}

.gr-woo-empty h2 {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
}

.gr-woo-empty p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    color: #909097;
}

.gr-woo-product {
    padding-top: 24px;
}

.gr-woo-product__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 30px;
    align-items: start;
}

.gr-woo-gallery {
    padding: 22px;
}

.gr-woo-gallery__stage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
    padding: 30px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
        #16161b;
    border: 1px solid #26262c;
    border-radius: 22px;
    overflow: hidden;
}

.gr-woo-gallery__main {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
}

.gr-woo-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.gr-woo-gallery__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 10px;
    background: #17171c;
    border: 1px solid #2a2a31;
    border-radius: 16px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.gr-woo-gallery__thumb img {
    width: 100%;
    height: 72px;
    object-fit: contain;
}

.gr-woo-gallery__thumb.is-active {
    border-color: #fe0f17;
    transform: translateY(-2px);
}

.gr-woo-product__summary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gr-woo-product__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gr-woo-product__title {
    margin: 0;
    text-align: left;
}

.gr-woo-product__attributes {
    display: grid;
    gap: 14px;
    margin: 0;
}

.gr-woo-product__attribute {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gr-woo-product__attribute dt,
.gr-woo-product__attribute dd {
    margin: 0;
}

.gr-woo-product__attribute dt {
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.gr-woo-product__attribute dd {
    font-size: 18px;
    line-height: 1.5;
    color: #f2f2f4;
}

.gr-woo-product__price-box {
    padding: 28px;
}

.gr-woo-product__price-label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.gr-woo-product__price {
    margin-bottom: 22px;
}

.gr-woo-product__buy {
    width: 100%;
    max-width: none;
}

.gr-woo-product__content {
    margin-top: 30px;
    padding: 30px;
}

.gr-woo-product__content article {
    margin: 0;
}

.gr-woo-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.gr-woo-modal.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}

.gr-woo-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: min(90vh, 920px);
    overflow-y: auto;
    padding: 28px;
    background:
        radial-gradient(49.33% 100% at 50% 0%, rgba(96, 96, 98, 0.2) 0%, rgba(96, 96, 98, 0) 100%) padding-box,
        linear-gradient(#141418, #141418) padding-box,
        radial-gradient(ellipse at 50% 0%, #606062 0%, #1a1a20 75%) border-box;
    border: 1px solid transparent;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.gr-woo-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    background: transparent;
}

.gr-woo-modal__head .title-label {
    margin: 0 0 20px;
}

.gr-woo-modal__head .title-label div {
    justify-content: flex-start;
}

.gr-woo-modal__title {
    margin-bottom: 14px;
    text-align: left;
}

.gr-woo-modal__text {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
    color: #909097;
}

.gr-woo-modal__cf7 {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.gr-woo-purchase-form {
    display: grid;
    gap: 18px;
}

.gr-woo-purchase-form[hidden],
.gr-woo-success[hidden] {
    display: none !important;
}

.gr-woo-purchase-form__field {
    display: grid;
    gap: 8px;
}

.gr-woo-purchase-form__field span {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.gr-woo-purchase-form__field input {
    width: 100%;
    min-height: 54px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #101013;
    border: 1px solid #2c2d33;
    color: #fff;
}

.gr-woo-purchase-form__submit {
    width: 100%;
    max-width: none;
    margin-top: 4px;
}

.gr-woo-success {
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
    padding: 24px;
    border-radius: 20px;
    background:
        radial-gradient(60% 100% at 50% 0%, rgba(245, 176, 49, 0.18) 0%, rgba(245, 176, 49, 0) 55%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(14, 14, 18, 0.98));
    border: 1px solid #2c2d33;
}

.gr-woo-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fe0f17 0%, #98660b 100%);
    box-shadow: 0 12px 30px rgba(245, 176, 49, 0.2);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.gr-woo-success__title {
    margin: 0;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.35;
    color: #fff;
}

.gr-woo-modal .wpcf7 {
    width: 100%;
}

.gr-woo-modal .wpcf7-form {
    display: grid;
    gap: 18px;
}

.gr-woo-modal .wpcf7-form p {
    margin: 0;
}

.gr-woo-modal .wpcf7-form label {
    display: grid;
    gap: 8px;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.gr-woo-modal .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    min-height: 54px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #101013;
    border: 1px solid #2c2d33;
    color: #fff;
}

.gr-woo-modal textarea.wpcf7-form-control {
    min-height: 140px;
}

.gr-woo-modal .wpcf7-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fe0f17 0%, #98660b 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #fef6f4;
}

.gr-woo-modal .wpcf7-spinner {
    display: none;
}

.gr-woo-modal .wpcf7-response-output,
.gr-woo-modal .wpcf7-not-valid-tip {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1400px) {
    .gr-woo-products .products,
    .woocommerce-page .gr-woo-products .products,
    .woocommerce .gr-woo-products .products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1100px) {
    .gr-woo {
        padding-bottom: 120px;
    }

    .gr-woo-catalog__layout,
    .gr-woo-product__layout {
        grid-template-columns: 1fr;
    }

    .gr-woo-filters {
        position: static;
    }

    .gr-woo-gallery__stage {
        min-height: 420px;
    }
}

@media (max-width: 991px) {
    .gr-woo-mobile-filters {
        display: block;
    }

    .gr-woo-filters-toggle,
    .gr-woo-filters {
        display: none !important;
    }

    .gr-woo-filters {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 100000;
        padding: 18px;
        overflow-y: auto;
        background: rgba(6, 6, 8, 0.82);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .gr-woo-filters.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .gr-woo-filters__panel {
        max-width: 560px;
        margin: 0 auto;
    }

    .gr-woo-filters__close {
        display: inline-flex;
    }

    .gr-woo-products__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .gr-woo {
        padding-bottom: 90px;
    }

    .gr-woo-hero {
        padding-top: 20px;
    }

    .gr-woo-hero__subtitle {
        font-size: 17px;
    }

    .gr-woo-mobile-filters {
        padding: 18px;
    }

    .gr-woo-mobile-filters__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gr-woo-mobile-filters__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gr-woo-products .products,
    .woocommerce-page .gr-woo-products .products,
    .woocommerce .gr-woo-products .products {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .gr-woo-filters__panel,
    .gr-woo-gallery,
    .gr-woo-product__price-box,
    .gr-woo-product__content,
    .gr-woo-modal__dialog {
        padding: 20px;
    }

    .gr-woo-gallery__stage {
        min-height: 300px;
        padding: 18px;
    }

    .gr-woo-card__title {
        font-size: 24px;
    }

    .gr-woo-price__values {
        grid-template-columns: 1fr;
    }

    .gr-woo-card__attribute,
    .gr-woo-product__attribute {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .gr-woo-card__attribute dd {
        text-align: left;
    }

    .gr-woo-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .gr-woo-card__link {
        width: 100%;
    }

    .gr-woo-card__price,
    .gr-woo-product__price {
        font-size: 26px;
    }

    .gr-woo-empty {
        padding: 28px 20px;
    }

    .gr-woo-empty h2 {
        font-size: 28px;
    }

    .gr-woo-product__attribute dd {
        font-size: 16px;
    }

    .gr-woo-modal__text {
        font-size: 16px;
    }

    .gr-woo-success {
        padding: 20px;
    }

    .gr-woo-success__title {
        font-size: 22px;
    }
}