/*==================================================
SHOP PAGE
==================================================*/

.jp-shop-page {

    padding: 80px 0;

    background: #f8f5ee;

}

.pd-container {

    max-width: 1200px;

    margin: auto;

}

/*=========================================
Shop Header
=========================================*/

.jp-shop-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 50px;

}

.jp-shop-heading {

    max-width: 700px;

}

.jp-shop-title {

    font-size: 42px;

    font-weight: 700;

    color: #222;

    margin: 15px 0;

}

.jp-shop-heading p {

    font-size: 16px;

    line-height: 1.8;

    color: #666;

}

/*=========================================
WooCommerce Grid
=========================================*/

ul.products {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin: 0;

    padding: 0;

    list-style: none;

}

/*=========================================
Product Card
=========================================*/

.jp-product-card {

    position: relative;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #ece8df;

    transition: .35s;

}

.jp-product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

/*=========================================
Sale Badge
=========================================*/

.jp-sale-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 10;

    background: #d62828;

    color: #fff;

    padding: 8px 15px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

}

/*=========================================
Image
=========================================*/

.jp-product-image {

    display: block;

    overflow: hidden;

}

.jp-product-image img {

    width: 100%;

    aspect-ratio: 1/1;

    object-fit: cover;

    transition: .4s;

}

.jp-product-card:hover .jp-product-image img {

    transform: scale(1.05);

}

/*=========================================
Content
=========================================*/

.jp-product-content {

    padding: 28px;

}

.jp-product-title {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;

}

.jp-product-title a {

    color: #222;

}

.jp-product-title a:hover {

    color: var(--pd-primary);

}

.jp-product-desc {

    font-size: 15px;

    color: #666;

    line-height: 1.8;

    margin-bottom: 18px;

}

/*=========================================
Rating
=========================================*/

.jp-rating {

    margin-bottom: 18px;

}

/*=========================================
Price
=========================================*/

.jp-product-price {

    margin-bottom: 22px;

}

.jp-product-price del {

    color: #888;

    margin-right: 10px;

    font-size: 16px;

}

.jp-product-price ins {

    color: var(--pd-primary);

    font-size: 28px;

    font-weight: 700;

    text-decoration: none;

}

/*=========================================
Buttons
=========================================*/

