.delfee-product-image {
    position: relative;
    overflow: hidden;
}

.delfee-product-slider {
    position: relative;
    width: 100%;
}

/* .delfee-product-slide {
    display: none;
    width: 100%;
} */


.delfee-product-slide {
    display: none;
    width: 100%;
    height: 100%;

    animation: delfeeSlideIn 0.35s ease;
}

.delfee-product-slide.is-active {
    display: block;
}

@keyframes delfeeSlideIn {

    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


.delfee-product-slide.is-active {
    display: block;
}

.delfee-product-image-link {
    display: block;
}

.delfee-product-gallery-image {
    display: block;
    width: 100%;
    height: auto;
}


/* Slider arrows */

.delfee-slider-prev,
.delfee-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #111;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: opacity 0.25s ease;
}

.delfee-slider-prev {
    left: 12px;
}

.delfee-slider-next {
    right: 12px;
}

.delfee-product-image:hover .delfee-slider-prev,
.delfee-product-image:hover .delfee-slider-next {
    opacity: 1;
}


/* Dots */

.delfee-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.delfee-slider-dot {
    width: 7px;
    height: 7px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #fff;

    opacity: 0.5;

    cursor: pointer;
}

.delfee-slider-dot.is-active {
    opacity: 1;
}



/* 
.delfee-wishlist-button {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.delfee-wishlist-button:hover {
    transform: scale(1.08);
} */

.delfee-wishlist-button .wishlist-icon {
    font-size: 21px;
    line-height: 1;
}

.delfee-wishlist-button.is-active {
    background: #ffffff;
    color: red;
    font-family: system-ui !important;
}
.delfee-wishlist-remove:hover {
     background: #ffffff !important;
    color: red;
}


.delfee-wishlist-button.is-loading {
    pointer-events: none;
    opacity: 0.6;
}







/* =========================================================
   DELFEE PRODUCT CARD
========================================================= */

.delfee-product-card {
    position: relative;
    width: 100%;
    min-width: 0;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.delfee-product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f7f7f5;
}

.delfee-product-slider {
    position: relative;
    width: 100%;
    height: 100%;
     touch-action: pan-y;
}

.delfee-product-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.delfee-product-slide.is-active {
    display: block;
}

.delfee-product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.delfee-product-gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}


/* Image hover */

.delfee-product-card:hover .delfee-product-gallery-image {
    transform: scale(1.025);
}


/* =========================================================
   WISHLIST
========================================================= */

/* .delfee-wishlist-button {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.delfee-wishlist-button:hover {
    transform: scale(1.08);
    background: #111;
    color: #fff;
} */

.delfee-wishlist-button .wishlist-icon {
    font-size: 20px;
    line-height: 1;
}

/* .delfee-wishlist-button.is-active {
    background: #111;
    color: #fff;
} */


/* =========================================================
   SLIDER ARROWS
========================================================= */

