/*
Theme Name: TORI Luxe
Theme URI:  https://example.com/tori-luxe
Author:     Your Team
Description: Premium, modern WooCommerce-ready theme scaffold styled like a high-end Shopify beauty brand. Designed for a rebuild on a fresh WP install while keeping production live.
Version:    2.0.0
License:    GPL-2.0-or-later
Text Domain: tori-luxe
Tags: ecommerce, woocommerce, responsive, block-editor, accessibility-ready
*/
/* --- Shopify-like product cards --- */
.lx-products ul.products{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
@media (max-width: 1000px){
  .lx-products ul.products{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
}
@media (max-width: 420px){
  .lx-products ul.products{gap:14px}
}

.lx-card{
  list-style:none;
  margin:0 !important;
}
.lx-card__media{
  display:block;
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(180deg,#fafafa,#f3f3f3);
  box-shadow:0 14px 40px rgba(10,10,20,.06);
  transform:translateZ(0);
}
.lx-card__imgwrap{position:relative;aspect-ratio: 4/5;}
.lx-card__img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:opacity .35s ease, transform .7s ease;
}
.lx-card__img--hover{opacity:0}
.lx-card:hover .lx-card__img--hover{opacity:1}
.lx-card:hover .lx-card__img--primary{opacity:0}
.lx-card:hover .lx-card__img{transform:scale(1.03)}

.lx-badge{
  position:absolute;top:12px;left:12px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(10,10,12,.72);
  color:#fff;
  letter-spacing:.06em;
  text-transform:uppercase;
  backdrop-filter: blur(10px);
}

.lx-card__meta{
  padding:12px 6px 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.lx-card__title{
  font-weight:600;
  letter-spacing:-.01em;
  text-decoration:none;
  color:#0b0b0f;
  line-height:1.25;
}
.lx-card__title:hover{opacity:.85}
.lx-card__price{
  color:#333;
  font-size:14px;
}
.lx-quickadd{
  margin-top:6px;
  height:42px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:600;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#0b0b0f;
  transition:transform .15s ease, border-color .2s ease, background .2s ease;
}
/* --- Section Header Layout --- */
.lx-section__header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.lx-section__header .lx-title{
  margin-bottom:6px;
}

@media (max-width: 768px){
  .lx-section__header{
    align-items:flex-start;
  }

  .lx-section__header .lx-btn{
    margin-top:8px;
  }
}
.lx-quickadd:hover{transform:translateY(-1px);border-color:rgba(0,0,0,.22)}
.lx-quickadd--secondary{
  background:rgba(10,10,12,.06);
}