.jp-product-buttons {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.jp-product-buttons .button {

    width: 100%;

    text-align: center;

    border-radius: 50px;

    background: var(--pd-primary);

    color: #fff;

    padding: 15px;

    font-weight: 600;

    transition: .3s;

}

.jp-product-buttons .button:hover {

    background: var(--pd-primary-dark);

}

.jp-view-btn {

    display: block;

    text-align: center;

    border: 2px solid var(--pd-primary);

    border-radius: 50px;

    padding: 14px;

    color: var(--pd-primary);

    font-weight: 600;

    transition: .3s;

}

.jp-view-btn:hover {

    background: var(--pd-primary);

    color: #fff;

}

/*==================================================
SHOP RESPONSIVE
==================================================*/

@media(max-width:991px) {

    ul.products {

        grid-template-columns: repeat(2, 1fr);

    }

    .jp-shop-header {

        flex-direction: column;

        align-items: flex-start;

    }

}

@media(max-width:767px) {

    .jp-shop-page {

        padding: 60px 0;

    }

    ul.products {

        grid-template-columns: 1fr;

    }

    .jp-shop-title {

        font-size: 32px;

    }

}

/*==================================================
SINGLE PRODUCT PAGE
==================================================*/

.single-product {

    background: #f8f5ee;


}

.single-product .product {

    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 50px;

}


/*==================================================
PRODUCT GALLERY
==================================================*/

.single-product .woocommerce-product-gallery {

    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);

    background: #fff;
    padding: 20px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.single-product .woocommerce-product-gallery img {

    width: 100%;

    height: auto;

    border-radius: 15px;

}


/*==================================================
PRODUCT SUMMARY
==================================================*/

.single-product .summary {

    flex: 0 0 calc(50% - 25px);

    max-width: calc(50% - 25px);

}


/*==================================================
TITLE
==================================================*/

.single-product .product_title {

    font-size: 48px;

    font-weight: 700;

    line-height: 1.15;

    color: #222;

    margin-bottom: 30px;

}


/*==================================================
DEFAULT PRICE
Hidden because custom price card is used
==================================================*/

.jp-product-summary .price {

    display: none;

}


/*==================================================
PRICE CARD
==================================================*/

.jp-price-card {

    background: #fff;

    border: 1px solid #e8e2d6;

    border-radius: 20px;

    padding: 28px;

    margin-bottom: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.jp-price-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

}

.jp-price-label {

    font-size: 15px;

    color: #777;

}

.jp-price-value {

    font-size: 18px;

    font-weight: 700;

    color: #222;

}

.jp-offer {

    color: #2f8b1f;

    font-size: 20px;

}

.jp-save {

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px dashed #ddd;

    color: #d62828;

    font-weight: 600;

}


/*==================================================
SHORT DESCRIPTION
==================================================*/

.single-product .woocommerce-product-details__short-description {

    margin-bottom: 30px;

}

.single-product .woocommerce-product-details__short-description p {

    margin-bottom: 12px;

    line-height: 1.8;

}


/*==================================================
ADD TO CART
==================================================*/

.single-product form.cart {

    display: flex;

    align-items: center;

    gap: 15px;

    margin: 35px 0 25px;

}

.single-product .quantity input {

    width: 75px;

    height: 56px;

    border-radius: 12px;

    text-align: center;

    border: 1px solid #ddd;

    font-weight: 600;

}

.single-product .single_add_to_cart_button {

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 56px;

    padding: 0 30px;

    border: none;

    border-radius: 50px !important;

    background: #3f7d20 !important;

    color: #fff !important;

    font-size: 16px;

    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    text-align: center;

    transition: all .3s ease;

}

.single-product .single_add_to_cart_button:hover {

    background: #2f6518 !important;

}



/*==================================================
BUY NOW BUTTON
==================================================*/

.jp-buy-now-btn {

    display: flex;

    justify-content: center;

    align-items: center;

    width: 100%;

    height: 56px;


    border-radius: 50px;

    background: #111;

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s;

}

.jp-buy-now-btn:hover {

    background: #000;

    color: #fff;

}


/*==================================================
TRUST BOX
==================================================*/

.jp-trust-box {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;

}

.jp-trust-box div {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 12px;

    padding: 14px 16px;

    font-size: 15px;

    font-weight: 500;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .single-product .product {

        display: block;

    }

    .single-product .woocommerce-product-gallery,

    .single-product .summary {

        width: 100%;

        max-width: 100%;

    }

    .single-product .woocommerce-product-gallery {

        margin-bottom: 40px;

    }

    .single-product .product_title {

        font-size: 34px;

    }

    .single-product form.cart {

        flex-direction: column;

        align-items: stretch;

    }

    .single-product .quantity input {

        width: 100%;

    }

}

/*==================================================
FEATURE LIST
==================================================*/

.jp-product-features {

    display: grid;

    gap: 12px;

    margin: 30px 0;

}

.jp-product-features div {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 12px;

    padding: 14px 18px;

    font-size: 15px;

    font-weight: 500;

}

.jp-trust-box {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 25px;

}

.jp-trust-box div {

    background: #fff;

    border-radius: 12px;

    padding: 15px;

    border: 1px solid #eee;

    text-align: center;

}

/*==================================================
MY ACCOUNT
==================================================*/

.woocommerce-account {

    background: #f8f5ee;

}

.woocommerce-account .woocommerce {

    max-width: 1200px;

    margin: 60px auto;

    padding: 0 15px;

}

.woocommerce-account .woocommerce::after {

    content: "";

    display: block;

    clear: both;

}


/*==========================
LEFT MENU
==========================*/

.woocommerce-account .woocommerce-MyAccount-navigation {

    width: 28%;

    float: left;

}

.woocommerce-account .woocommerce-MyAccount-navigation ul {

    list-style: none;

    margin: 0;

    padding: 20px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.woocommerce-account .woocommerce-MyAccount-navigation li {

    margin-bottom: 10px;

}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {

    margin-bottom: 0;

}

.woocommerce-account .woocommerce-MyAccount-navigation a {

    display: block;

    padding: 14px 18px;

    border-radius: 12px;

    text-decoration: none;

    color: #333;

    font-weight: 500;

    transition: .3s;

}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {

    background: #edf7e8;

    color: #3f7d20;

}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {

    background: #3f7d20;

    color: #fff;

}


/*==========================
RIGHT CONTENT
==========================*/

.woocommerce-account .woocommerce-MyAccount-content {

    width: 68%;

    float: right;

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}


/*==========================
TABLES
==========================*/

.woocommerce-account table {

    width: 100%;

    border-collapse: collapse;

}

.woocommerce-account table th {

    background: #f3f7ef;

    padding: 15px;

}

.woocommerce-account table td {

    padding: 15px;

    border-bottom: 1px solid #eee;

}


/*==========================
BUTTONS
==========================*/

.woocommerce-account .button,

.woocommerce-account button,

.woocommerce-account input[type="submit"] {

    background: #3f7d20 !important;

    color: #fff !important;

    border: none;

    border-radius: 50px;

    padding: 12px 28px;

    font-weight: 600;

}

.woocommerce-account .button:hover {

    background: #2f6518 !important;

}


/*==========================
FORMS
==========================*/

.woocommerce-account input,

.woocommerce-account select,

.woocommerce-account textarea {

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 12px 15px;

}


/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px) {

    .woocommerce-account .woocommerce-MyAccount-navigation {

        width: 100%;

        float: none;

        margin-bottom: 30px;

    }

    .woocommerce-account .woocommerce-MyAccount-content {

        width: 100%;

        float: none;

    }

}

/*==================================================
MY ACCOUNT LOGIN
==================================================*/

.woocommerce-account .woocommerce {

    max-width: 1200px;

    margin: 60px auto;

    padding: 0 15px;

}

.woocommerce-form-login {

    max-width: 520px;

    background: #fff;

    margin: 0 auto;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.woocommerce-form-login h2 {

    margin-bottom: 30px;

}


/* Labels */

.woocommerce-form-row label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

}


/* Inputs */

.woocommerce-form-login input[type=text],

.woocommerce-form-login input[type=password],

.woocommerce-form-login input[type=email] {

    width: 100%;

    height: 54px;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 0 16px;

    background: #fff;

    margin-bottom: 20px;

}


/* Remember Me */

.woocommerce-form-login .woocommerce-form__label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

}