.delfee-slider-prev,
.delfee-slider-next {
    position: absolute;
    top: 50%;

    z-index: 15;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    opacity: 0;

    transform: translateY(-50%) scale(0.9);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.delfee-slider-prev {
    left: 14px;
}

.delfee-slider-next {
    right: 14px;
}


/* Show arrows on hover */

.delfee-product-image:hover .delfee-slider-prev,
.delfee-product-image:hover .delfee-slider-next {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}


/* Arrow hover */

.delfee-slider-prev:hover,
.delfee-slider-next:hover {
    background: #fff;
    color: var(--dark-purple);
    border: 1px solid var(--dark-purple);
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.delfee-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateX(-50%);
}

.delfee-slider-dot {
    width: 6px;
    height: 6px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #fff;

    opacity: 0.55;

    cursor: pointer;

    transition:
        width 0.25s ease,
        opacity 0.25s ease;
}

.delfee-slider-dot.is-active {
    width: 18px;
    border-radius: 10px;
    opacity: 1;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.delfee-product-content {
    padding: 18px 2px 0;
}


/* =========================================================
   CATEGORY
========================================================= */

.delfee-product-category {
    margin-bottom: 7px;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}

.delfee-product-category a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.delfee-product-title {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
    text-transform: capitalize;
}

.delfee-product-title a {
    color: #181818;
    text-decoration: none;

    transition: color 0.2s ease;
}

.delfee-product-title a:hover {
    color: #777;
}


/* =========================================================
   PRODUCT PRICE
========================================================= */

.delfee-product-price {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;

    color: #181818;
}

.delfee-product-price del{
    text-decoration: none !important;
}

.delfee-product-price del .amount {
    margin-right: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through !important;
}

.delfee-product-price ins {
    text-decoration: none;
}


/* =========================================================
   ADD TO CART
========================================================= */

.delfee-product-cart {
    margin-top: 15px;
}

.delfee-product-cart .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid #181818;
    border-radius: 0;
    background: var(--dark-purple);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.delfee-product-cart .button:hover {
    background: var(--dark-purple) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .delfee-product-image {
        aspect-ratio: 4 / 5;
    }

    .delfee-wishlist-button {
        top: 12px;
        right: 12px;

        width: 38px;
        height: 38px;
    }

}


@media (max-width: 767px) {

    .delfee-product-content {
        padding-top: 14px;
    }

    .delfee-product-title {
        font-size: 15px;
    }

    .delfee-product-cart .button {
        min-height: 44px;
    }

    /*
     * Always show slider arrows on mobile
     * because there is no hover.
     */

    .delfee-slider-prev,
    .delfee-slider-next {
        opacity: 1;

        width: 34px;
        height: 34px;

        transform: translateY(-50%) scale(1);
    }

}



/* .shop-products {
    position: relative;
    transition: opacity 0.2s ease;
} */

.shop-products {
    position: relative;
    transition: opacity 0.2s ease;
    display: flex;
    gap: 20px;
    width: 100%;
}
 


.shop-products.is-filter-loading {
    opacity: 0.45;
    pointer-events: none;
}

.shop-products.is-filter-loading::after {
    content: '';

    position: absolute;
    top: 50%;
    left: 50%;

    width: 34px;
    height: 34px;

    border: 2px solid #ddd;
    border-top-color: #111;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    animation: delfeeFilterLoader 0.7s linear infinite;
}

@keyframes delfeeFilterLoader {

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}





/* ==========================================
   DELFEE PRICE FILTER
========================================== */

.delfee-price-filter {
    width: 100%;
}


/* Price values */

.delfee-price-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 500;
}


.delfee-price-min-value,
.delfee-price-max-value {
    color: #222;
}


.delfee-price-separator {
    color: #999;
}


/* Range wrapper */

.delfee-price-range {
    position: relative;
    height: 30px;
}


/* Track */

.delfee-price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e5e5e5;
    transform: translateY(-50%);
    border-radius: 10px;
}


/* Active track */

.delfee-price-track-active {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-radius: 10px;
}


/* Range inputs */

.delfee-price-range input[type="range"] {
    position: absolute;
    width: 100%;
    height: 30px;
    top: 0;
    left: 0;

    margin: 0;

    background: transparent;

    pointer-events: none;

    appearance: none;
    -webkit-appearance: none;

    z-index: 3;
}


/* Webkit track */

.delfee-price-range
input[type="range"]::-webkit-slider-runnable-track {
    height: 3px;
    background: transparent;
}


/* Webkit thumb */

.delfee-price-range
input[type="range"]::-webkit-slider-thumb {

    width: 16px;
    height: 16px;

    margin-top: -6px;

    border-radius: 50%;

    background: #111;

    border: 2px solid #fff;

    box-shadow:
        0 1px 5px rgba(0, 0, 0, 0.2);

    cursor: pointer;

    pointer-events: auto;

    appearance: none;
    -webkit-appearance: none;

}


/* Firefox track */

.delfee-price-range
input[type="range"]::-moz-range-track {

    height: 3px;

    background: transparent;

}


/* Firefox thumb */

.delfee-price-range
input[type="range"]::-moz-range-thumb {

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #111;

    border: 2px solid #fff;

    box-shadow:
        0 1px 5px rgba(0, 0, 0, 0.2);

    cursor: pointer;

    pointer-events: auto;

}


/* ==========================================
   CATEGORY HEADER / HERO
========================================== */

.shop-category-header {
    position: relative;

    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* ==========================================
   OVERLAY
========================================== */

.category-header-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    z-index: 1;
}


/* ==========================================
   CONTAINER
========================================== */

.shop-category-header .container {
    position: relative;

    z-index: 2;
}


/* ==========================================
   CONTENT
========================================== */

.category-header-content {
    width: 100%;
}


.category-header-text {
    max-width: 700px;

    padding: 90px 0;

    color: #fff;
}


