/* ===========================================================
   WooCommerce Archive / Shop
=========================================================== */

/* Container */

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* ===========================================================
   Breadcrumb
=========================================================== */

.woocommerce-breadcrumb {
    margin: 35px 0 20px;
    color: #888;
    font-size: 14px;
}

.woocommerce-breadcrumb a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.woocommerce-breadcrumb a:hover {
    color: #b88b5a;
}

/* ===========================================================
   Archive Header
=========================================================== */

.wc-archive-header {
    margin-bottom: 45px;
    text-align: center;
}

.wc-archive-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* ===========================================================
   Toolbar
=========================================================== */

.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce-result-count {
    float: left;
    margin: 0;
    line-height: 48px;
    color: #666;
}

.woocommerce-ordering {
    float: right;
    margin: 0;
}

.woocommerce-ordering select {
    width: 250px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.products-grid {
    clear: both;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 50px;
}

/* ===========================================================
   Product Card
=========================================================== */

.products-grid .product {
    list-style: none;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s;
    position: relative;
}

.products-grid .product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* ===========================================================
   Image
=========================================================== */

.products-grid .woocommerce-LoopProduct-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.products-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: .4s;
}

.products-grid .product:hover img {
    transform: scale(1.08);
}

/* ===========================================================
   Sale Badge
=========================================================== */

.products-grid .onsale {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #d32f2f;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

/* ===========================================================
   Product Title
=========================================================== */

.products-grid .woocommerce-loop-product__title {
    padding: 25px 0 0;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    transition: .3s;
}

.products-grid .woocommerce-LoopProduct-link:hover .woocommerce-loop-product__title {
    color: #b88b5a;
}

/* ===========================================================
   Price
=========================================================== */

.products-grid .price {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
}

.products-grid .price del {
    color: #999;
    font-size: 17px;
}

.products-grid .price ins {
    text-decoration: none;
    color: #000;
}

/* ===========================================================
   Button
=========================================================== */

.products-grid .button {
    display: block;
    width: 100%;
    margin: 0 22px 22px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: var(--maroon) !important;
    padding: 1rem 1rem !important;
    color: #fff !important;
    text-decoration: none;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    border-radius: 0 0 8px 8px;
    transition: .3s;
}

.products-grid .button:hover {
    background: #b88b5a;
}
.added_to_cart.wc-forward {
    width: 100%;
    text-align: center;
    padding: 10px 0 7px;
    background: var(--ink);;
    color: #fff;
}
/* ===========================================================
   Pagination
=========================================================== */

.woocommerce-pagination {
    margin: 70px 0;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce-pagination li {
    list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
}

.woocommerce-pagination .current {
    background: #111;
    color: #fff;
}

/* ===========================================================
   Responsive
=========================================================== */

@media (max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:992px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .woocommerce-result-count{
        float:none;
        margin-bottom:15px;
    }

    .woocommerce-ordering{
        float:none;
    }

    .woocommerce-ordering select{
        width:100%;
    }

    .products-grid{
        margin-top:30px;
    }

}

@media (max-width:576px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .wc-archive-title{
        font-size:32px;
    }

}

.sec-archive-product {
    padding: 70px 0;
}