
/* ==========================================================================
    Shop Page START
========================================================================== */
.shop-hero {
    position: relative;
    height: 465px;
    background: #f5f5f51c;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #efefef;
}

.shop-heading {
    letter-spacing: 2px !important;
    line-height: 1.05;
    font-weight: 600;
    opacity: 1;
    transform: none;
}

.shop-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: -8px;
}

.shop-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3.5px;
    color: #4b7a25;
    margin-bottom: 22px;
}

.shop-heading {
    font-size: 78px;
    line-height: 1;
    font-weight: 700;
    color: #000;
    letter-spacing: -4px;
    margin-bottom: 26px;
}

.shop-text {
    font-size: 20px;
    line-height: 1.5;
    color: #7f7f7f;
    font-weight: 400;
    margin: 0;
}


.shop-filter-bar {
    background: #fff;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding: 20px 0;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-pill {
    height: 40px;
    padding: 0 22px;
    border-radius: 100px;
    border: 1px solid #dddddd;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-pill:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.filter-pill.active {
    background: #000;
    color: #fff;
    border-color: #000;
    padding-inline: 18px;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-count {
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
}

.custom-sort {
    width: 182px;
    height: 42px;
    border: 1px solid #dddddd;
    border-radius: 0;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 400;
    color: #111;
    padding-left: 18px;
    background-position: right 16px center;
}

.custom-sort:focus {
    border-color: #000;
}

@media(max-width: 991px) {

    .shop-heading {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .shop-text {
        font-size: 18px;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-right {
        width: 100%;
        justify-content: space-between;
    }

}

@media(max-width: 767px) {

    .shop-hero {
        height: auto;
        padding: 90px 0;
    }

    .shop-heading {
        font-size: 42px;
        line-height: 1.1;
    }

    .shop-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .shop-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .filter-left {
        gap: 10px;
    }

    .filter-pill {
        font-size: 14px;
        padding: 0 18px;
    }

    .filter-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .custom-sort {
        width: 100%;
    }

}

.shop-products-section {
    padding: 60px 0 40px;
    background: #fff;
}

.filter-sidebar {
    padding-right: 20px;
}

.filter-group {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 34px;
    margin-bottom: 34px;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 26px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list li a {
    display: block;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    padding: 11px 14px;
    transition: .25s ease;
}

.filter-list li.active a {
    background: #dcdcdc;
}

.color-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.black {
    background: #151515;
}

.white {
    background: #f4f4f4;
    border: 2px solid #d7d7d7;
}

.beige {
    background: #cec2b0;
}

.navy {
    background: #1f3f6d;
}

.sage {
    background: #98a295;
}

.charcoal {
    background: #444;
}

.product-card {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
    height: 494.2px;
}

.product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .45s ease, transform .6s ease;
}

.primary-image {
    opacity: 1;
    z-index: 2;
}

.secondary-image {
    opacity: 0;
    z-index: 1;
}

.product-card:hover .primary-image {
    opacity: 0;
    transform: scale(1.03);
}

.product-card:hover .secondary-image {
    opacity: 1;
    transform: scale(1.03);
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: #2e6905;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 7px 14px;
}

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-view-btn {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(20px);
    z-index: 20;
    height: 46px;
    border: none;
    background: #fff;
    color: #111;
    padding: 0 30px;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .7px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.quick-view-btn:hover {
    background: #000;
    color: #fff;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.product-content {
    padding-top: 18px;
}

.product-category {
    display: block;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #868686;
    margin-bottom: 8px;
}

.product-content a {
    text-decoration: none;
}

.product-name {
    font-size: 1.125rem;
    line-height: 1.45;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
}

.product-name:hover {
    color: #2e6905;
}

.product-price {
    font-size: 16px;
    font-weight: 400;
    color: #111;
}

.product-variants {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    margin-top: 14px;
}

.variant-color {
    border: 1px solid #eee !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: .25s ease;
}

.variant-color.black {
    background: #111;
}

.variant-color.white {
    background: #f4f4f4;
    border: 1px solid #d7d7d7;
}

.variant-color.beige {
    background: #c8bcaa;
}

.variant-color.olive {
    background: #8d9786;
}

.variant-color.active::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #111;
}

.variant-color:hover {
    transform: scale(1.08);
}

.quick-view-modal .modal-dialog {
    max-width: 1020px;
}

.quick-view-modal .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.modal-backdrop.show {
    opacity: 0.8 !important;
    background: rgba(0, 0, 0, 0.92) !important;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

.quick-view-modal {
    overflow-y: auto;
}

.quick-view-modal .modal-body {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    overflow-x: hidden;
}

.quick-view-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.quick-view-modal .modal-body::-webkit-scrollbar-thumb {
    background: #c7c7c7;
}

.quick-view-image {
    height: 100%;
    background: #f4f4f4;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-content {
    position: relative;
    padding: 48px 46px;
    height: 100%;
    background: #fff;
}

.quick-close {
    position: absolute;
    top: 28px;
    right: 30px;
    border: none;
    background: transparent;
    font-size: 42px;
    line-height: 1;
    color: #111;
}

.quick-category {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #8a8a8a;
    margin-bottom: 14px;
}

.quick-title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    margin-bottom: 18px;
}

.quick-price {
    font-size: 1.875rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 18px;
}

.quick-description {
    font-size: 16px;
    line-height: 1.7;
    color: #7d7d7d;
    margin-bottom: 26px;
}

.quick-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin-bottom: 28px;
}

.quick-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.quick-option-header label {
    font-size: 17px;
    font-weight: 500;
    color: #111;
}

.quick-option-header span {
    font-size: 16px;
    color: #8b8b8b;
}

.quick-option-header a {
    text-decoration: none;
    color: #4a7d28;
    font-size: 15px;
}

.quick-colors {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quick-color {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.quick-color.black {
    background: #111;
}

.quick-color.beige {
    background: #c9a968;
}

.quick-color.navy {
    background: #214276;
}

.quick-color.active::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #111;
}

.quick-sizes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-btn {
    width: 68px;
    height: 46px;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #111;
    font-size: 16px;
    transition: .25s ease;
}

.size-btn:hover,
.size-btn.active {
    border-color: #111;
}

.quantity-wrapper {
    margin-top: 26px;
}

.quantity-wrapper label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 16px;
}

.quantity-box {
    width: 160px;
    height: 48px;
    border: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.quantity-box button {
    border: none;
    background: transparent;
    font-size: 28px;
    color: #111;
}

.quantity-box input {
    width: 40px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.quick-buttons {
    margin-top: 32px;
}

.add-to-bag-btn {
    width: 100%;
    height: 56px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.view-details-btn {
    width: 100%;
    height: 56px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:991px) {

    .quick-view-image {
        height: 500px;
    }

}

@media(max-width:767px) {

    .quick-view-content {
        padding: 35px 24px;
    }

    .quick-title {
        font-size: 28px;
    }

    .size-btn {
        width: 58px;
    }

}

@media(max-width:1399px) {

    .product-image-wrapper {
        height: 640px;
    }

}

@media(max-width:1199px) {

    .product-image-wrapper {
        height: 560px;
    }

}

@media(max-width:991px) {

    .filter-sidebar {
        margin-bottom: 40px;
        padding-right: 0;
    }

}

@media(max-width:767px) {

    .product-image-wrapper {
        height: 500px;
    }

}

.custom-shop-container {
    width: 100%;
    max-width: 1920px;
    padding-inline: 148px !important;
    margin: auto;
}

@media(max-width:991px) {

    .custom-shop-container {
        padding-inline: 24px !important;
    }

}

@media(max-width:767px) {

    .custom-shop-container {
        padding-inline: 16px !important;
    }

}

.shop-page-btn {

    width: 48px;
    height: 48px;

    border: 1px solid #e5e5e5;

    background: #fff;

    margin: 0 5px;

    transition: .3s ease;

}

.shop-page-btn:hover,
.shop-page-btn.active {

    background: #111;
    color: #fff;
    border-color: #111;

}

.products-wrapper-parent {

    position: relative;

    min-height: 300px;

}

#shopLoader {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 30;

}

.shop-products-loading {

    opacity: .35;

    pointer-events: none;

    transition: .3s ease;
}

/* ==========================================================================
    Shop Page END
========================================================================== */


/* ==========================================================================
    Strip SECTION  END
========================================================================== */

/* ==========================================================================
    Support PAGE START
========================================================================== */

.support-section {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.support-heading {
    font-size: clamp(2rem, 5vw, 1.7rem);
    line-height: 1.2;
    font-weight: 400 !important;
    color: #000;
    margin-bottom: 12px;
}

.support-subheading {
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 0;
}

.support-card {
    background: #ffffff;
    text-align: center;
    padding: 20px 30px;
    height: 100%;
    transition: 0.4s;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.support-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e4e7de;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: 0.4s;
}

.support-icon i {
    color: #3d7b12;
    font-size: 28px;
    transition: 0.4s;
}

.support-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.support-card p {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 0;
    line-height: 1.6;
}

.support-card:hover .support-icon {
    background: #dce8d2;
}

.support-card:hover .support-icon i {
    transform: scale(1.1);
}

@media(max-width:991px) {

    .support-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .support-subheading {
        font-size: 1rem;
    }

    .support-card {
        padding: 40px 25px;
    }

    .support-card h4 {
        font-size: 1.5rem;
    }

    .support-card p {
        font-size: 1rem;
    }

}

.mini-cart-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .4);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

}

.mini-cart-overlay.active {

    opacity: 1;
    visibility: visible;

}

.mini-cart-drawer {

    position: fixed;

    top: 0;
    right: 0;

    width: 420px;
    max-width: 100%;

    height: 100vh;

    background: #fff;

    z-index: 9999;

    transform: translateX(100%);

    transition: .35s ease;

    display: flex;
    flex-direction: column;

}

.mini-cart-drawer.active {

    transform: translateX(0);

}

.mini-cart-header {

    padding: 24px;

    border-bottom: 1px solid #eee;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.mini-cart-close {

    border: none;
    background: none;

    font-size: 2rem;

    line-height: 1;

}

.mini-cart-body {

    flex: 1;

    overflow-y: auto;

    padding: 24px;

}

.mini-cart-footer {

    border-top: 1px solid #eee;

    padding: 24px;

}

.mini-cart-subtotal {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

}

.mini-cart-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 54px;

    border-radius: 999px;

    border: 1px solid #111;

    color: #111;

    text-decoration: none;

    margin-bottom: 12px;

    font-weight: 600;

}

.mini-cart-btn.dark {

    background: #111;
    color: #fff;

}

.mini-cart-item {

    display: flex;

    gap: 16px;

    margin-bottom: 24px;

}

.mini-cart-item img {

    width: 90px;
    height: 110px;

    object-fit: cover;

    border-radius: 14px;

}

.mini-cart-item-title {

    font-size: .95rem;
    font-weight: 600;

    margin-bottom: 8px;

}

.mini-cart-remove {

    border: none;
    background: none;

    padding: 0;

    color: red;

    font-size: .85rem;

}

.wishlist-count-badge {
    position: absolute;
    top: 2px;
    right: 38px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 0 5px;
    z-index: 10;
}

/* ==========================================================================
    Support PAGE  END
========================================================================== */


