.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.woocommerce form .form-row label,
.woocommerce .woocommerce-billing-fields h3,
.woocommerce .woocommerce-additional-fields h3,
.woocommerce-checkout-review-order h3 {
    color: var(--gp-text);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.woocommerce table.shop_table {
    border: 1px solid var(--gp-border);
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
    border-color: var(--gp-border);
    color: var(--gp-text);
    padding: 1rem;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    border-top: 0;
    color: var(--gp-text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gp-border);
    border-radius: 0;
}

.woocommerce-store-notice {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: min(calc(100vw - 2rem), 42rem);
    margin: 0;
    padding: 1.25rem 1.5rem;
    background: rgba(13, 13, 13, 0.92);
    color: var(--gp-text);
    border: 1px solid var(--gp-border-strong);
    border-radius: var(--gp-radius);
    box-shadow: var(--gp-shadow);
    backdrop-filter: blur(18px);
    text-align: center;
    line-height: 1.7;
    z-index: 99999;
}

.woocommerce-store-notice .woocommerce-store-notice__dismiss-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.75rem 1.15rem;
    border: 1px solid var(--gp-border-strong);
    border-radius: 9999px;
    background: #f5f5f5;
    color: #050505;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
}

.woocommerce-store-notice .woocommerce-store-notice__dismiss-link:hover,
.woocommerce-store-notice .woocommerce-store-notice__dismiss-link:focus {
    background: transparent;
    color: var(--gp-text);
}

@media (max-width: 640px) {
    .woocommerce-store-notice {
        bottom: 1rem;
        width: calc(100vw - 1.25rem);
        padding: 1rem;
    }

    .woocommerce-store-notice .woocommerce-store-notice__dismiss-link {
        width: 100%;
    }

    .woocommerce table.shop_table_responsive tr td::before,
    .woocommerce-page table.shop_table_responsive tr td::before {
        color: var(--gp-text-muted);
    }
}