.woocommerce-form-login .woocommerce-form__label input {

    width: 18px;

    height: 18px;

}


/* Button */

.woocommerce-form-login button {

    width: 100%;

    height: 56px;

    border: none;

    border-radius: 50px;

    background: #3f7d20;

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

}

.woocommerce-form-login button:hover {

    background: #2f6518;

}


/* Lost Password */

.woocommerce-LostPassword {

    margin-top: 20px;

    text-align: center;

}

.woocommerce-LostPassword a {

    color: #3f7d20;

    text-decoration: none;

}

/*==================================================
MY ACCOUNT - ADDRESS FORM
==================================================*/

.woocommerce-account .woocommerce-address-fields {

    margin-top: 30px;

}

.woocommerce-account .woocommerce-address-fields__field-wrapper {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}

/* Two Column */

.woocommerce-account .form-row-first,
.woocommerce-account .form-row-last {

    width: calc(50% - 10px);

    float: none !important;

    clear: none !important;

}

/* Full Width */

.woocommerce-account .form-row-wide {

    width: 100%;

    float: none !important;

    clear: both;

}

/* Reset WooCommerce floats */

.woocommerce-account .form-row {

    margin: 0 0 20px;

}

/* Labels */

.woocommerce-account .form-row label {

    display: block;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 8px;

    color: #333;

}

/* Inputs */

.woocommerce-account .form-row input,
.woocommerce-account .form-row select,
.woocommerce-account .form-row textarea {

    width: 100% !important;

    height: 52px;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 0 15px;

    background: #fff;

    box-shadow: none;

}

