
:root{
  --gs-ink:#171717;
  --gs-copy:#484848;
  --gs-muted:#777;
  --gs-line:rgba(23,23,23,.14);
  --gs-soft:#f6f2eb;
  --gs-page:1120px;
  --gs-reading:760px;
}

.gs-feed-shell{width:100%;color:var(--gs-ink)}
.gs-feed-article{
  width:min(calc(100% - 48px),var(--gs-page));
  margin:0 auto;
  padding:clamp(54px,7vw,92px) 0 clamp(64px,8vw,104px);
  border-bottom:1px solid var(--gs-line);
}
.gs-feed-article.is-primary{padding-top:clamp(32px,5vw,68px)}
.gs-feed-next-label{
  margin-bottom:34px;
  font-size:10px;
  letter-spacing:.18em;
  font-weight:700;
  color:#8b7656;
}
.gs-feed-header{
  width:min(100%,var(--gs-reading));
  margin:0 auto 30px;
  text-align:center;
}
.gs-feed-category{
  display:inline-block;
  margin-bottom:13px;
  font-size:11px;
  letter-spacing:.17em;
  font-weight:700;
  color:#927247;
  text-decoration:none;
}
.gs-feed-title{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(42px,6vw,76px);
  font-weight:400;
  letter-spacing:-.035em;
  line-height:.98;
}
.gs-feed-title a{color:inherit;text-decoration:none}



.gs-feed-actions{
  width:min(100%,var(--gs-reading));
  margin:0 auto 58px;
  display:flex;
  gap:10px;
  padding-top:18px;
  border-top:1px solid var(--gs-line);
}
.gs-feed-action{
  appearance:none;
  border:1px solid var(--gs-line);
  background:#fff;
  color:var(--gs-ink);
  min-height:44px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:11px;
  letter-spacing:.08em;
  font-weight:700;
  text-transform:uppercase;
  cursor:pointer;
}
.gs-feed-action[aria-pressed="true"]{background:var(--gs-ink);color:#fff}
.gs-action-icon{font-size:17px;line-height:1}

.gs-feed-shop{margin:0 auto 44px}
.gs-feed-section-head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
  font-size:11px;
  letter-spacing:.18em;
  font-weight:700;
}
.gs-feed-line{height:1px;flex:1;background:var(--gs-line)}

