/**
 * Shop V2 Styles - Equipment Solutions
 * Based on PaulB Wholesale Website Patterns
 * TailwindCSS-inspired utility classes
 * Version: 2.0.0
 */

/* ================================================
   CSS VARIABLES - Equipment Solutions Brand
   ================================================ */
:root {
    --es-primary: #00A151;
    --es-primary-dark: #026227;
    --es-primary-light: #cfebcd;
    --es-text-dark: #111827;
    --es-text-gray: #6b7280;
    --es-text-light: #9ca3af;
    --es-bg-white: #ffffff;
    --es-bg-light: #fafafa;
    --es-bg-gray: #f3f4f6;
    --es-border: #e5e7eb;
    --es-border-dark: #d1d5db;
    --es-shadow-sm: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
    --es-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --es-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --es-ring-color: rgba(0, 161, 81, 0.5);
}

/* ================================================
   BASE RESET FOR SHOP V2 COMPONENTS
   ================================================ */
.shop-v2-wrapper,
.shop-v2-container,
.shop-v2-category-grid,
.shop-v2-product-grid,
.shop-v2-category-card,
.shop-v2-product-card {
    box-sizing: border-box;
}

.shop-v2-wrapper *,
.shop-v2-wrapper *::before,
.shop-v2-wrapper *::after {
    box-sizing: inherit;
}

/* ================================================
   LAYOUT & CONTAINERS
   ================================================ */
.shop-v2-wrapper {
    width: 100%;
    padding: 0 1rem;
}

.shop-v2-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Full width wrapper option */
.shop-v2-wrapper.full-width .shop-v2-container {
    max-width: none;
}

/* ================================================
   PAGE HEADER
   ================================================ */
.shop-v2-page-header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .shop-v2-page-header {
        flex-direction: row;
        margin-top: 2rem;
    }
}

.shop-v2-page-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--es-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .shop-v2-page-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .shop-v2-page-title {
        font-size: 3.75rem;
    }
}

/* ================================================
   BREADCRUMB NAVIGATION
   ================================================ */
.shop-v2-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--es-text-gray);
    list-style: none;
    margin: 0;
}