.woocommerce-account textarea {

    height: 120px;

    padding-top: 15px;

    resize: vertical;

}

/* Select2 */

.woocommerce-account .select2-container {

    width: 100% !important;

}

.woocommerce-account .select2-selection {

    height: 52px !important;

    border-radius: 12px !important;

    border: 1px solid #ddd !important;

}

.woocommerce-account .select2-selection__rendered {

    line-height: 52px !important;

}

.woocommerce-account .select2-selection__arrow {

    height: 52px !important;

}

/* Save Button */

.woocommerce-account button[name="save_address"] {

    min-width: 220px;

    height: 54px;

    border: none;

    border-radius: 50px;

    background: #3f7d20 !important;

    color: #fff !important;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

}

.woocommerce-account button[name="save_address"]:hover {

    background: #2f6518 !important;

}

/* Mobile */

@media(max-width:768px) {

    .woocommerce-account .form-row-first,
    .woocommerce-account .form-row-last {

        width: 100%;

    }

}

/*==================================================
MY ACCOUNT - ADDRESS LIST
==================================================*/

.woocommerce-account .woocommerce-Addresses {

    display: flex;

    gap: 30px;

    margin-top: 30px;

    flex-wrap: wrap;

}

.woocommerce-account .woocommerce-Address {

    flex: 1;

    min-width: 320px;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.woocommerce-account .woocommerce-Address h3 {

    font-size: 30px;

    margin-bottom: 20px;

    color: #222;

}

.woocommerce-account .woocommerce-Address address {

    font-style: normal;

    line-height: 1.8;

    color: #555;

}

.woocommerce-account .woocommerce-Address a {

    display: inline-block;

    margin-bottom: 20px;

    padding: 10px 20px;

    border-radius: 50px;

    background: #3f7d20;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

}

.woocommerce-account .woocommerce-Address a:hover {

    background: #2f6518;

}

/* Mobile */

@media(max-width:768px) {

    .woocommerce-account .woocommerce-Addresses {

        display: block;

    }

    .woocommerce-account .woocommerce-Address {

        margin-bottom: 25px;

    }

}

/*==================================================
PASSWORD VISIBILITY BUTTON FIX
==================================================*/

.woocommerce .password-input {
    position: relative;
    width: 100%;
}

.woocommerce .password-input input {
    width: 100%;
    padding-right: 50px;
}

/* Reset Button */

.woocommerce button.show-password-input {

    position: absolute;

    top: 50%;

    right: 12px;

    transform: translateY(-50%);

    width: 34px;

    height: 34px;

    min-width: 34px;

    padding: 0;

    margin: 0;

    border: none;

    border-radius: 50%;

    background: transparent !important;

    color: #666 !important;

    box-shadow: none !important;

    cursor: pointer;

    z-index: 10;

}

/* Remove theme button styling */

.woocommerce button.show-password-input:hover {

    background: #edf7e8 !important;

    color: #3f7d20 !important;

}

/* Eye Icon */

.woocommerce button.show-password-input::after {

    content: "👁";

    font-size: 18px;

    line-height: 34px;

    display: block;

    text-align: center;

}

/*==================================================
THANK YOU PAGE
==================================================*/

.woocommerce-order {

    max-width: 1100px;

    margin: 60px auto;

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

}


/* Success Message */

.woocommerce-order p:first-child {

    background: #edf7e8;

    border-left: 5px solid #3f7d20;

    padding: 18px 20px;

    border-radius: 12px;

    font-size: 18px;

    font-weight: 600;

    color: #2f6518;

}


/*==================================================
ORDER OVERVIEW
==================================================*/

.woocommerce-order-overview {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    list-style: none;

    margin: 35px 0;

    padding: 0;

}

.woocommerce-order-overview li {

    background: #f8f5ee;

    padding: 18px;

    border-radius: 14px;

    text-align: center;

    border: 1px solid #ece6db;

}

.woocommerce-order-overview strong {

    display: block;

    margin-top: 10px;

    font-size: 18px;

    color: #222;

}


/*==================================================
HEADINGS
==================================================*/

.woocommerce-order h2,

.woocommerce-order h3 {

    font-size: 34px;

    margin: 40px 0 20px;

    color: #222;

}


/*==================================================
ORDER TABLE
==================================================*/

.woocommerce-table {

    width: 100%;

    border-collapse: collapse;

    margin-bottom: 35px;

}

.woocommerce-table th {

    background: #3f7d20;

    color: #fff;

    padding: 16px;

    text-align: left;

}

.woocommerce-table td {

    padding: 16px;

    border-bottom: 1px solid #ececec;

}

.woocommerce-table tfoot th {

    background: #f5f5f5;

    color: #222;

}

.woocommerce-table tfoot td {

    font-weight: 700;

}


/*==================================================
ADDRESS
==================================================*/

.woocommerce-customer-details {

    margin-top: 40px;

}

.woocommerce-customer-details address {

    background: #f8f5ee;

    border: 1px solid #ece6db;

    border-radius: 16px;

    padding: 25px;

    font-style: normal;

    line-height: 1.9;

}


/*==================================================
PAYMENT NOTE
==================================================*/

.woocommerce-order>p:nth-of-type(2) {

    background: #fff7e6;

    border-left: 5px solid #f0ad4e;

    padding: 16px 20px;

    border-radius: 10px;

    margin-top: 25px;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .woocommerce-order {

        padding: 25px;

    }

    .woocommerce-order-overview {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .woocommerce-order-overview {

        grid-template-columns: 1fr;

    }

    .woocommerce-order h2 {

        font-size: 28px;

    }

}

/*==================================================
THANK YOU / MY ACCOUNT ADDRESS FIX
==================================================*/

.woocommerce-customer-details {

    margin-top: 40px;

}

.woocommerce-customer-details .woocommerce-columns {

    display: flex;

    gap: 30px;

    flex-wrap: wrap;

}

.woocommerce-customer-details .woocommerce-column {

    flex: 1;

    min-width: 320px;

}

.woocommerce-customer-details address {

    display: block;

    width: 100% !important;

    min-width: 100%;

    max-width: none;

    background: #f8f5ee;

    border: 1px solid #e8e2d6;

    border-radius: 16px;

    padding: 25px;

    font-style: normal;

    line-height: 1.9;

    white-space: normal;

    word-break: normal;

    overflow-wrap: break-word;

    box-sizing: border-box;

}

.woocommerce-customer-details h2 {

    font-size: 30px;

    margin-bottom: 20px;

}

/*==================================================
SHOP PRODUCT CARD
==================================================*/

ul.products {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 30px;

    margin: 0;

    padding: 0;

}

ul.products li.product {

    list-style: none;

}

.jp-product-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

    transition: .35s;

    display: flex;

    flex-direction: column;

    height: 100%;

}

.jp-product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);

}


