/* women-list.css */
.wl{
  background: transparent;
  max-width: 1680px;
  margin: 0 auto;
}

/* intro */
.wl-hero{
  padding: 80px 0px 120px 0;
  text-align: center;
}
.wl-title{
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #2b2b2a;
  margin-bottom: 25px;
}
.wl-subtitle{
  margin: 10px 0 0;
  font-size: 16px;
  opacity: .75;
  color: #999;
}

/* toolbar */
.wl-bar{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.wl-bar__left{
  display: flex;
  gap: 10px;
  align-items: center;
}
.wl-bar__center{
  text-align: center;
}
.wl-count{
  font-size: 16px;
  letter-spacing: .06em;
  opacity: .75;
}
.wl-bar__right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

/* view buttons */
.wl-viewBtn{
  width: 34px;
  height: 34px;
  border: 0px;
  background: transparent;
  border-radius: 0px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  opacity: .8;
}
.wl-viewBtn.is-active{
  opacity: 1;
  border-color: rgba(0,0,0,.32);
}
.wl-ic{
  width: 18px;
  height: 14px;
  display: inline-block;
  position: relative;
}
.ic-grid4::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 0 0/7px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 11px 0/7px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 0 9px/7px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 11px 9px/7px 5px;
  background-repeat:no-repeat;
}
.ic-grid6::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 0 0/5px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 7px 0/5px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 14px 0/5px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 0 9px/5px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 7px 9px/5px 5px,
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)) 14px 9px/5px 5px;
  background-repeat:no-repeat;
}
.wl-viewSvg{
  width: 34px;
  height:34px;
  display: block;
}

.wl-viewBtn{
  color: #beb9aa;
}

.wl-viewBtn:not(.is-active){
  opacity: .55;
}

.wl-viewBtn.is-active{
  opacity: 1;
}

/* Filters / Sort buttons */
.wl-linkBtn{
  border: 0;
  background: transparent;
  padding: 6px 0;
  font-size: 12px;
  letter-spacing: .06em;
  cursor: pointer;
  opacity: .8;
}
.wl-linkBtn1{
	margin-right: 20px;
}
.wl-linkBtn:hover{ opacity: 1; }

.wl-linkBtn__ic{
  display: inline-block;
  width: 18px;
  text-align: center;
  margin-right: 6px;
  color: #beb9aa;
}

.wl-sort{ position: relative; }
.wl-caret{
  display:inline-block;
  width: 8px; height: 8px;
  border-right: 1px solid rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(0,0,0,.55);
  transform: rotate(45deg);
  margin-left: 8px;
  translate: 0 -1px;
}

/* sort menu */
.wl-sortMenu{
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 220px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  padding: 10px;
  z-index: 9999;
  background: #fff; 
  
}
.wl-sortItem{
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: .02em;
  cursor: pointer;
  opacity: .8;
  border-radius: 8px;
  display: block;
  border-radius: 10px;
  font: inherit;  
}
.wl-sortItem:hover{ background: rgba(0,0,0,.04); opacity: 1; }
.wl-sortItem.is-selected{
  background: rgba(0,0,0,.08); 
  opacity: 1;
  position: relative;
}
.wl-sortItem.is-selected::after{
  content:"✓";
  position:absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .7;
}
/* ===== Filter accordion: 面板展开后留出空间 ===== */
.wl-acc__panel[hidden]{ display:none !important; }
.wl-acc__panel.is-open{ display:block; padding: 10px 0 16px; }
.wl-check{ display:block; padding: 8px 0; }


/* grid */
.wl-gridWrap{
  padding: 48px 0px 60px;
}
.wl-grid{
  display: grid;
  gap: 50px 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  
}