.shop-v2-breadcrumb a {
    color: var(--es-text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.shop-v2-breadcrumb a:hover {
    color: var(--es-primary);
    text-decoration: underline;
}

.shop-v2-breadcrumb .separator {
    color: var(--es-text-light);
    font-size: 0.75rem;
}

.shop-v2-breadcrumb .current {
    color: var(--es-text-dark);
    font-weight: 500;
}

/* ================================================
   CATEGORY GRID
   ================================================ */
.shop-v2-category-grid {
    display: grid;
    gap: 0.5rem;
    padding: 1rem 0 3rem;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin: 0;
}

@media (min-width: 640px) {
    .shop-v2-category-grid {
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .shop-v2-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .shop-v2-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .shop-v2-category-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ================================================
   CATEGORY CARD
   ================================================ */
.shop-v2-category-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem;
    background-color: var(--es-bg-white);
    border: 1px solid var(--es-border);
    border-radius: 0.125rem;
    box-shadow: var(--es-shadow-sm);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 640px) {
    .shop-v2-category-card {
        padding: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .shop-v2-category-card {
        padding: 1rem;
    }
}

.shop-v2-category-card:hover {
    background-color: var(--es-bg-light);
    box-shadow: var(--es-shadow-md);
    transform: translateY(-2px);
}

.shop-v2-category-card a {
    text-decoration: none;
    color: inherit;
}

.shop-v2-category-card .category-image-link {
    display: block;
    margin: 0 auto 0.75rem;
    overflow: hidden;
    border-radius: 0.125rem;
}

.shop-v2-category-card .category-image {
    width: 100%;
    height: auto;
    max-width: 360px;
    aspect-ratio: 1;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.2s ease;
}

.shop-v2-category-card:hover .category-image {
    transform: scale(1.02);
    box-shadow: var(--es-shadow-sm);
}

.shop-v2-category-card .category-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shop-v2-category-card .category-name {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
    color: var(--es-text-dark);
}

@media (min-width: 640px) {
    .shop-v2-category-card .category-name {
        font-size: 1.125rem;
    }
}

.shop-v2-category-card .category-name a:hover {
    color: var(--es-primary);
}

.shop-v2-category-card .category-count {
    font-size: 0.875rem;
    color: var(--es-text-gray);
    text-align: center;
    margin-top: 0.25rem;
}

/* ================================================
   PRODUCT GRID
   ================================================ */
.shop-v2-product-grid {
    display: grid;
    gap: 0.5rem;
    padding: 1rem 0 3rem;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin: 0;
}

@media (min-width: 640px) {
    .shop-v2-product-grid {
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .shop-v2-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .shop-v2-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* List item wrapper */
.shop-v2-product-item {
    display: flex;
    flex-direction: column;
}

/* ================================================
   PRODUCT CARD
   ================================================ */
.shop-v2-product-card {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    padding: 0.5rem;
    background-color: var(--es-bg-white);
    border-radius: 0.125rem;
    box-shadow: var(--es-shadow-sm);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media (min-width: 640px) {
    .shop-v2-product-card {
        padding: 1rem;
    }
}

.shop-v2-product-card:hover {
    background-color: var(--es-bg-light);
    box-shadow: var(--es-shadow-md);
    transform: translateY(-2px);
}

.shop-v2-product-card a {
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.shop-v2-product-card .product-image-link {
    display: block;
    margin: 0 auto 0.75rem;
    overflow: hidden;
    border-radius: 0.125rem;
}

.shop-v2-product-card .product-image {
    width: 100%;
    height: auto;
    max-width: 360px;
    aspect-ratio: 1;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.2s ease;
}

.shop-v2-product-card:hover .product-image {
    transform: scale(1.02);
    box-shadow: var(--es-shadow-sm);
}

/* Product Info Container */
.shop-v2-product-card .product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Product Brand */
.shop-v2-product-card .product-brand {
    margin: 0 auto;
    font-size: 1rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    color: var(--es-text-dark);
    transition: color 0.2s;
}

@media (min-width: 640px) {
    .shop-v2-product-card .product-brand {
        font-size: 1.125rem;
        height: 3rem;
    }
}

.shop-v2-product-card .product-brand:hover {
    color: var(--es-primary);
}

/* Product Name */
.shop-v2-product-card .product-name {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    text-align: center;
    line-height: 1.4;
    color: var(--es-text-dark);
}

@media (min-width: 640px) {
    .shop-v2-product-card .product-name {
        font-size: 1rem;
    }
}

.shop-v2-product-card .product-name a {
    transition: color 0.2s;
}

.shop-v2-product-card .product-name a:hover {
    color: var(--es-primary);
}

/* Price Section */
.shop-v2-product-card .price-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 0.5rem;
    margin-top: auto;
}

.shop-v2-product-card .price-box {
    color: var(--es-text-dark);
    white-space: nowrap;
}

.shop-v2-product-card .price-current {
    font-weight: 600;
    font-size: 1.125em;
    line-height: 1.75em;
    color: var(--es-text-dark);
}

.shop-v2-product-card .price-unit {
    font-size: 0.875rem;
    letter-spacing: -0.05em;
    color: var(--es-text-gray);
}

.shop-v2-product-card .price-regular {
    color: var(--es-text-gray);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: line-through;
    display: block;
    margin-top: 0.125rem;
}

.shop-v2-product-card .product-sku {
    padding-top: 0.25rem;
    color: var(--es-text-gray);
    font-size: 0.75rem;
    text-align: right;
}

@media (min-width: 640px) {
    .shop-v2-product-card .product-sku {
        font-size: 0.875rem;
    }
}

/* Get Best Price Button */
.esp-price-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--es-primary) 0%, var(--es-primary-dark) 100%);
    border-radius: 0.375rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    white-space: nowrap;
}

.esp-price-button:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--es-primary-dark) 0%, var(--es-primary) 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.esp-price-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.esp-price-button svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .esp-price-button {
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
    }

    .esp-price-button svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

/* Product Actions */
.shop-v2-product-card .product-actions {
    padding-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

/* ================================================
   BUTTONS
   ================================================ */
.shop-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .shop-v2-btn {
        padding: 0.5rem 1rem;
    }
}

/* Primary Button */
.shop-v2-btn-primary {
    background-color: var(--es-primary);
    color: #fff;
    box-shadow: var(--es-shadow-md);
}

.shop-v2-btn-primary:hover {
    background-color: var(--es-primary-dark);
    color: #fff;
    box-shadow: var(--es-shadow-lg);
    transform: translateY(-1px);
}

.shop-v2-btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--es-shadow-sm);
}

/* Secondary Button */
.shop-v2-btn-secondary {
    background-color: transparent;
    border: 2px solid var(--es-primary-light);
    color: var(--es-text-dark);
}

.shop-v2-btn-secondary:hover {
    border-color: var(--es-primary);
    color: var(--es-primary);
    background-color: rgba(0, 161, 81, 0.05);
}

/* Outline Button */
.shop-v2-btn-outline {
    background-color: transparent;
    border: 1px solid var(--es-border);
    color: var(--es-text-dark);
}

.shop-v2-btn-outline:hover {
    border-color: var(--es-border-dark);
    background-color: var(--es-bg-light);
}

/* Icon in Button */
.shop-v2-btn svg {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

/* Icon-only Button */
.shop-v2-btn-icon {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border-radius: 50%;
    background-color: var(--es-bg-gray);
    color: var(--es-text-gray);
    border: none;
}

.shop-v2-btn-icon:hover {
    background-color: var(--es-bg-light);
    color: var(--es-primary);
}

.shop-v2-btn-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
}

/* Full Width Button */
.shop-v2-btn-block {
    width: 100%;
}

/* ================================================
   TOOLBAR / SORTING
   ================================================ */
.shop-v2-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    border-bottom: 1px solid var(--es-border);
    margin-bottom: 1rem;
}

