.shop-page {
    background: #fff;
}


/* SHOP HERO */

.shop-hero {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.shop-hero .section-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.shop-hero h1 {
    margin: 0 0 15px;
    color: var(--dark);
    font-size: 44px;
    line-height: 1.15;
}

.shop-hero p {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* PRODUCTS */

.shop-products-section {
    padding: 70px 0 90px;
}


/* TOOLBAR */

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.shop-result-count {
    color: #777;
    font-size: 14px;
}

.shop-ordering select {
    min-width: 190px;
    padding: 10px 35px 10px 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #fff;
    color: var(--dark);
}


/* WOOCOMMERCE GRID */

.shop-products-section ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 28px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}


/* CARD */

.shop-products-section ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* IMAGE */

.gd-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: var(--light);
}

.gd-product-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: contain;
    transition: transform .35s ease;
}

.gd-product-card:hover .gd-product-image img {
    transform: scale(1.05);
}


/* SALE */

.gd-product-sale {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


/* INFO */

.gd-product-info {
    padding-top: 16px;
}

.gd-product-category {
    margin-bottom: 7px;
    color: #888;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gd-product-category a {
    color: inherit;
}

.gd-product-title {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
}

.gd-product-rating {
    margin-bottom: 7px;
    color: #d99a3d;
    font-size: 13px;
}

.gd-product-price {
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
}

.gd-product-price del {
    margin-right: 6px;
    color: #999;
    font-size: 13px;
    font-weight: 400;
}

.gd-product-price ins {
    text-decoration: none;
}


/* BUTTON */

.gd-product-action {
    margin-top: 13px;
}

.gd-product-action .button {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    background: transparent;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    transition: all .25s ease;
}

.gd-product-action .button:hover {
    background: var(--primary);
    color: #fff;
}


/* PAGINATION */

.woocommerce-pagination {
    margin-top: 60px;
    text-align: center;
}

.woocommerce-pagination ul {
    border: 0 !important;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px !important;
    border: 1px solid var(--border) !important;
    border-radius: 50%;
    color: var(--dark) !important;
    background: #fff !important;
}

.woocommerce-pagination .current {
    background: var(--primary) !important;
    color: #fff !important;
}


/* TABLET */

@media (max-width: 1000px) {

    .shop-products-section ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 20px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .shop-hero {
        padding: 60px 0;
    }

    .shop-hero h1 {
        font-size: 34px;
    }

    .shop-hero p {
        font-size: 14px;
    }

    .shop-products-section {
        padding: 50px 0 70px;
    }

    .shop-toolbar {
        align-items: flex-start;
        gap: 15px;
    }

    .shop-ordering select {
        min-width: 150px;
        font-size: 12px;
    }

    .shop-products-section ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .gd-product-title {
        font-size: 15px;
    }

    .gd-product-price {
        font-size: 15px;
    }

}


/* SMALL MOBILE */

@media (max-width: 400px) {

    .shop-toolbar {
        flex-direction: column;
    }

    .shop-ordering {
        width: 100%;
    }

    .shop-ordering select {
        width: 100%;
    }

}