/* 5 columns mode */
.wl-grid[data-view="grid5"]{
  gap: 22px 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* ===== load more area ===== */
.wl-more{
  padding: 40px 22px 80px;
  text-align: center;
}
.wl-more__count{
  font-size: 14px;
  letter-spacing: .06em;
  opacity: .75;
  margin-bottom: 25px;
}
.wl-more__btn{
  min-width: 320px;
  max-width: 520px;
  width: 42%;
  padding: 24px 18px;
  border: 1px solid rgba(200,192,180,1);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .06em;
  border-radius: 5px;
}

/* hidden cards (used by JS) */
.wl-card.is-hidden{
  display: none !important;
}
@media (max-width: 1025px){
 .burger{ color: rgba(0, 0, 0, .92);}
 .wl-count{ font-size: 14px;}
}



@media (max-width: 900px){
   .wl-bar{
      grid-template-columns: auto 1fr auto;
      grid-template-areas: "left center right";
      align-items: center;
      column-gap: 14px;
      row-gap: 0;
    }
  
    .wl-bar__left{
      grid-area: left;
      justify-self: start;
    }
  
    .wl-bar__center{
      grid-area: center;
      justify-self: center; /* 关键：强制居中 */
      text-align: center;
    }
  
    .wl-bar__right{
      grid-area: right;
      justify-self: end;
    }
  
    /* grid 列数保持你原来的逻辑 */
    .wl-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .wl-grid[data-view="grid5"]{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}


@media (max-width: 640px){
  .wl-hero{ padding-top: 36px; }
  .wl-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wl-grid[data-view="grid5"]{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wl-more__btn{ width: 100%; min-width: 0; }
  .wl-count{font-size: 12px;}
  .wl-viewBtn{ width: 30px; height: 30px;}
  .wl-viewSvg{ width: 30px; height: 30px;}
  .wl-bar__left{ gap: 6px;}
  .wl-bar__right{ gap: 8px;}
  .wl-linkBtn1{ margin-right: 10px;}
  .wl-bar{ padding: 10px 10px 10px 5px;}
  .wl-bar__left{
    display: none;
  }
}

@media (max-width: 480px){
  .wl-bar{
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "center";
    justify-items: center;
    row-gap: 10px;
  }
  .wl-bar__left, .wl-bar__right{ justify-self: center; }
}


/* card */
.wl-card{
  text-decoration: none;
  color: inherit;
}
.wl-card img:hover{ cour}
.wl-card__media{
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,.02);
  /*border-radius: 14px;*/
  overflow: hidden;
}
.wl-card__media img{
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(0);
  cursor: pointer;
}
.wl-card__media:hover{ cursor: pointer;}
.wl-card__media .wl-img{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
  transition: opacity .35s ease;
}
/* stack images */
.wl-img--primary{
  position: relative;
  z-index: 1;
  opacity: 1;
}
.wl-img--hover{
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.wl-card__price{
  margin-top: 15px;
  font-size: 16px;
  letter-spacing: .02em;
  color: #b3835a;     /* 你图里那种金棕色 */
  font-weight: 500;
}
/* hover effect only on devices that have hover */
@media (hover:hover) and (pointer:fine){
  .wl-card:hover .wl-img--primary{ opacity: 0; }
  .wl-card:hover .wl-img--hover{ opacity: 1; }
  .wl-card:hover .wl-wish{
      background: rgba(0,0,0,.1);   /* 悬停时更明显一点 */
    }
	
	.wl-card:hover .wl-wish  svg{
	     stroke: rgba(43,43,42,.7); 
	  }
  
    .wl-card:hover .wl-wish:hover{
      transform: scale(1.06);
    }
}

/* make sure wishlist button stays on top */
.wl-card__media .wl-wish{
   position: absolute;
     top: 14px;
     right: 14px;
     width: 34px;
     height: 34px;
     border-radius: 999px;
     border: 0;
     padding: 0;
     display: grid;
     place-items: center;
     cursor: pointer;
     /* 关键：永远可见 */
     opacity: 1 !important;
     /* 默认：无背景（你说的“不要带背景”） */
     background: rgba(0,0,0,0);
     /* 保证在第二张图之上 */
     z-index: 10;
     transition: background .2s ease, transform .2s ease;
}
.wl-card__media .wl-wish svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(43,43,42,.1);
  stroke-width: 1.6;
}
.wl-like{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity .18s ease;
}
.wl-like svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(0,0,0,.65);
  stroke-width: 1.4;
}
/* Heart icon */
.wl-wish svg{
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #2b2b2a;
  stroke-width: 1.6;
  transition: stroke .2s ease;
}

.wl-card__meta{
  padding-top: 30px;
  text-align: center;
}
.wl-card__title{
  font-size: 16px;
  letter-spacing: .04em;
  opacity: .85;
}
.wl-dots{
  margin-top: 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.wl-dot{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 0;          /* 不要边线 */
  opacity: 1;
}

.wl-dot[data-dot="ivory"]{ background: #efe8dc; }
.wl-dot[data-dot="camel"]{ background: #c8a47a; }
.wl-dot[data-dot="black"]{ background: #111; }
.wl-dot[data-dot="grey"]{ background: #bdbdbd; }
.wl-dot[data-dot="navy"]{ background: #1a2a3a; }
.wl-dot[data-dot="green"]{ background: #6a7b64; }
.wl-dot[data-dot="white"]{ background: #ffffff; }

/* Filter overlay */
.wl-filter{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.wl-filter.is-open{
  pointer-events: auto;
}
.wl-filter__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity .2s ease;
}
.wl-filter.is-open .wl-filter__backdrop{ opacity: 1; }

.wl-filter__panel{
  position:absolute;
  top:0;
  right:0;
  height: 100%;
  width: min(420px, 92vw);
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(0,0,0,.08);
  transform: translateX(102%);
  transition: transform .22s ease;
  display:flex;
  flex-direction: column;
}
.wl-filter.is-open .wl-filter__panel{
  transform: translateX(0);
}

.wl-filter__top{
  padding: 22px 18px;
  display:flex;
  justify-content: space-between;
  gap: 16px;
}
.wl-filter__title{
  font-size: 26px;
  letter-spacing: .02em;
}
.wl-filter__sub{
  margin-top: 8px;
  font-size: 12px;
  opacity: .75;
}
.wl-filter__actions{
  display:flex;
  gap: 10px;
  align-items: flex-start;
}
.wl-filter__reset{
  border: 0;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  opacity: .75;
  padding: 8px 10px;
}
.wl-filter__reset:hover{ opacity: 1; }

.wl-filter__close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.6);
  cursor: pointer;
  display:grid;
  place-items:center;
}
.wl-filter__close svg{
  width: 18px;
  height: 18px;
  fill:none;
  stroke: rgba(0,0,0,.65);
  stroke-width:1.6;
}

.wl-filter__body{
  padding: 8px 0;
  overflow:auto;
  flex: 1;
}
.wl-filter__bottom{
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.wl-filter__apply{
  width: 100%;
  border: 0;
  background:rgba(201,166,122,.95);
  color: #fff;
  padding: 14px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .06em;
}
.wl-filter__apply:hover{
  background:rgba(193,161,120,.95);
}

body.page--baby .wl-filter__apply{background: rgba(182, 211, 227, 1);}
body.page--baby .wl-filter__apply:hover{background:rgba(182, 211, 227,.85);}

/* accordion */
.wl-acc{
  border-top: 1px solid rgba(0,0,0,.08);
}
.wl-acc__btn{
  width: 100%;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .02em;
}
.wl-plus{
  width: 12px; height: 12px;
  position: relative;
  opacity: .7;
}
.wl-plus::before,
.wl-plus::after{
  content:"";
  position:absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: rgba(0,0,0,.65);
  transform: translateY(-50%);
}
.wl-plus::after{
  inset: 0 auto 0 50%;
  width: 1px;
  transform: translateX(-50%);
}
.wl-acc__btn[aria-expanded="true"] .wl-plus::after{
  display:none;
}

.wl-acc__panel{
  padding: 2px 18px 16px;
}
.wl-check{
  display:flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  padding: 10px 20px;
  opacity: .85;
}
.wl-check input{
  width: 14px;
  height: 14px;
}
/* ===== Page bg + toolbar bg ===== */
body.page--list{
  background: #f5f2e8;
}

/* 列表页：header 不加背景、不加下边线（覆盖我之前的 sticky 背景方案） */
body.page--list .site-header{
  background: transparent !important;
  backdrop-filter: none !important;
}

/* 如果你 header.css 里有 sticky/absolute 之类导致颜色块出现，也一起清掉 */
body.page--list .site-header .nav-wrap{
  background: transparent !important;
  border-bottom: 0 !important;
}

/* 功能条背景色 */
body.page--list .wl-bar{
  background: #eee8d8;
  border-top: 0;
  border-bottom: 0;
}

/* Filters drawer should be above the header/topbar */
body.page--list .wl-filterOverlay,
body.page--list .wl-filterPanel{
  z-index: 5000 !important;
}

/* 如果你有遮罩层 */
body.page--list .wl-filterOverlay{
  position: fixed;
  inset: 0;
}

/* 右侧面板固定在最上面 */
body.page--list .wl-filterPanel{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
}
body.page--baby .topbar{
	background:rgba(182,211,227,1);
}
body.page--baby{
  background: #eef3f5;
}
body.page--baby .wl-bar{
  background: #e6eff4;
}
body.page--baby .wl-viewBtn{
  color: #9fbed0;
}
body.page--baby .wl-linkBtn__ic{
	color: #75a1ba;
}
body.page--baby .ptl-ft{ background: #e3e9eb;}
/* Fix: make Filters / Sort always clickable */
.wl-tool,
.wl-tool * {
  pointer-events: none;
}
.wl-tool {
  pointer-events: auto;
  position: relative;
  z-index: 50;
}

/* In case the center count layer is sitting above (rare but happens) */
.wl-bar__center {
  pointer-events: none;
}
.wl-bar__right {
  position: relative;
  z-index: 50;
}
.wl-wish, .wl-like{
  pointer-events: auto;
  position: relative;
  z-index: 60;
}
.wl-wish svg{ pointer-events:none; }
.wl-emailModal[hidden]{display:none;}
.wl-emailModal{position:fixed;inset:0;z-index:9999;}
.wl-emailBackdrop{position:absolute;inset:0;background:rgba(0,0,0,.18);}
.wl-emailPanel{position:relative;max-width:420px;margin:12vh auto;background:#f1f0ee;padding:30px 22px;border-radius:12px;}
.wl-emailPanel input{width:100%;padding:12px;margin:12px 0; border: 1px solid #b8b8b8; background: #efede3;}
.wl-emailPanel button{padding:10px 14px;margin-right:8px; border: 1px solid #b8b8b8; background: #efede3;}
.wl-emailTitle,.wl-emailSub{ margin-bottom: 10px;}
.wl-card__media{ position:relative; }
/* heart button must be on top and clickable */
.wl-wish.wl-like{
  position:absolute !important;
  top:16px;
  right:16px;
  z-index:9999 !important;
  pointer-events:auto !important;
}
/* svg should not steal click */
.wl-wish.wl-like svg,
.wl-wish.wl-like path{
  pointer-events:none !important;
}
/* very common: hover image overlay steals click */
.wl-img,
.wl-img--hover,
.wl-img--primary{
  pointer-events:none !important;
}
/* ===== Wishlist icon states ===== */
.wl-wish {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 默认：空心 */
.wl-wish svg {
  width: 18px;
  height: 18px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform .12s ease, fill .15s ease, opacity .15s ease;
  opacity: .75;
}

/* hover：轻微强调 */
.wl-card:hover .wl-wish svg {
  opacity: 1;
  transform: scale(1.03);
}

/* 已收藏：实心 */
.wl-wish.is-saved svg {
  fill: currentColor;         /* 实心 */
  stroke: currentColor;
  opacity: 0.4;
}

/* 已收藏 hover：更明显一点 */
.wl-wish.is-saved:hover svg {
  transform: scale(1.06);
}