/* ==========================================
   EYEBROW
========================================== */

.category-eyebrow {
    display: block;

    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #fff;
}


/* ==========================================
   TITLE
========================================== */

.category-title {
    margin: 0 0 20px;

    font-size: clamp(
        38px,
        5vw,
        64px
    );

    line-height: 1.05;

    color: #fff;
}


/* ==========================================
   DESCRIPTION
========================================== */

.category-description {
    max-width: 620px;

    font-size: 16px;

    line-height: 1.7;

    color: rgba(
        255,
        255,
        255,
        0.92
    );
}


.category-description p {
    margin: 0;
}


/* ==========================================
   SHOP PAGE
========================================== */

.shop-page-header {
    min-height: 300px;

    background: #f7f5f2;
}


.shop-page-header .category-header-text {
    color: #222;
}


.shop-page-header .category-eyebrow,
.shop-page-header .category-title {
    color: #222;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .shop-category-header {
        min-height: 340px;

        background-position: center;
    }


    .category-header-text {
        padding: 65px 20px;
    }


    .category-title {
        font-size: 38px;

        margin-bottom: 15px;
    }


    .category-description {
        font-size: 14px;

        line-height: 1.6;
    }

}



/* Filter CSS */
/* ============================
   SECTION SPACING (gap from banner above)
   ============================ */
section.shop-products-section {
  margin-top: 3rem;      /* space from banner */
  padding-top: 1rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  section.shop-products-section {
    margin-top: 2rem;
  }
}

/* ============================
   PRODUCTS GRID
   ============================ */
.shop-products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 1.5rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .shop-products-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .shop-products-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
  }
}

/* ============================
   PRODUCT CARD — premium look
   ============================ */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-card .product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;       /* keeps all images uniform square */
  overflow: hidden;
  background: #f7f5f0;       /* soft neutral bg while image loads */
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-card .product-info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card .product-title {
  font-size: 14.5px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
}

.product-card .product-desc {
  font-size: 12.5px;
  color: #767676;
  margin: 0;
}

.product-card .product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.product-card .price-current {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.product-card .price-old {
  font-size: 12.5px;
  color: #a0a0a0;
  text-decoration: line-through;
}

/* ============================
   Sidebar + products alignment fix
   ============================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}
/*End CSS */






/* <!--FILTER DROPDOWN CSS========================================================= --> */

/* .shop-sidebar {
    width: 100%;
    border: 1px solid #571845;
    padding: 40px 20px;
    border-radius: 8px;
} */
.shop-sidebar {
max-width: 320px;
	background: #fff;
	border: 1px solid #571845;
	border-radius: 16px;
	padding: 24px;
}


.shop-filter {
    width: 100%;
}

/* .shop-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid #e8e8e8;
} */

.shop-filter-header {
    max-width: 320px;
	background: #fff;
	/* border: 1px solid #d94f7c;
	border-radius: 16px; */
	padding-bottom: 10px;
        display: flex;
    justify-content: space-between;
}

/* .shop-filter-header h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
} */
.shop-filter-header h2 {
   margin: 0;
	font-size: 20px;
	font-weight: 700;
}

/* .shop-filter-clear {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: #777;
    transition: color .2s ease;
} */

.shop-filter-clear {
    background: none;
	border: none;
	color: #888;
	font-size: 13px;
	cursor: pointer;
	transition: color 0.2s;
}

/* .shop-filter-clear:hover {
    color: #111;
} */

.shop-filter-clear:hover{
    color: #d94f7c;
}


/* =========================================================
   FILTER GROUP
========================================================= */

.filter-group {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
}


/* =========================================================
   FILTER TITLE
========================================================= */

.filter-group-title {
    width: 100%;
    min-height: 58px;
    padding: 17px 0;
    margin: 0;
    border: 0;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: #171717;
}

.filter-group-title-text {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================================
   ARROW
========================================================= */

.filter-icon {
    position: relative;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    display: block;
    transform: rotate(0deg);
    transition: transform .25s ease;
}


/*
 * Arrow
 */
/* .filter-icon::before,
.filter-icon::after {
    content: "";
    position: absolute;
    top: 5px;
    width: 8px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
} */

.filter-icon::before {
    left: 0;
    transform: rotate(45deg);
}

.filter-icon::after {
    right: 0;
    transform: rotate(-45deg);
}


/*
 * Open state
 */
.filter-group-title[aria-expanded="true"] .filter-icon::before {
    transform: rotate(-45deg);
}

.filter-group-title[aria-expanded="true"] .filter-icon::after {
    transform: rotate(45deg);
}


/* =========================================================
   FILTER CONTENT
========================================================= */

.filter-group-content {
    display: none;
}

.filter-icon {
    position: relative;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    display: block;
    transform: rotate(45deg);
    border-right: 1px solid #111;
    border-bottom: 1px solid #111;
    transition: transform 0.25s ease;
}

.filter-group-title[aria-expanded="true"] .filter-icon {
    transform: rotate(225deg);
}


/* =========================================================
   CHECKBOX FILTER
========================================================= */

.delfee-filter-checkbox {
    position: relative;
    width: 100%;
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    margin: 0;
    cursor: pointer;
}


/*
 * Hide native checkbox
 */
.delfee-filter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/*
 * Custom checkbox
 */
.delfee-filter-checkbox::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 1px solid #cfcfcf;
    background: #fff;
    box-sizing: border-box;
    transition:
        background-color .2s ease,
        border-color .2s ease;
}


/*
 * Checked checkbox
 */
.delfee-filter-checkbox:has(
    input[type="checkbox"]:checked
)::before {
    border-color: #111;
    background-color: #111;
}


/*
 * Check mark
 */
.delfee-filter-checkbox:has(
    input[type="checkbox"]:checked
)::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 12px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}