.gs-explore-category{
  width:min(100%,var(--gs-reading));
  min-height:54px;
  margin:12px auto 0;
  padding:0 18px;
  border:1px solid var(--gs-ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--gs-ink);
  font-size:12px;
  letter-spacing:.06em;
  font-weight:700;
  text-decoration:none;
}
.gs-explore-category:hover{background:var(--gs-ink);color:#fff}

.gs-feed-loader{
  width:min(calc(100% - 48px),var(--gs-page));
  margin:24px auto;
  text-align:center;
  color:var(--gs-muted);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.gs-load-more{
  display:block;
  min-width:180px;
  min-height:50px;
  margin:34px auto 58px;
  padding:0 24px;
  border:1px solid var(--gs-ink);
  background:var(--gs-ink);
  color:#fff;
  font-size:11px;
  letter-spacing:.14em;
  font-weight:700;
  text-transform:uppercase;
  cursor:pointer;
}
.gs-load-more[hidden],.gs-feed-loader[hidden]{display:none!important}

.gs-explore-strip{
  width:min(calc(100% - 48px),var(--gs-page));
  margin:0 auto clamp(56px,8vw,100px);
  padding-top:24px;
  border-top:1px solid var(--gs-line);
}
.gs-explore-strip-title{
  margin-bottom:14px;
  font-size:10px;
  letter-spacing:.18em;
  font-weight:700;
}
.gs-category-rail{
  display:flex;
  gap:9px;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  padding-bottom:4px;
}
.gs-category-rail::-webkit-scrollbar{display:none}
.gs-category-chip{
  flex:0 0 auto;
  min-height:39px;
  padding:0 16px;
  border:1px solid var(--gs-line);
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  color:var(--gs-ink);
  font-size:12px;
  text-decoration:none;
  background:#fff;
  white-space:nowrap;
}
.gs-category-chip:hover{border-color:var(--gs-ink)}

@media(max-width:1024px){
    .gs-explore-category{min-height:50px;font-size:11px}
  .gs-explore-strip{
    width:calc(100% - 32px);
    margin-bottom:64px;
  }
}

@media(max-width:380px){
  .gs-feed-article,.gs-explore-strip{width:calc(100% - 26px)}
  .gs-feed-action{font-size:9.5px}
}


/* v0.9: Native WoodMart / WooCommerce product cards */
.gs-native-products{
  width:100%;
}

/* Do not redesign the product cards here.
   The inner <ul class="products"> and <li class="product"> are rendered by WooCommerce,
   allowing WoodMart to apply the site's global product-card design. */
.gs-native-products .products{
  margin-bottom:0;
}

/* Keep spacing around the native loop consistent with the editorial feed. */
.gs-native-products + *{
  margin-top:0;
}

/* v0.10 Instagram-like post gallery */
.gs-look-gallery{
  position:relative;
  width:min(100%,820px);
  margin:0 auto 18px;
  background:#f2f2f2;
  overflow:hidden;
}
.gs-look-track{
  display:flex;
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  overscroll-behavior-inline:contain;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.gs-look-track::-webkit-scrollbar{display:none}
.gs-look-slide{
  flex:0 0 100%;
  width:100%;
  margin:0;
  scroll-snap-align:start;
  scroll-snap-stop:always;
  background:#f2f2f2;
}
.gs-look-slide img{
  display:block;
  width:100%;
  height:auto;
  max-height:900px;
  object-fit:cover;
  user-select:none;
  -webkit-user-drag:none;
}
.gs-gallery-counter{
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  min-height:28px;
  padding:0 9px;
  display:flex;
  align-items:center;
  border-radius:999px;
  background:rgba(18,18,18,.72);
  color:#fff;
  font-size:11px;
  font-weight:700;
}
.gs-gallery-arrow{
  position:absolute;
  z-index:3;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#171717;
  box-shadow:0 2px 12px rgba(0,0,0,.12);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.gs-gallery-arrow:disabled{opacity:.3;cursor:default}
.gs-gallery-prev{left:14px}
.gs-gallery-next{right:14px}
.gs-gallery-dots{
  position:absolute;
  left:50%;
  bottom:10px;
  z-index:3;
  transform:translateX(-50%);
  display:flex;
  gap:5px;
  padding:5px 7px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
}
.gs-gallery-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
}
.gs-gallery-dot.is-active{background:#fff;transform:scale(1.2)}

/* Instagram-like caption area */
.gs-instagram-caption{
  width:min(100%,var(--gs-reading));
  margin:0 auto 16px;
  color:var(--gs-ink);
}
.gs-caption-topline{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:7px;
  font-size:14px;
  line-height:1.4;
}
.gs-caption-brand{font-weight:700}
.gs-caption-dot{color:#999}
.gs-caption-category{
  color:var(--gs-muted);
  text-decoration:none;
}
.gs-caption-description{
  font-size:15px;
  line-height:1.55;
  color:var(--gs-copy);
}
.gs-caption-description p{margin:0}
.gs-caption-tip{
  margin-top:8px;
  font-size:14px;
  line-height:1.5;
  color:#3d3d3d;
}
.gs-caption-tip strong{font-weight:700}
.gs-caption-date{
  margin-top:9px;
  font-size:10px;
  line-height:1.4;
  letter-spacing:.04em;
  color:#8b8b8b;
  text-transform:uppercase;
}

@media(max-width:700px){
  .gs-look-gallery{
    width:calc(100% + 32px);
    margin-left:-16px;
    margin-right:-16px;
    margin-bottom:14px;
  }
  .gs-look-slide img{max-height:none}
  .gs-gallery-arrow{display:none}
  .gs-gallery-counter{top:10px;right:10px}
  .gs-gallery-dots{bottom:8px}
  .gs-instagram-caption{margin-bottom:12px}
  .gs-caption-topline{font-size:13px}
  .gs-caption-description{font-size:14px;line-height:1.5}
  .gs-caption-tip{font-size:13.5px}
  .gs-caption-date{font-size:9px}
}