.shop-v2-toolbar .result-count {
    font-size: 0.875rem;
    color: var(--es-text-gray);
}

.shop-v2-toolbar .sort-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.shop-v2-toolbar select,
.shop-v2-toolbar .form-select {
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    border: 1px solid var(--es-border);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    background-color: var(--es-bg-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.shop-v2-toolbar select:focus,
.shop-v2-toolbar .form-select:focus {
    outline: 2px solid var(--es-ring-color);
    outline-offset: 2px;
    border-color: var(--es-primary);
}

/* Sort Direction Button */
.shop-v2-toolbar .sort-direction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--es-bg-white);
    border: 1px solid var(--es-border);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.shop-v2-toolbar .sort-direction:hover {
    background-color: var(--es-bg-light);
    border-color: var(--es-primary);
    color: var(--es-primary);
}

.shop-v2-toolbar .sort-direction svg {
    width: 1rem;
    height: 1rem;
}

/* ================================================
   STOCK STATUS
   ================================================ */
.shop-v2-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    font-weight: 500;
    text-transform: capitalize;
}

.shop-v2-stock svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.shop-v2-stock.in-stock {
    background-color: var(--es-primary);
    color: #fff;
}

.shop-v2-stock.out-of-stock {
    background-color: #dc2626;
    color: #fff;
}

.shop-v2-stock.on-backorder {
    background-color: #f59e0b;
    color: #fff;
}

.shop-v2-stock.low-stock {
    background-color: #fb923c;
    color: #fff;
}

/* ================================================
   PAGINATION
   ================================================ */
.shop-v2-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    padding: 2rem 0;
}

.shop-v2-pagination a,
.shop-v2-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid var(--es-border);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: var(--es-text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: var(--es-bg-white);
}

.shop-v2-pagination a:hover {
    background-color: var(--es-bg-light);
    border-color: var(--es-primary);
    color: var(--es-primary);
}

