/* Hide product-related blocks for non-logged-in visitors. JS will then insert a message. */

/* Custom Syncomed theme classes (category) */
body.page-category .sc-catlayout__sidebar,
body.page-category .sc-catlayout__toolbar,
body.page-category .sc-prodgrid,
body.page-category .sc-loadmore,
body.page-category .sc-filter,
/* Custom Syncomed theme classes (product) */
body.page-product .sc-product__main,
body.page-product .sc-product__disclaimer,
body.page-product .sc-product__attachments,
body.page-product .sc-product__related,
/* Native PrestaShop fallback classes */
body.page-category .products,
body.page-category #js-product-list,
body.page-category .product-miniature,
body.page-category .total-products,
body.page-category .sort-by-row,
body.page-category .pagination,
body.page-category #js-product-list-top,
body.page-category #js-product-list-bottom,
body.page-category #search_filters,
body.page-category #left-column,
body.page-product #product,
body.page-product .product-prices,
body.page-product .product-actions,
body.page-product .product-add-to-cart,
body.page-product .product-quantity,
body.page-product .product-additional-info,
body.page-product .product-tabs,
body.page-product .images-container,
body.page-product .product-information,
body.page-product .product-customization,
body.page-index .product-miniature,
body.page-index .featured-products,
body.page-index .products,
body.page-cms .product-miniature,
body.page-cms .products {
  display: none !important;
}

/* Make the layout look right when sidebar is gone */
body.page-category .sc-catlayout {
  grid-template-columns: 1fr !important;
  display: block !important;
}

.sc-locked {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0B1B3F 0%, #1a2f5f 100%);
  color: #fff;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  margin: 40px auto;
  max-width: 720px;
  box-shadow: 0 8px 40px rgba(11, 27, 63, 0.2);
}

.sc-locked__icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 184, 212, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sc-locked__icon svg {
  width: 32px;
  height: 32px;
  stroke: #00B8D4;
}

.sc-locked__title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.sc-locked__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sc-locked__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.sc-locked__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.sc-locked__btn--primary {
  background: #00B8D4;
  color: #fff;
}

.sc-locked__btn--primary:hover {
  background: #0097A7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 184, 212, 0.4);
}

.sc-locked__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.sc-locked__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .sc-locked { padding: 40px 24px; margin: 24px 16px; }
  .sc-locked__title { font-size: 22px; }
}
