@media (min-width: 768px) {
.webshop-sidebar {
  position: sticky;
  top: 150px; /* adjust based on your header height */
  align-self: start;
}

.webshop-container {
  overflow: visible !important;
}


}



.main-container {
	background: #faf7f5;
	padding: 20px 10px 10px 10px;
}

.inner-contaner {
    margin-inline: auto;
    position: relative;
    max-width: 1200px;
}

.breadcrumbs a {
    color: #6a5c53;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
}

.breadcrumbs {
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
}

.webshop-container {
    display: flex;
    gap: 40px;
    margin-inline: auto;
    position: relative;
    max-width: 1200px;
}

h1.shop-title {
    font-family: "Playfair Display";
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    color: #6a5c53;
}

.webshop-sidebar {
  width: 250px;
}

.webshop-main {
  flex: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card img {
  width: 100%;
}

.shop-intro {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

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

.product-info {
  padding: 10px 5px;
}

.product-price {
  font-weight: 600;
}

.product-rating {
  font-size: 12px;
  margin: 4px 0;
}





.webshop-sidebar h4 {    
	font-size: 14px;
    margin-bottom: 10px;
    color: #6a5c53;
    font-family: "DM Sans", sans-serif;
	font-weight: 700;
}

.webshop-sidebar ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.webshop-sidebar li {
  margin-bottom: 8px;
  font-size: 13px;
}

.webshop-sidebar label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px;
    color: #958a83;
    font-family: "DM Sans", sans-serif;
}

.price-filter {
  margin-bottom: 25px;
}

#price-slider {
  margin: 10px 0;
}


.price-values {
    font-size: 14px;
    margin-bottom: 10px;
    color: #958a83;
    font-family: "DM Sans", sans-serif;
}






.shop-top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.custom-dropdown {
  position: relative;
  width: 260px;
  font-size: 14px;
  font-family: inherit;
}


.dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "DM Sans", sans-serif;
}


.dropdown-selected:hover {
  border-color: #cbb7a6;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* rotate arrow */
.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  list-style: none;
  margin: 0;
  padding: 6px 0;

  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;

  background: #fff;
  border: 1px solid #e5e5e5;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  z-index: 999;
}

/* smooth open */
.custom-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-options li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-options li:hover {
  background: #f7f5f3;
}

.dropdown-options li.active {
  background: #cbb7a6;
  color: #fff;
}


/* CHECK ICON */
.dropdown-options li {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

/* hide check by default */
.dropdown-options li .check {
  opacity: 0;
  font-size: 12px;
}

/* show only active */
.dropdown-options li.active .check {
  opacity: 1;
}

/* ALIGN TEXT PERFECTLY */
.dropdown-options li span:not(.check) {
  flex: 1;
}

/* SHADOW (VERY IMPORTANT) */
.dropdown-options {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.dropdown-selected,
.dropdown-options li {
  font-family: font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
}

.dropdown-options {
  top: calc(100% + 6px);
}


/* CARD */
.product-card {
  position: relative;
}

/* IMAGE WRAP (IMPORTANT FOR ZOOM) */
.product-image {
  position: relative;
  overflow: hidden;
  background: #f7f5f3;
}

.image-wrap img {
  width: 100%;
  transition: transform 0.4s ease;
}

/* ZOOM INSIDE BOX */
.product-card:hover .image-wrap img {
  transform: scale(1.08);
}

/* BADGE */
.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e9e3dc;
  color: #333;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 2;
}

/* WISHLIST */
.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;

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

  font-size: 16px;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  z-index: 2;
}

/* HOVER HEART */
.wishlist-icon:hover {
  color: #cbb7a6;
}

/* INFO */
.product-info {
  padding-top: 10px;
}


.product-title {
    font-size: 14px;
    color: #c7b3a8;
    font-family: "Playfair Display";
    margin: 5px 0;
}

.product-price {
  font-size: 14px;
  color: #444;
}

/* =========================
   RANGE SLIDER (DESIGN MATCH)
========================= */

/* =========================
   FINAL RANGE SLIDER DESIGN
========================= */

/* container */
#price-slider {
  margin-top: 10px;
}

/* base line (thin + subtle) */
.noUi-target {
  background: #d9d3cc;
  height: 5px;
  border: none;
  box-shadow: none;
}

/* active range */
.noUi-connect {
  background: #bfae9f;
}

/* handles (OUTLINED STYLE like design) */
.noUi-handle {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50%;
    background: #f6f3ef;
    border: 2px solid #bfae9f;
    box-shadow: none;
    cursor: pointer;
    top: -7px !important;
}

/* remove default lines */
.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

/* subtle hover */
.noUi-handle:hover {
  background: #bfae9f;
}

/* smooth transitions */
.noUi-connect,
.noUi-handle {
  transition: all 0.2s ease;
}

.noUi-base {
  height: 5px !important;
}




/* MAIN INTRO SECTION */
.shop-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #f3efe9;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 20px;
}

/* TEXT SIDE */
.shop-intro-text {
  padding: 40px;
  display: flex;
  align-items: center;
}


.shop-intro-text p {
    line-height: 28px;
    font-size: 18px;
    color: #958a83;
    font-family: "DM Sans", sans-serif;
}


/* IMAGE SIDE */
.shop-intro-image {
  height: 100%;
}

.shop-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


.bottom-box {
    border: 1px solid #e2dad5;
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 50px;
    margin-top: 40px;
}


.bottom-box p {
    font-size: 16px;
    line-height: 24px;
    color: #958a83;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}

.bottom-box h2 {
    font-family: "Playfair Display";
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: #6a5c53;
}


.mobile-only {
	display: none;
}

/* MOBILE */
@media (max-width: 768px) {
	.mobile-only {
		display: block;
	}
	
	.desktop-only {
		display: none;
	}
	
  .shop-intro {
    grid-template-columns: 1fr;
  }

  .shop-intro-text {
    padding: 25px 25px 0px 25px;
  }

  .shop-intro-text p {
    max-width: 100%;
  }
	

.webshop-container {
    flex-direction: column;
}


.webshop-sidebar {
    width: 100%;
    padding: 10px 25px 10px 10px;
    border: 1px solid #e2dad5;
    border-radius: 4px;
}	

.product-grid {
    grid-template-columns: repeat(2, 1fr);
}

.bottom-box {
    border: 1px solid #e2dad5;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 40px;
    margin-top: 0px;
}

	
	
}