.shop-v2-pagination .current,
.shop-v2-pagination a.current {
    background-color: var(--es-primary);
    border-color: var(--es-primary);
    color: #fff;
    font-weight: 600;
}

.shop-v2-pagination .current:hover,
.shop-v2-pagination a.current:hover {
    background-color: var(--es-primary-dark);
    border-color: var(--es-primary-dark);
    color: #fff;
}

.shop-v2-pagination .dots,
.shop-v2-pagination .ellipsis {
    border-color: transparent;
    background-color: transparent;
    cursor: default;
}

.shop-v2-pagination .prev,
.shop-v2-pagination .next {
    min-width: auto;
}

/* ================================================
   FEATURED/PROMOTIONAL SECTION
   ================================================ */
.shop-v2-featured {
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--es-border);
}

.shop-v2-featured .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--es-text-dark);
}

.shop-v2-featured-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .shop-v2-featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================================
   SIDEBAR / FILTERS (Optional)
   ================================================ */
.shop-v2-with-sidebar {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .shop-v2-with-sidebar {
        grid-template-columns: 280px 1fr;
    }
}

.shop-v2-sidebar {
    background-color: var(--es-bg-white);
    border-radius: 0.25rem;
    padding: 1rem;
    box-shadow: var(--es-shadow-sm);
}

.shop-v2-sidebar .filter-section {
    margin-bottom: 1.5rem;
}

.shop-v2-sidebar .filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--es-text-dark);
}

.shop-v2-sidebar .filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-v2-sidebar .filter-item {
    padding: 0.375rem 0;
}

.shop-v2-sidebar .filter-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--es-text-dark);
}

.shop-v2-sidebar .filter-item input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--es-primary);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-v2-category-card,
.shop-v2-product-item {
    animation: fadeIn 0.3s ease forwards;
}

.shop-v2-category-grid .shop-v2-category-card:nth-child(1),
.shop-v2-product-grid .shop-v2-product-item:nth-child(1) { animation-delay: 0.05s; }
.shop-v2-category-grid .shop-v2-category-card:nth-child(2),
.shop-v2-product-grid .shop-v2-product-item:nth-child(2) { animation-delay: 0.1s; }
.shop-v2-category-grid .shop-v2-category-card:nth-child(3),
.shop-v2-product-grid .shop-v2-product-item:nth-child(3) { animation-delay: 0.15s; }
.shop-v2-category-grid .shop-v2-category-card:nth-child(4),
.shop-v2-product-grid .shop-v2-product-item:nth-child(4) { animation-delay: 0.2s; }
.shop-v2-category-grid .shop-v2-category-card:nth-child(5),
.shop-v2-product-grid .shop-v2-product-item:nth-child(5) { animation-delay: 0.25s; }

/* ================================================
   LOADING STATES
   ================================================ */
.shop-v2-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.shop-v2-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid var(--es-border);
    border-top-color: var(--es-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   EMPTY STATE
   ================================================ */
.shop-v2-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--es-text-gray);
}

.shop-v2-empty svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.shop-v2-empty h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--es-text-dark);
}

.shop-v2-empty p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

/* ================================================
   HIDE PRICES ON BROWSE PAGES
   Only show prices on actual product pages, not in browse/category navigation
   ================================================ */
.esp-browse-body .shop-v2-product-card .price-section .product-price {
    display: none !important;
}

/* ================================================
   OVERRIDE WOOCOMMERCE DEFAULTS
   ================================================ */

/* Hide default WooCommerce product loop when V2 is active */
.shop-v2-active .woocommerce-products-header .page-description {
    display: none !important;
}

/* Make sure WooCommerce messages look good */
.shop-v2-wrapper .woocommerce-message,
.shop-v2-wrapper .woocommerce-info,
.shop-v2-wrapper .woocommerce-error {
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
    .shop-v2-category-card,
    .shop-v2-product-card {
        border: 1px solid var(--es-border);
        box-shadow: none;
    }

    .shop-v2-btn {
        display: none;
    }

    .shop-v2-category-grid,
    .shop-v2-product-grid {
        gap: 0.5rem;
    }
}
