.products-page{padding:30px 15px;}
@media (min-width:768px){.products-page{padding:40px 20px;}}
.products-page__main{max-width:1180px;margin:0 auto;}
.products-page__layout{display:block;}
@media (min-width:1024px){.products-page__layout{display:grid;grid-template-columns:280px 1fr;gap:28px;align-items:start;}}

/* filter */
.products-filter{position:relative;}
.products-filter__toggle{display:inline-block;background:#fff;border:1px solid #d1d5db;border-radius:6px;padding:8px 12px;font-size:14px;color:#111827;cursor:pointer;}
@media (min-width:1024px){.products-filter__toggle{display:none;}}
.products-filter__panel{display:none;background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:14px;}
@media (min-width:1024px){.products-filter__panel{display:block;}}
.products-filter__heading{margin:0 0 10px;font-size:14px;color:#111827;}

.products-categories{margin-top:6px;}
.products-categories__item{display:flex;align-items:center;gap:10px;margin:10px 0;color:#4b5563;font-size:14px;cursor:pointer;user-select:none;}
.products-categories__item input{width:14px;height:14px;}

/* mobile drawer */
.products-drawer{position:fixed;inset:0;z-index:9999;}
@media (min-width:1024px){.products-drawer{display:none !important;}}
.products-drawer__overlay{position:absolute;inset:0;background:rgba(0,0,0,.35);}
.products-drawer__panel{position:absolute;top:var(--navigation-height, 0px);right:0;width:86%;max-width:360px;height:calc(100% - var(--navigation-height, 0px));background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.2);display:flex;flex-direction:column;}
.products-drawer__header{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;border-bottom:1px solid #e5e7eb;}
.products-drawer__title{margin:0;font-size:16px;color:#111827;}
.products-drawer__close{border:none;background:transparent;font-size:22px;line-height:1;color:#6b7280;cursor:pointer;padding:4px 8px;}
.products-drawer__content{padding:14px;overflow:auto;}

/* products grid + cards */
.products-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
@media (min-width:768px){.products-grid{gap:22px;}}
@media (min-width:1280px){.products-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;}}

.product-card{background:#fff;border:1px solid #e5e7eb;border-radius:8px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 5px 20px rgba(17,24,39,.08);transition:transform .2s ease,box-shadow .2s ease;}
.product-card:hover{transform:translateY(-3px);box-shadow:0 12px 24px rgba(17,24,39,.15);}
.product-card__media{position:relative;padding-top:120%;background:#f9fafb;}
.product-card__img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;object-position:center;transition:opacity .2s ease;}
.product-card:hover .product-card__img{opacity:.9;}
.product-card__body{padding:14px 14px 16px;display:flex;flex-direction:column;flex:1;}
.product-card__title{margin:0 0 8px;font-size:16px;line-height:1.3;}
.product-card__title a{color:#111827;text-decoration:none;}
.product-card__title a:hover{color:#0f8bff;}
.product-card__intro{margin:0 0 12px;color:#6b7280;font-size:13px;line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.product-card__footer{margin-top:auto;}
.product-price{margin:0;color:#111827;font-size:14px;}
.product-price .currency{margin-right:2px;font-weight:600;}
.product-price .price-sale{font-weight:600;margin-right:6px;}
.product-price .price-regular{color:#b91c1c;text-decoration:line-through;font-size:13px;}