/* =========================================================
   LABEL
========================================================= */

.delfee-filter-label {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}


/* =========================================================
   COUNT
========================================================= */

.delfee-filter-count {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    color: #999;
}


/* =========================================================
   PRICE FILTER
========================================================= */

.delfee-price-filter {
    width: 100%;
}

.delfee-price-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.4;
    color: #222;
}

.delfee-price-separator {
    color: #999;
}

.delfee-price-min-value,
.delfee-price-max-value {
    white-space: nowrap;
}


/* =========================================================
   PRICE RANGE
========================================================= */

.delfee-price-range {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 3px;
}


/*
 * Track
 */
.delfee-price-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 14px;
    height: 2px;
    background: #dedede;
    pointer-events: none;
}


/*
 * Active track
 */
.delfee-price-track-active {
    position: absolute;
    top: 0;
    height: 100%;
    background: #111;
}


/*
 * Range inputs
 */
.delfee-price-range input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}


/*
 * WebKit thumb
 */
.delfee-price-range input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #111;
    background: #fff;
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
}


/*
 * Firefox thumb
 */
.delfee-price-range input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #111;
    background: #fff;
    cursor: pointer;
    pointer-events: auto;
}


/*
 * Hide default range track
 */
.delfee-price-range input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    border: 0;
}

.delfee-price-range input[type="range"]::-moz-range-track {
    background: transparent;
    border: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .shop-filter-header {
        padding-bottom: 16px;
    }

    .shop-filter-header h2 {
        font-size: 18px;
    }

    .filter-group-title {
        min-height: 54px;
        padding: 15px 0;
    }

    .filter-group-title-text {
        font-size: 14px;
    }

    .filter-group-content {
        padding-bottom: 15px;
    }

}
/*

<!-- =========================================================
     WISHLIST CSS
========================================================= -->
*/


.delfee-wishlist-page {
    padding: 70px 0 100px;
}

.delfee-wishlist-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e7e7e7;
}

.delfee-wishlist-subtitle {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.delfee-wishlist-header h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 500;
    color: #171717;
}

.delfee-wishlist-count {
    font-size: 14px;
    color: #777;
}


/* =========================================================
   GRID
========================================================= */

.delfee-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 20px;
}


/* =========================================================
   CARD
========================================================= */

