/* Lively Design — Shop archive / category grid (DS product-card treatment) */

/* grid rhythm */
.wc-block-product-template.is-flex-container{gap:var(--gap-card,24px) !important}
.wc-block-product-template.columns-4 > li,
.wc-block-product-template.columns-4 > .wc-block-product{flex:0 0 calc(25% - 18px) !important;max-width:calc(25% - 18px) !important}

/* card frame — paper fill + hairline border, sharp corners, no shadow */
.wc-block-product-template .wc-block-product{
  border:1px solid var(--ld-line,#E9E7E0);
  background:var(--surface-card,#fff);
  display:flex;flex-direction:column;
  padding:0;margin:0;
  transition:border-color .2s var(--ease,ease);
}
.wc-block-product-template .wc-block-product:hover{border-color:var(--ld-line-deep,#DEDBD2)}

/* image well 4:5 */
.wc-block-product-template .wc-block-components-product-image{
  margin:0;display:block;aspect-ratio:4/5;overflow:hidden;background:var(--ld-photo,#E7E7E1)
}
.wc-block-product-template .wc-block-components-product-image a,
.wc-block-product-template .wc-block-components-product-image img{
  width:100%;height:100%;object-fit:cover;display:block;border-radius:0 !important
}

/* text block */
.wc-block-product-template .wp-block-post-title{
  font-family:var(--font-serif,"Cormorant Garamond",serif);
  font-weight:500;font-size:18px;line-height:1.3;color:var(--text-strong,#232521);
  margin:16px 16px 0;text-align:left
}
.wc-block-product-template .wp-block-post-title a{color:inherit;text-decoration:none}
.wc-block-product-template .wp-block-post-title a:hover{color:var(--accent,#5E7E62)}
.wc-block-product-template .wp-block-woocommerce-product-price{
  font-family:var(--font-shop,"Inter",sans-serif);
  font-size:15px;font-weight:500;color:var(--text-strong,#232521);
  margin:6px 16px 0
}
.wc-block-product-template .wp-block-woocommerce-product-price del{color:var(--ld-strike,#B5563A);font-weight:400;margin-right:6px}

/* add-to-cart button — lighter/outline, pinned bottom */
.wc-block-product-template .wc-block-components-product-button{margin:14px 16px 16px;margin-top:auto}
.wc-block-product-template .wc-block-components-product-button .wp-block-button__link,
.wc-block-product-template .add_to_cart_button{
  display:block;width:100%;text-align:center;
  background:transparent !important;color:var(--text-strong,#232521) !important;
  border:1px solid var(--ld-line,#E9E7E0) !important;border-radius:0 !important;
  font-family:var(--font-shop,"Inter",sans-serif);
  font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  padding:11px 14px;transition:background .2s,color .2s,border-color .2s
}
.wc-block-product-template .wc-block-components-product-button .wp-block-button__link:hover,
.wc-block-product-template .add_to_cart_button:hover{
  background:var(--accent,#5E7E62) !important;color:#fff !important;border-color:var(--accent,#5E7E62) !important
}

/* pagination */
.wp-block-query-pagination{margin-top:44px;display:flex;gap:8px;justify-content:center}
.wp-block-query-pagination a,.wp-block-query-pagination .page-numbers{
  font-family:var(--font-shop,"Inter",sans-serif);font-size:13px;color:var(--text-body,#565049);
  padding:8px 12px;border:1px solid var(--ld-line,#E9E7E0);text-decoration:none
}
.wp-block-query-pagination .current{border-color:var(--accent,#5E7E62);color:var(--accent,#5E7E62)}

@media(max-width:1024px){
  .wc-block-product-template.columns-4 > li,
  .wc-block-product-template.columns-4 > .wc-block-product{flex-basis:calc(33.333% - 16px) !important;max-width:calc(33.333% - 16px) !important}
}
@media(max-width:680px){
  .wc-block-product-template.columns-4 > li,
  .wc-block-product-template.columns-4 > .wc-block-product{flex-basis:calc(50% - 12px) !important;max-width:calc(50% - 12px) !important}
}