/* IMAGE */

.jp-product-image {

    display: block;

    overflow: hidden;

}

.jp-product-image img {

    width: 100%;

    aspect-ratio: 1/1;

    object-fit: cover;

    transition: .4s;

}

.jp-product-card:hover img {

    transform: scale(1.05);

}


/* CONTENT */

.jp-product-content {

    padding: 25px;

    display: flex;

    flex-direction: column;

    flex: 1;

}

.jp-product-title {

    font-size: 28px;

    margin: 0 0 15px;

    line-height: 1.3;

}

.jp-product-title a {

    color: #222;

    text-decoration: none;

}

.jp-product-description {

    color: #666;

    line-height: 1.7;

    margin-bottom: 20px;

    flex: 1;

}


/* PRICE */

.jp-product-price {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 12px;

}

.jp-sale {

    color: #2f8b1f;

    font-size: 30px;

    font-weight: 700;

}

.jp-mrp {

    color: #999;

    text-decoration: line-through;

    font-size: 18px;

}

.jp-save {

    color: #d62828;

    font-weight: 600;

    margin-bottom: 20px;

}


/* BUTTON */

.jp-view-btn {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 54px;

    border-radius: 50px;

    background: #3f7d20;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.jp-view-btn:hover {

    background: #2f6518;

    color: #fff;

}