.delfee-wishlist-card {
    min-width: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.delfee-wishlist-image {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

.delfee-wishlist-image > a {
    display: block;
}

.delfee-wishlist-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/* =========================================================
   REMOVE BUTTON
========================================================= */

.delfee-wishlist-remove {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #111;

    cursor: pointer;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.delfee-wishlist-remove:hover {
    background: #111;
    color: #fff;
    transform: scale(1.05);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.delfee-wishlist-info {
    padding-top: 17px;
}

.delfee-wishlist-product-title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.delfee-wishlist-product-title a {
    color: #171717;
    text-decoration: none;
}

.delfee-wishlist-product-title a:hover {
    color: #777;
}


/* =========================================================
   PRICE
========================================================= */

.delfee-wishlist-price {
    margin-bottom: 17px;
    font-size: 14px;
    color: #333;
}

.delfee-wishlist-price del {
    margin-right: 5px;
    color: #999;
}

.delfee-wishlist-price ins {
    text-decoration: none;
}


/* =========================================================
   ADD TO CART
========================================================= */

.delfee-wishlist-add-cart,
.delfee-wishlist-view-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    width: 100%;

    padding: 10px 18px;

    border: 1px solid #171717;

    background: #571845;
    color: #fff;

    text-decoration: none;
    text-align: center;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.delfee-wishlist-add-cart:hover,
.delfee-wishlist-view-product:hover {
    border-color: #571845;
    background: #fff;
    color: #171717;
}


/* =========================================================
   EMPTY WISHLIST
========================================================= */

.delfee-wishlist-empty {
    max-width: 600px;
    margin: 80px auto;
    padding: 70px 30px;
    text-align: center;
    border: 1px solid #e7e7e7;
}

.delfee-wishlist-empty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f7f7f7;

    font-size: 27px;
    color: #222;
}

.delfee-wishlist-empty h2 {
    margin: 0 0 12px;
    font-size: 25px;
    font-weight: 500;
    color: #171717;
}

.delfee-wishlist-empty p {
    margin: 0 auto 25px;
    max-width: 450px;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

.delfee-wishlist-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* min-height: 46px;
    padding: 22px 22px; */
    background: #fff;
    border: 1px solid var(--dark-purple);
    color: var(--dark-purple);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition:
        background-color .2s ease,
        color .2s ease;

}

/* .delfee-wishlist-button:hover {
    background: var(--dark-purple);
    color: #fff;
    box-shadow: inset 0 0 0 1px #171717;
} */


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .delfee-wishlist-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .delfee-wishlist-page {
        padding: 55px 0 80px;
    }

}


@media (max-width: 767px) {

    .delfee-wishlist-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }

    .delfee-wishlist-header h1 {
        font-size: 29px;
    }

    .delfee-wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 12px;
    }

    .delfee-wishlist-product-title {
        font-size: 14px;
    }

    .delfee-wishlist-remove {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
    }

}


@media (max-width: 480px) {

    .delfee-wishlist-page {
        padding: 40px 0 60px;
    }

    .delfee-wishlist-grid {
        gap: 22px 10px;
    }

    .delfee-wishlist-info {
        padding-top: 12px;
    }

    .delfee-wishlist-add-cart,
    .delfee-wishlist-view-product {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 12px;
    }

}






/* NEW SHOP PAGE CSS */

/* =========================================
   SHOP PRODUCT GRID
========================================= */

.shop-products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px 28px;
	align-items: start;
}


/* =========================================
   PRODUCT CARD
========================================= */

.delfee-product-card {
	position: relative;
	width: 100%;
	min-width: 0;
	background: #fff;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
    border: 1px solid #d1ba9f;  /* #FCF6F0  */ 
    border-radius: 10px;
    overflow: hidden;   
   
}
.delfee-product-card:hover
{
     overflow: hidden;  
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.delfee-product-image {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f8f7f4;
}


/* Slider */

.delfee-product-slider {
	position: relative;
	width: 100%;
	height: 100%;
}


/* Individual slide */

.delfee-product-slide {
	position: absolute;
	inset: 0;

	opacity: 0;
	visibility: hidden;

	transition:
		opacity 0.45s ease,
		transform 0.45s ease;

	transform: scale(1.02);
}


/* Active */

.delfee-product-slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	z-index: 1;
}


/* Image */

.delfee-product-image-link {
	display: block;
	width: 100%;
	height: 100%;
}


.delfee-product-gallery-image {
	width: 100%;
	height: 100%;

	object-fit: cover;

	display: block;

	transition:
		transform 0.6s ease;
}


/* Premium hover */

.delfee-product-card:hover
.delfee-product-gallery-image {
	transform: scale(1.035);
}


/* =========================================
   WISHLIST
========================================= */

.delfee-wishlist-button {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 5;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 50%;
	/* backdrop-filter: blur(8px); */
	cursor: pointer;
	transition:
		transform 0.25s ease,
		background 0.25s ease;
            border: 1px solid var(--dark-purple);
    color: var(--dark-purple);
}


.delfee-wishlist-button:hover {
     color: red;
	 /* transform: scale(1.08);
     background: var(--dark-purple);
    box-shadow: inset 0 0 0 1px #171717; */
}


.wishlist-icon {
	font-size: 20px;
	line-height: 1;
}


/* =========================================
   SLIDER ARROWS
========================================= */

.delfee-slider-prev,
.delfee-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 50%;
	background: var(--dark-purple);
    color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	opacity: 0;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}


.delfee-slider-prev {
	left: 14px;
}


.delfee-slider-next {
	right: 14px;
}


.delfee-product-card:hover
.delfee-slider-prev,
.delfee-product-card:hover
.delfee-slider-next {
	opacity: 1;
}


/* =========================================
   SLIDER DOTS
========================================= */

.delfee-slider-dots {
	position: absolute;
	left: 50%;
	bottom: 15px;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 6px;
	padding: 6px 9px;
	border-radius: 30px;
	/* background: rgba(255, 255, 255, 0.88); */
	backdrop-filter: blur(8px);
}


.delfee-slider-dot {
	width: 6px;
	height: 6px;

	padding: 0;

	border: none;

	border-radius: 50%;

	background: #999;

	cursor: pointer;

	transition:
		transform 0.25s ease,
		background 0.25s ease;
}


.delfee-slider-dot.is-active {
	transform: scale(1.35);
	background: var(--dark-purple);
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.delfee-product-content {
	padding: 18px 0px 0;
}

.delfee-product-content .delfee-product-category{
padding: 0px 12px;
}

.delfee-product-content .delfee-product-title {
    margin-bottom: 0px;
    padding: 0px 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.delfee-product-content .delfee-product-price{
    padding: 0px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-direction: row-reverse;
    justify-content: start;
}



/* Category */

.delfee-product-category {
	margin-bottom: 7px;

	font-size: 11px;
	font-weight: 600;

	text-transform: uppercase;

	letter-spacing: 0.12em;

	opacity: 0.55;
}


.delfee-product-category a {
	text-decoration: none;
}


/* Title */

.delfee-product-title {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}


.delfee-product-title a {
	color: inherit;
	text-decoration: none;
}


.delfee-product-title a:hover {
	text-decoration: none;
}


/* Price */

.delfee-product-price {
	margin-bottom: 15px;

	font-size: 17px;

	font-weight: 600;
}


/* =========================================
   ADD TO CART
========================================= */

.delfee-product-cart .button {
	width: 100%;
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #222;
	background: var(--dark-purple);
	color: #fff;
	border-radius: 0;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
    text-align: center;
    align-content: center;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

/* 
.delfee-product-cart .button:hover {
    background: var(--dark-purple) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
} */


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

	.shop-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 20px;
	}

}


@media (max-width: 575px) {

	.shop-products {
		grid-template-columns: 1fr;
		gap: 35px;
	}


	.delfee-product-title {
		font-size: 18px;
	}


	.delfee-slider-prev,
	.delfee-slider-next {
		opacity: 1;
	}

}


/* =========================================
   PAGINATION
========================================= */

.delfee-pagination {
	width: 100%;

	display: flex;
	justify-content: center;

	margin-top: 60px;
	padding-top: 30px;

	border-top: 1px solid rgba(0, 0, 0, 0.08);
}


.delfee-pagination ul {
	display: flex;

	align-items: center;

	justify-content: center;

	gap: 8px;

	margin: 0;

	padding: 0;

	list-style: none;
}


.delfee-pagination li {
	margin: 0;
	padding: 0;
}


.delfee-pagination a,
.delfee-pagination span {
	min-width: 42px;
	height: 42px;

	padding: 0 12px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid rgba(0, 0, 0, 0.12);

	background: #fff;

	color: #222;

	text-decoration: none;

	font-size: 13px;

	transition:
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease;
}


.delfee-pagination a:hover {
	background: #222;

	color: #fff;

	border-color: #222;
}


.delfee-pagination .current {
	background: #222;

	color: #fff;

	border-color: #222;
}


.delfee-pagination .dots {
	border-color: transparent;

	background: transparent;
}


@media (max-width: 575px) {

	.delfee-pagination {
		margin-top: 40px;
	}

	.delfee-pagination ul {
		gap: 5px;
	}

	.delfee-pagination a,
	.delfee-pagination span {
		min-width: 38px;
		height: 38px;

		padding: 0 9px;
	}

}
/* END CSS HERE */

